diff options
author | 2022-04-30 06:42:09 +1000 | |
---|---|---|
committer | 2022-04-30 06:42:09 +1000 | |
commit | 6ff40e09bd378f937ebfcb7980f7f8975bceb138 (patch) | |
tree | 94c62275c72199fc4cbfcd424f93a6ec5cf4158c | |
parent | 96175af1ea556efa40a0fbef15ed3e23ec07528b (diff) |
Micscellaneous cleanup/fixes:
machine/z80scc.cpp: Fixed a cast-to-bool that broke detection of changes
to one register bit.
formats/fsmeta.cpp: Use visitors with variants where it makes sense.
docs: Updated minimum required SDL version to 2.0.6 for all targets,
added note that Python 3 is included with Xcode and updated instructions
for downloading stand-alone Python 3 for macOS.
ksys573.cpp: Don't create an insane number of textures for fghtmn and
pnchman internal artwork.
Tidied another batch of slot machine layouts.
48 files changed, 1625 insertions, 45034 deletions
diff --git a/docs/source/initialsetup/compilingmame.rst b/docs/source/initialsetup/compilingmame.rst index fdd0545db9f..3c8fddd26fc 100644 --- a/docs/source/initialsetup/compilingmame.rst +++ b/docs/source/initialsetup/compilingmame.rst @@ -72,7 +72,7 @@ building MAME on a 64-bit system. Instructions may need to be adjusted for use the portable SDL (Simple DirectMedia Layer) interfaces instead, you can add **OSD=sdl** to the make options. The main emulator binary will have an ``sdl`` prefix prepended (e.g. ``sdlmame.exe``). You - will need to install the MSYS2 packages for SDL 2 version 2.0.3 or later. + will need to install the MSYS2 packages for SDL 2 version 2.0.6 or later. * By default, MAME will include the native Windows debugger. To also include the portable Qt debugger, add **USE_QTDEBUG=1** to the make options. You will need to install the MSYS2 packages for Qt 5. @@ -224,7 +224,7 @@ Fedora Linux ------------ You’ll need a few prerequisites from your Linux distribution. Make sure you get -SDL2 2.0.4 or later as earlier versions are buggy:: +SDL2 2.0.6 or later as earlier versions lack required functionality:: sudo dnf install gcc gcc-c++ SDL2-devel SDL2_ttf-devel libXi-devel libXinerama-devel qt5-qtbase-devel qt5-qttools expat-devel fontconfig-devel alsa-lib-devel pulseaudio-libs-devel @@ -246,7 +246,7 @@ Debian and Ubuntu (including Raspberry Pi and ODROID devices) ------------------------------------------------------------- You’ll need a few prerequisites from your Linux distribution. Make sure you get -SDL2 2.0.4 or later as earlier versions are buggy:: +SDL2 2.0.6 or later as earlier versions lack required functionality:: sudo apt-get install git build-essential python libsdl2-dev libsdl2-ttf-dev libfontconfig-dev libpulse-dev qt5-default @@ -274,8 +274,10 @@ Apple macOS You’ll need a few prerequisites to get started. Make sure you’re on OS X 10.14 Mojave or later for Intel Macs or macOS 11.0 Big Sur for Apple Silicon. You will -need SDL2 2.0.4 or later for Intel or SDL2 2.0.14 on Apple Silicon. You’ll also -need to install Python 3. +need SDL2 2.0.6 or later for Intel or SDL2 2.0.14 on Apple Silicon. You’ll also +need to install Python 3 – it’s currently included with the Xcode command line +tools, but you can also install a stand-alone version or get it via the Homebrew +package manager. * Install **Xcode** from the Mac App Store or `ADC <https://developer.apple.com/download/more/>`_ (AppleID required). @@ -298,12 +300,13 @@ Next you’ll need to get SDL2 installed. **SDL2.framework** folder from the SDL disk image into the **Frameworks** folder. You will have to authenticate with your user password. -Now get Python 3 set up: +If you don’t already have it, get Python 3 set up: -* Go to the `official Python site <https://www.python.org/>`_ and click the link - to the download page for the current version (this was - `Python 3.10.0 <https://www.python.org/downloads/release/python-3100/>`_ at - the time of writing). +* Go to the official Python site, navigate to the + `releases for macOS <https://www.python.org/downloads/macos/>`_, and click the + link to download the installer for the latest stable release (this was + `Python 3.10.4 <https://www.python.org/ftp/python/3.10.4/python-3.10.4-macos11.pkg>`_ + at the time of writing). * Scroll down to the “Files” section, and download the macOS version (called “macOS 64-bit universal2 installer” or similar). * Once the package downloads, open it and follow the standard installation diff --git a/src/devices/machine/z80scc.cpp b/src/devices/machine/z80scc.cpp index d82ebd1bf91..731571602d6 100644 --- a/src/devices/machine/z80scc.cpp +++ b/src/devices/machine/z80scc.cpp @@ -2287,7 +2287,7 @@ void z80scc_channel::do_sccreg_wr15(uint8_t data) LOG("Tx underr./EOM ints: %s\n", data & WR15_TX_EOM ? WR15NO : "disabled"); LOG("Break/Abort ints : %s\n", data & WR15_BREAK_ABORT ? WR15NO : "disabled"); - const bool old_reg = m_wr15; + const uint8_t old_reg = m_wr15; m_wr15 = data; if ((old_reg & WR15_ZEROCOUNT) != (m_wr15 & WR15_ZEROCOUNT)) { diff --git a/src/lib/formats/fsmeta.cpp b/src/lib/formats/fsmeta.cpp index 41ac767cd11..0e9b51094f0 100644 --- a/src/lib/formats/fsmeta.cpp +++ b/src/lib/formats/fsmeta.cpp @@ -34,48 +34,37 @@ const char *meta_data::entry_name(meta_name name) return ""; } -template<class... Ts> struct overloaded : Ts... { using Ts::operator()...; }; -template<class... Ts> overloaded(Ts...)->overloaded<Ts...>; +template <class... Ts> struct overloaded : Ts... { using Ts::operator()...; }; +template <class... Ts> overloaded(Ts...) -> overloaded<Ts...>; meta_type meta_value::type() const { std::optional<meta_type> result; - std::visit(overloaded - { - [&result](const std::string &) { result = meta_type::string; }, - [&result](std::uint64_t) { result = meta_type::number; }, - [&result](bool) { result = meta_type::flag; }, - [&result](const util::arbitrary_datetime &) { result = meta_type::date; } - }, value); + std::visit( + overloaded{ + [&result] (const std::string &) { result = meta_type::string; }, + [&result] (std::uint64_t) { result = meta_type::number; }, + [&result] (bool) { result = meta_type::flag; }, + [&result] (const util::arbitrary_datetime &) { result = meta_type::date; } }, + value); return *result; } std::string meta_value::to_string() const { std::string result; - - switch (type()) - { - case meta_type::string: - result = as_string(); - break; - case meta_type::number: - result = util::string_format("0x%x", as_number()); - break; - case meta_type::flag: - result = as_flag() ? "t" : "f"; - break; - case meta_type::date: - { - auto dt = as_date(); - result = util::string_format("%04d-%02d-%02d %02d:%02d:%02d", - dt.year, dt.month, dt.day_of_month, - dt.hour, dt.minute, dt.second); - } - break; - default: - throw false; - } + std::visit( + overloaded{ + [&result] (const std::string &val) { result = val; }, + [&result] (std::uint64_t val) { result = util::string_format("0x%x", val); }, + [&result] (bool val) { result = val ? "t" : "f"; }, + [&result] (const util::arbitrary_datetime &val) + { + result = util::string_format("%04d-%02d-%02d %02d:%02d:%02d", + val.year, val.month, val.day_of_month, + val.hour, val.minute, val.second); + } }, + value); return result; } diff --git a/src/lib/formats/fsmeta.h b/src/lib/formats/fsmeta.h index 472fc61b762..e0177f74a8b 100644 --- a/src/lib/formats/fsmeta.h +++ b/src/lib/formats/fsmeta.h @@ -103,10 +103,11 @@ struct meta_description { meta_name m_name; meta_value m_default; bool m_ro; - std::function<void(const meta_value &)> m_validator; + std::function<void (const meta_value &)> m_validator; const char *m_tooltip; - template<typename T> meta_description(meta_name name, T def, bool ro, std::function<void(meta_value)> validator, const char *tooltip) : + template <typename T> + meta_description(meta_name name, T def, bool ro, std::function<void(meta_value)> validator, const char *tooltip) : meta_description(name, meta_value(def), ro, std::move(validator), tooltip) {} diff --git a/src/mame/layout/m5hgl14.lay b/src/mame/layout/m5hgl14.lay index 193506f6993..0d356748373 100644 --- a/src/mame/layout/m5hgl14.lay +++ b/src/mame/layout/m5hgl14.lay @@ -2927,1974 +2927,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hiclau.lay b/src/mame/layout/m5hiclau.lay index eb893a3ec87..91f73f96f2a 100644 --- a/src/mame/layout/m5hiclau.lay +++ b/src/mame/layout/m5hiclau.lay @@ -882,1974 +882,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hifly.lay b/src/mame/layout/m5hifly.lay index cb2bf18a578..5e9ed1a69d1 100644 --- a/src/mame/layout/m5hifly.lay +++ b/src/mame/layout/m5hifly.lay @@ -3989,1974 +3989,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hilok.lay b/src/mame/layout/m5hilok.lay index 8617ef74450..060142beb1b 100644 --- a/src/mame/layout/m5hilok.lay +++ b/src/mame/layout/m5hilok.lay @@ -4501,1974 +4501,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_reel" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_reel" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_reel" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_reel" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_reel" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_reel" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_reel" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_reel" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_reel" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_reel" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_reel" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_reel" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_reel" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_standard" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="lamp73" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1100" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hisprt.lay b/src/mame/layout/m5hisprt.lay index 2b17d27da2a..44600acc795 100644 --- a/src/mame/layout/m5hisprt.lay +++ b/src/mame/layout/m5hisprt.lay @@ -4561,1974 +4561,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hlsumo.lay b/src/mame/layout/m5hlsumo.lay index 9a958950ba3..02e5743be20 100644 --- a/src/mame/layout/m5hlsumo.lay +++ b/src/mame/layout/m5hlsumo.lay @@ -4182,1974 +4182,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5holy.lay b/src/mame/layout/m5holy.lay index 6e386538cbb..ed1e22fe9d6 100644 --- a/src/mame/layout/m5holy.lay +++ b/src/mame/layout/m5holy.lay @@ -3545,1974 +3545,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hopidl.lay b/src/mame/layout/m5hopidl.lay index 559176f25ea..05037fc3257 100644 --- a/src/mame/layout/m5hopidl.lay +++ b/src/mame/layout/m5hopidl.lay @@ -3957,1974 +3957,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hotslt.lay b/src/mame/layout/m5hotslt.lay index bed2b36ff39..5f324166917 100644 --- a/src/mame/layout/m5hotslt.lay +++ b/src/mame/layout/m5hotslt.lay @@ -1281,1974 +1281,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_reel" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_reel" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hotstf.lay b/src/mame/layout/m5hotstf.lay index 75dbc2cf51e..5fa3c923fc3 100644 --- a/src/mame/layout/m5hotstf.lay +++ b/src/mame/layout/m5hotstf.lay @@ -3606,1974 +3606,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_reel" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_reel" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_reel" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_reel" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_reel" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_reel" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_reel" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_reel" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5hypvip.lay b/src/mame/layout/m5hypvip.lay index 043d8c5863f..4b7de11eaea 100644 --- a/src/mame/layout/m5hypvip.lay +++ b/src/mame/layout/m5hypvip.lay @@ -4982,1974 +4982,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5jackbx.lay b/src/mame/layout/m5jackbx.lay index 40d877e2e03..091c7c385cf 100644 --- a/src/mame/layout/m5jackbx.lay +++ b/src/mame/layout/m5jackbx.lay @@ -889,1974 +889,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1100" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5jackp2.lay b/src/mame/layout/m5jackp2.lay index 266a2f3c34e..39a9788c851 100644 --- a/src/mame/layout/m5jackp2.lay +++ b/src/mame/layout/m5jackp2.lay @@ -4405,1974 +4405,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_standard" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_standard" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5jackpt.lay b/src/mame/layout/m5jackpt.lay index 6fb69c9ed83..b2be5aa57e5 100644 --- a/src/mame/layout/m5jackpt.lay +++ b/src/mame/layout/m5jackpt.lay @@ -3557,1974 +3557,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_reel" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5jlyjwl.lay b/src/mame/layout/m5jlyjwl.lay index 0413fd9e166..69bc1ed9a5b 100644 --- a/src/mame/layout/m5jlyjwl.lay +++ b/src/mame/layout/m5jlyjwl.lay @@ -1549,1974 +1549,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5jmpgem01.lay b/src/mame/layout/m5jmpgem01.lay index b56fe2da182..83edffbb722 100644 --- a/src/mame/layout/m5jmpgem01.lay +++ b/src/mame/layout/m5jmpgem01.lay @@ -4537,1974 +4537,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5kingqc06.lay b/src/mame/layout/m5kingqc06.lay index 238ca84799b..cc052943a69 100644 --- a/src/mame/layout/m5kingqc06.lay +++ b/src/mame/layout/m5kingqc06.lay @@ -2052,1974 +2052,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="debug_button_33" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5kkebab.lay b/src/mame/layout/m5kkebab.lay index daef8f925be..1d81b38c36f 100644 --- a/src/mame/layout/m5kkebab.lay +++ b/src/mame/layout/m5kkebab.lay @@ -4643,1974 +4643,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_button" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_standard" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_standard" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp24" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5korma.lay b/src/mame/layout/m5korma.lay index e0613e503a0..64b243381b7 100644 --- a/src/mame/layout/m5korma.lay +++ b/src/mame/layout/m5korma.lay @@ -3576,1974 +3576,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_reel" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_reel" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_reel" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_reel" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_reel" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_reel" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_reel" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_reel" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_reel" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_reel" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_reel" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_reel" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_reel" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_reel" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_reel" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_reel" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_reel" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_reel" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_button" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_button" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_button" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_button" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_button" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_button" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_button" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_button" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_button" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_button" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_button" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_reel" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_reel" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_reel" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="lamp192" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="lamp193" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="lamp194" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="lamp195" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="lamp196" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="lamp197" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="lamp198" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="lamp199" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="lamp205" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="lamp206" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="lamp207" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5loony.lay b/src/mame/layout/m5loony.lay index b4029cdabb6..5d80cbb0a35 100644 --- a/src/mame/layout/m5loony.lay +++ b/src/mame/layout/m5loony.lay @@ -4339,1974 +4339,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5loot.lay b/src/mame/layout/m5loot.lay index b67cca40eef..f0a9d97a701 100644 --- a/src/mame/layout/m5loot.lay +++ b/src/mame/layout/m5loot.lay @@ -1013,1974 +1013,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5lotta.lay b/src/mame/layout/m5lotta.lay index dfd92760d64..495a3266b1f 100644 --- a/src/mame/layout/m5lotta.lay +++ b/src/mame/layout/m5lotta.lay @@ -2927,1974 +2927,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5martns07.lay b/src/mame/layout/m5martns07.lay index 0122e168455..7448f22bb2b 100644 --- a/src/mame/layout/m5martns07.lay +++ b/src/mame/layout/m5martns07.lay @@ -4171,1974 +4171,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_standard" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_standard" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_standard" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_standard" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_standard" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_standard" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_standard" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_standard" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5mega.lay b/src/mame/layout/m5mega.lay index 72faafec8ab..c27915dbe36 100644 --- a/src/mame/layout/m5mega.lay +++ b/src/mame/layout/m5mega.lay @@ -4581,1974 +4581,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_button" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_reel" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_reel" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_reel" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_reel" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_reel" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="lamp72" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="lamp73" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5mmak06.lay b/src/mame/layout/m5mmak06.lay index d35713b9442..02fdf317c4c 100644 --- a/src/mame/layout/m5mmak06.lay +++ b/src/mame/layout/m5mmak06.lay @@ -4352,1974 +4352,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_reel" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5monmst.lay b/src/mame/layout/m5monmst.lay index 561a80e08fd..b1000710fc5 100644 --- a/src/mame/layout/m5monmst.lay +++ b/src/mame/layout/m5monmst.lay @@ -4391,1974 +4391,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5mpfc.lay b/src/mame/layout/m5mpfc.lay index 33e9a7c6ff6..62d73e5891a 100644 --- a/src/mame/layout/m5mpfc.lay +++ b/src/mame/layout/m5mpfc.lay @@ -2948,1974 +2948,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5mprio.lay b/src/mame/layout/m5mprio.lay index b9ebb79aab0..d30695a460c 100644 --- a/src/mame/layout/m5mprio.lay +++ b/src/mame/layout/m5mprio.lay @@ -1794,1974 +1794,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5neptun.lay b/src/mame/layout/m5neptun.lay index 5905fa63d54..e7aae8752cc 100644 --- a/src/mame/layout/m5neptun.lay +++ b/src/mame/layout/m5neptun.lay @@ -3382,1974 +3382,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5nnww.lay b/src/mame/layout/m5nnww.lay index be44a8650b9..f0bb69f8f23 100644 --- a/src/mame/layout/m5nnww.lay +++ b/src/mame/layout/m5nnww.lay @@ -1423,1974 +1423,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5oohaah.lay b/src/mame/layout/m5oohaah.lay index c198e98270c..7cf5e158b41 100644 --- a/src/mame/layout/m5oohaah.lay +++ b/src/mame/layout/m5oohaah.lay @@ -3088,1974 +3088,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_standard" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_reel" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5oohrio.lay b/src/mame/layout/m5oohrio.lay index 244f3a0eea5..73ef12ada81 100644 --- a/src/mame/layout/m5oohrio.lay +++ b/src/mame/layout/m5oohrio.lay @@ -1770,1974 +1770,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_reel" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_reel" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_reel" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_reel" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_reel" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_reel" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_reel" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_reel" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_standard" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5openbx05.lay b/src/mame/layout/m5openbx05.lay index 653985118e4..2fba41df352 100644 --- a/src/mame/layout/m5openbx05.lay +++ b/src/mame/layout/m5openbx05.lay @@ -2082,1974 +2082,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_reel" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_reel" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_reel" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_reel" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_reel" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_reel" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_reel" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_reel" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_reel" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_reel" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_reel" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_reel" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5overld.lay b/src/mame/layout/m5overld.lay index 4d6a9b0af28..63291dba694 100644 --- a/src/mame/layout/m5overld.lay +++ b/src/mame/layout/m5overld.lay @@ -5032,1974 +5032,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_standard" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_standard" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1100" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5peepsh.lay b/src/mame/layout/m5peepsh.lay index 614c1cb2be7..7d22c340b59 100644 --- a/src/mame/layout/m5peepsh.lay +++ b/src/mame/layout/m5peepsh.lay @@ -3798,1974 +3798,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5piefac.lay b/src/mame/layout/m5piefac.lay index 3f9617f8e23..3b2b650a639 100644 --- a/src/mame/layout/m5piefac.lay +++ b/src/mame/layout/m5piefac.lay @@ -3016,1974 +3016,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_standard" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_standard" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_standard" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_standard" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_standard" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_standard" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_standard" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_standard" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_standard" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_standard" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5piefcr.lay b/src/mame/layout/m5piefcr.lay index 20910354198..c8201a8ba16 100644 --- a/src/mame/layout/m5piefcr.lay +++ b/src/mame/layout/m5piefcr.lay @@ -735,1974 +735,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_reel" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="debug_button_38" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5ppussy.lay b/src/mame/layout/m5ppussy.lay index 4fe875ce21e..8b5536a5622 100644 --- a/src/mame/layout/m5ppussy.lay +++ b/src/mame/layout/m5ppussy.lay @@ -2175,1974 +2175,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_standard" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5psyccl01.lay b/src/mame/layout/m5psyccl01.lay index fe131210cda..6fe837b82c0 100644 --- a/src/mame/layout/m5psyccl01.lay +++ b/src/mame/layout/m5psyccl01.lay @@ -5116,1974 +5116,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_button" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_standard" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_standard" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="lamp72" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="lamp73" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1100" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5psycho.lay b/src/mame/layout/m5psycho.lay index 005bd027d3e..9422aea204f 100644 --- a/src/mame/layout/m5psycho.lay +++ b/src/mame/layout/m5psycho.lay @@ -4172,1974 +4172,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_standard" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_standard" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_button" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_standard" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_standard" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_standard" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_button" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_button" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_button" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_button" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_button" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_button" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_standard" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_standard" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_standard" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_standard" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_standard" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_standard" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="lamp19" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="lamp73" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="lamp74" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="lamp75" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="lamp76" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="lamp77" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="lamp78" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5ptyani.lay b/src/mame/layout/m5ptyani.lay index 47d2cb99df4..f608c723dad 100644 --- a/src/mame/layout/m5ptyani.lay +++ b/src/mame/layout/m5ptyani.lay @@ -4453,1974 +4453,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_standard" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_standard" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_standard" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_standard" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_standard" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_standard" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_standard" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_standard" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_standard" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_standard" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_standard" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_standard" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_standard" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_standard" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_button" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_standard" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_standard" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_standard" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_standard" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_standard" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_button" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_standard" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_standard" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_standard" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_standard" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_standard" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_standard" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_standard" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_standard" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_standard" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_standard" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_standard" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_button" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_standard" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_standard" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_standard" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_standard" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_standard" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_standard" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_standard" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_standard" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_standard" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_standard" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_standard" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_standard" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_standard" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_standard" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_standard" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_standard" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_standard" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_standard" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_standard" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_standard" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_standard" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_standard" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_standard" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_standard" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_standard" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_standard" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_segment" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp104" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="debug_button_34" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="debug_button_36" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="lamp71" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="lamp79" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5qdrawb.lay b/src/mame/layout/m5qdrawb.lay index d8aaa6b0e80..a677e9bf224 100644 --- a/src/mame/layout/m5qdrawb.lay +++ b/src/mame/layout/m5qdrawb.lay @@ -4618,1974 +4618,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_reel" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_standard" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_standard" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_standard" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_standard" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_standard" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_standard" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_standard" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_standard" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_standard" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_reel" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_reel" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_reel" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_standard" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_reel" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_standard" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_standard" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_standard" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_standard" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_standard" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_reel" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_reel" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_reel" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_reel" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_reel" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_reel" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_standard" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_standard" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_standard" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_standard" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_standard" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_standard" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_standard" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_standard" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_standard" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_standard" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_standard" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_standard" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_standard" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_standard" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_standard" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_standard" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_standard" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_standard" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_standard" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_standard" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_standard" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_standard" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_standard" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_standard" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_standard" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_standard" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_standard" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_standard" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_standard" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_standard" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_standard" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_standard" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_standard" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_standard" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_standard" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_standard" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_standard" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_standard" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_standard" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_standard" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_standard" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_standard" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_standard" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_standard" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_standard" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_standard" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_standard" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_standard" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_standard" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_standard" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_standard" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_standard" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_standard" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_standard" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_standard" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_standard" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_standard" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_standard" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_standard" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_standard" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_standard" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_standard" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_standard" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_standard" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_button" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_button" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_button" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_button" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_button" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_button" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_standard" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_standard" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_standard" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_standard" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_standard" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_standard" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_standard" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_standard" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_standard" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_standard" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_standard" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_standard" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_standard" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_standard" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_standard" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_standard" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_standard" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_standard" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_standard" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_standard" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_standard" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_standard" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_standard" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_standard" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_standard" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_standard" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_standard" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_standard" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_standard" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_standard" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_standard" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_standard" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_standard" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_standard" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_standard" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_standard" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_standard" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_standard" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_standard" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_standard" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_standard" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="lamp192" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="lamp193" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="lamp194" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="lamp195" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="lamp196" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="lamp197" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1100" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/m5qshot04.lay b/src/mame/layout/m5qshot04.lay index f5bf181f35f..138a3b61b76 100644 --- a/src/mame/layout/m5qshot04.lay +++ b/src/mame/layout/m5qshot04.lay @@ -1319,1974 +1319,1001 @@ <element ref="debug_backdrop_colour"> <bounds x="0" y="0" width="1920" height="1080"/> </element> + <element name="lamp0" ref="debug_lamp_standard" state="0"> <bounds x="32" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_0" ref="debug_lamp_label_0"> - <bounds x="47" y="47" width="30" height="30"/> - </element> <element name="lamp1" ref="debug_lamp_standard" state="0"> <bounds x="96" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_1" ref="debug_lamp_label_1"> - <bounds x="111" y="47" width="30" height="30"/> - </element> <element name="lamp2" ref="debug_lamp_standard" state="0"> <bounds x="160" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_2" ref="debug_lamp_label_2"> - <bounds x="175" y="47" width="30" height="30"/> - </element> <element name="lamp3" ref="debug_lamp_standard" state="0"> <bounds x="224" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_3" ref="debug_lamp_label_3"> - <bounds x="239" y="47" width="30" height="30"/> - </element> <element name="lamp4" ref="debug_lamp_standard" state="0"> <bounds x="288" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_4" ref="debug_lamp_label_4"> - <bounds x="303" y="47" width="30" height="30"/> - </element> <element name="lamp5" ref="debug_lamp_standard" state="0"> <bounds x="352" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_5" ref="debug_lamp_label_5"> - <bounds x="367" y="47" width="30" height="30"/> - </element> <element name="lamp6" ref="debug_lamp_standard" state="0"> <bounds x="416" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_6" ref="debug_lamp_label_6"> - <bounds x="431" y="47" width="30" height="30"/> - </element> <element name="lamp7" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_7" ref="debug_lamp_label_7"> - <bounds x="495" y="47" width="30" height="30"/> - </element> <element name="lamp8" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_8" ref="debug_lamp_label_8"> - <bounds x="559" y="47" width="30" height="30"/> - </element> <element name="lamp9" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_9" ref="debug_lamp_label_9"> - <bounds x="623" y="47" width="30" height="30"/> - </element> <element name="lamp10" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_10" ref="debug_lamp_label_10"> - <bounds x="687" y="47" width="30" height="30"/> - </element> <element name="lamp11" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_11" ref="debug_lamp_label_11"> - <bounds x="751" y="47" width="30" height="30"/> - </element> <element name="lamp12" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_12" ref="debug_lamp_label_12"> - <bounds x="815" y="47" width="30" height="30"/> - </element> <element name="lamp13" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_13" ref="debug_lamp_label_13"> - <bounds x="879" y="47" width="30" height="30"/> - </element> <element name="lamp14" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_14" ref="debug_lamp_label_14"> - <bounds x="943" y="47" width="30" height="30"/> - </element> <element name="lamp15" ref="debug_lamp_standard" state="0"> <bounds x="992" y="32" width="60" height="60"/> </element> - <element name="debug_lamp_label_15" ref="debug_lamp_label_15"> - <bounds x="1007" y="47" width="30" height="30"/> - </element> <element name="lamp16" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_16" ref="debug_lamp_label_16"> - <bounds x="47" y="111" width="30" height="30"/> - </element> <element name="lamp17" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_17" ref="debug_lamp_label_17"> - <bounds x="111" y="111" width="30" height="30"/> - </element> <element name="lamp18" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_18" ref="debug_lamp_label_18"> - <bounds x="175" y="111" width="30" height="30"/> - </element> <element name="lamp19" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_19" ref="debug_lamp_label_19"> - <bounds x="239" y="111" width="30" height="30"/> - </element> <element name="lamp20" ref="debug_lamp_standard" state="0"> <bounds x="288" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_20" ref="debug_lamp_label_20"> - <bounds x="303" y="111" width="30" height="30"/> - </element> <element name="lamp21" ref="debug_lamp_standard" state="0"> <bounds x="352" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_21" ref="debug_lamp_label_21"> - <bounds x="367" y="111" width="30" height="30"/> - </element> <element name="lamp22" ref="debug_lamp_standard" state="0"> <bounds x="416" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_22" ref="debug_lamp_label_22"> - <bounds x="431" y="111" width="30" height="30"/> - </element> <element name="lamp23" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_23" ref="debug_lamp_label_23"> - <bounds x="495" y="111" width="30" height="30"/> - </element> <element name="lamp24" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_24" ref="debug_lamp_label_24"> - <bounds x="559" y="111" width="30" height="30"/> - </element> <element name="lamp25" ref="debug_lamp_standard" state="0"> <bounds x="608" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_25" ref="debug_lamp_label_25"> - <bounds x="623" y="111" width="30" height="30"/> - </element> <element name="lamp26" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_26" ref="debug_lamp_label_26"> - <bounds x="687" y="111" width="30" height="30"/> - </element> <element name="lamp27" ref="debug_lamp_standard" state="0"> <bounds x="736" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_27" ref="debug_lamp_label_27"> - <bounds x="751" y="111" width="30" height="30"/> - </element> <element name="lamp28" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_28" ref="debug_lamp_label_28"> - <bounds x="815" y="111" width="30" height="30"/> - </element> <element name="lamp29" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_29" ref="debug_lamp_label_29"> - <bounds x="879" y="111" width="30" height="30"/> - </element> <element name="lamp30" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_30" ref="debug_lamp_label_30"> - <bounds x="943" y="111" width="30" height="30"/> - </element> <element name="lamp31" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="96" width="60" height="60"/> </element> - <element name="debug_lamp_label_31" ref="debug_lamp_label_31"> - <bounds x="1007" y="111" width="30" height="30"/> - </element> <element name="lamp32" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_32" ref="debug_lamp_label_32"> - <bounds x="47" y="175" width="30" height="30"/> - </element> <element name="lamp33" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_33" ref="debug_lamp_label_33"> - <bounds x="111" y="175" width="30" height="30"/> - </element> <element name="lamp34" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_34" ref="debug_lamp_label_34"> - <bounds x="175" y="175" width="30" height="30"/> - </element> <element name="lamp35" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_35" ref="debug_lamp_label_35"> - <bounds x="239" y="175" width="30" height="30"/> - </element> <element name="lamp36" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_36" ref="debug_lamp_label_36"> - <bounds x="303" y="175" width="30" height="30"/> - </element> <element name="lamp37" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_37" ref="debug_lamp_label_37"> - <bounds x="367" y="175" width="30" height="30"/> - </element> <element name="lamp38" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_38" ref="debug_lamp_label_38"> - <bounds x="431" y="175" width="30" height="30"/> - </element> <element name="lamp39" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_39" ref="debug_lamp_label_39"> - <bounds x="495" y="175" width="30" height="30"/> - </element> <element name="lamp40" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_40" ref="debug_lamp_label_40"> - <bounds x="559" y="175" width="30" height="30"/> - </element> <element name="lamp41" ref="debug_lamp_standard" state="0"> <bounds x="608" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_41" ref="debug_lamp_label_41"> - <bounds x="623" y="175" width="30" height="30"/> - </element> <element name="lamp42" ref="debug_lamp_standard" state="0"> <bounds x="672" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_42" ref="debug_lamp_label_42"> - <bounds x="687" y="175" width="30" height="30"/> - </element> <element name="lamp43" ref="debug_lamp_standard" state="0"> <bounds x="736" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_43" ref="debug_lamp_label_43"> - <bounds x="751" y="175" width="30" height="30"/> - </element> <element name="lamp44" ref="debug_lamp_standard" state="0"> <bounds x="800" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_44" ref="debug_lamp_label_44"> - <bounds x="815" y="175" width="30" height="30"/> - </element> <element name="lamp45" ref="debug_lamp_standard" state="0"> <bounds x="864" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_45" ref="debug_lamp_label_45"> - <bounds x="879" y="175" width="30" height="30"/> - </element> <element name="lamp46" ref="debug_lamp_standard" state="0"> <bounds x="928" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_46" ref="debug_lamp_label_46"> - <bounds x="943" y="175" width="30" height="30"/> - </element> <element name="lamp47" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="160" width="60" height="60"/> </element> - <element name="debug_lamp_label_47" ref="debug_lamp_label_47"> - <bounds x="1007" y="175" width="30" height="30"/> - </element> <element name="lamp48" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_48" ref="debug_lamp_label_48"> - <bounds x="47" y="239" width="30" height="30"/> - </element> <element name="lamp49" ref="debug_lamp_standard" state="0"> <bounds x="96" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_49" ref="debug_lamp_label_49"> - <bounds x="111" y="239" width="30" height="30"/> - </element> <element name="lamp50" ref="debug_lamp_standard" state="0"> <bounds x="160" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_50" ref="debug_lamp_label_50"> - <bounds x="175" y="239" width="30" height="30"/> - </element> <element name="lamp51" ref="debug_lamp_standard" state="0"> <bounds x="224" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_51" ref="debug_lamp_label_51"> - <bounds x="239" y="239" width="30" height="30"/> - </element> <element name="lamp52" ref="debug_lamp_standard" state="0"> <bounds x="288" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_52" ref="debug_lamp_label_52"> - <bounds x="303" y="239" width="30" height="30"/> - </element> <element name="lamp53" ref="debug_lamp_standard" state="0"> <bounds x="352" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_53" ref="debug_lamp_label_53"> - <bounds x="367" y="239" width="30" height="30"/> - </element> <element name="lamp54" ref="debug_lamp_standard" state="0"> <bounds x="416" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_54" ref="debug_lamp_label_54"> - <bounds x="431" y="239" width="30" height="30"/> - </element> <element name="lamp55" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_55" ref="debug_lamp_label_55"> - <bounds x="495" y="239" width="30" height="30"/> - </element> <element name="lamp56" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_56" ref="debug_lamp_label_56"> - <bounds x="559" y="239" width="30" height="30"/> - </element> <element name="lamp57" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_57" ref="debug_lamp_label_57"> - <bounds x="623" y="239" width="30" height="30"/> - </element> <element name="lamp58" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_58" ref="debug_lamp_label_58"> - <bounds x="687" y="239" width="30" height="30"/> - </element> <element name="lamp59" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_59" ref="debug_lamp_label_59"> - <bounds x="751" y="239" width="30" height="30"/> - </element> <element name="lamp60" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_60" ref="debug_lamp_label_60"> - <bounds x="815" y="239" width="30" height="30"/> - </element> <element name="lamp61" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_61" ref="debug_lamp_label_61"> - <bounds x="879" y="239" width="30" height="30"/> - </element> <element name="lamp62" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_62" ref="debug_lamp_label_62"> - <bounds x="943" y="239" width="30" height="30"/> - </element> <element name="lamp63" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="224" width="60" height="60"/> </element> - <element name="debug_lamp_label_63" ref="debug_lamp_label_63"> - <bounds x="1007" y="239" width="30" height="30"/> - </element> <element name="lamp64" ref="debug_lamp_button" state="0"> <bounds x="32" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_64" ref="debug_lamp_label_64"> - <bounds x="47" y="303" width="30" height="30"/> - </element> <element name="lamp65" ref="debug_lamp_button" state="0"> <bounds x="96" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_65" ref="debug_lamp_label_65"> - <bounds x="111" y="303" width="30" height="30"/> - </element> <element name="lamp66" ref="debug_lamp_button" state="0"> <bounds x="160" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_66" ref="debug_lamp_label_66"> - <bounds x="175" y="303" width="30" height="30"/> - </element> <element name="lamp67" ref="debug_lamp_button" state="0"> <bounds x="224" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_67" ref="debug_lamp_label_67"> - <bounds x="239" y="303" width="30" height="30"/> - </element> <element name="lamp68" ref="debug_lamp_button" state="0"> <bounds x="288" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_68" ref="debug_lamp_label_68"> - <bounds x="303" y="303" width="30" height="30"/> - </element> <element name="lamp69" ref="debug_lamp_button" state="0"> <bounds x="352" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_69" ref="debug_lamp_label_69"> - <bounds x="367" y="303" width="30" height="30"/> - </element> <element name="lamp70" ref="debug_lamp_button" state="0"> <bounds x="416" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_70" ref="debug_lamp_label_70"> - <bounds x="431" y="303" width="30" height="30"/> - </element> <element name="lamp71" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_71" ref="debug_lamp_label_71"> - <bounds x="495" y="303" width="30" height="30"/> - </element> <element name="lamp72" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_72" ref="debug_lamp_label_72"> - <bounds x="559" y="303" width="30" height="30"/> - </element> <element name="lamp73" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_73" ref="debug_lamp_label_73"> - <bounds x="623" y="303" width="30" height="30"/> - </element> <element name="lamp74" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_74" ref="debug_lamp_label_74"> - <bounds x="687" y="303" width="30" height="30"/> - </element> <element name="lamp75" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_75" ref="debug_lamp_label_75"> - <bounds x="751" y="303" width="30" height="30"/> - </element> <element name="lamp76" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_76" ref="debug_lamp_label_76"> - <bounds x="815" y="303" width="30" height="30"/> - </element> <element name="lamp77" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_77" ref="debug_lamp_label_77"> - <bounds x="879" y="303" width="30" height="30"/> - </element> <element name="lamp78" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_78" ref="debug_lamp_label_78"> - <bounds x="943" y="303" width="30" height="30"/> - </element> <element name="lamp79" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="288" width="60" height="60"/> </element> - <element name="debug_lamp_label_79" ref="debug_lamp_label_79"> - <bounds x="1007" y="303" width="30" height="30"/> - </element> <element name="lamp80" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_80" ref="debug_lamp_label_80"> - <bounds x="47" y="367" width="30" height="30"/> - </element> <element name="lamp81" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_81" ref="debug_lamp_label_81"> - <bounds x="111" y="367" width="30" height="30"/> - </element> <element name="lamp82" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_82" ref="debug_lamp_label_82"> - <bounds x="175" y="367" width="30" height="30"/> - </element> <element name="lamp83" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_83" ref="debug_lamp_label_83"> - <bounds x="239" y="367" width="30" height="30"/> - </element> <element name="lamp84" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_84" ref="debug_lamp_label_84"> - <bounds x="303" y="367" width="30" height="30"/> - </element> <element name="lamp85" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_85" ref="debug_lamp_label_85"> - <bounds x="367" y="367" width="30" height="30"/> - </element> <element name="lamp86" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_86" ref="debug_lamp_label_86"> - <bounds x="431" y="367" width="30" height="30"/> - </element> <element name="lamp87" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_87" ref="debug_lamp_label_87"> - <bounds x="495" y="367" width="30" height="30"/> - </element> <element name="lamp88" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_88" ref="debug_lamp_label_88"> - <bounds x="559" y="367" width="30" height="30"/> - </element> <element name="lamp89" ref="debug_lamp_standard" state="0"> <bounds x="608" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_89" ref="debug_lamp_label_89"> - <bounds x="623" y="367" width="30" height="30"/> - </element> <element name="lamp90" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_90" ref="debug_lamp_label_90"> - <bounds x="687" y="367" width="30" height="30"/> - </element> <element name="lamp91" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_91" ref="debug_lamp_label_91"> - <bounds x="751" y="367" width="30" height="30"/> - </element> <element name="lamp92" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_92" ref="debug_lamp_label_92"> - <bounds x="815" y="367" width="30" height="30"/> - </element> <element name="lamp93" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_93" ref="debug_lamp_label_93"> - <bounds x="879" y="367" width="30" height="30"/> - </element> <element name="lamp94" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_94" ref="debug_lamp_label_94"> - <bounds x="943" y="367" width="30" height="30"/> - </element> <element name="lamp95" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="352" width="60" height="60"/> </element> - <element name="debug_lamp_label_95" ref="debug_lamp_label_95"> - <bounds x="1007" y="367" width="30" height="30"/> - </element> <element name="lamp96" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_96" ref="debug_lamp_label_96"> - <bounds x="47" y="431" width="30" height="30"/> - </element> <element name="lamp97" ref="debug_lamp_standard" state="0"> <bounds x="96" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_97" ref="debug_lamp_label_97"> - <bounds x="111" y="431" width="30" height="30"/> - </element> <element name="lamp98" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_98" ref="debug_lamp_label_98"> - <bounds x="175" y="431" width="30" height="30"/> - </element> <element name="lamp99" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_99" ref="debug_lamp_label_99"> - <bounds x="239" y="431" width="30" height="30"/> - </element> <element name="lamp100" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_100" ref="debug_lamp_label_100"> - <bounds x="303" y="431" width="30" height="30"/> - </element> <element name="lamp101" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_101" ref="debug_lamp_label_101"> - <bounds x="367" y="431" width="30" height="30"/> - </element> <element name="lamp102" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_102" ref="debug_lamp_label_102"> - <bounds x="431" y="431" width="30" height="30"/> - </element> <element name="lamp103" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_103" ref="debug_lamp_label_103"> - <bounds x="495" y="431" width="30" height="30"/> - </element> <element name="lamp104" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_104" ref="debug_lamp_label_104"> - <bounds x="559" y="431" width="30" height="30"/> - </element> <element name="lamp105" ref="debug_lamp_standard" state="0"> <bounds x="608" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_105" ref="debug_lamp_label_105"> - <bounds x="623" y="431" width="30" height="30"/> - </element> <element name="lamp106" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_106" ref="debug_lamp_label_106"> - <bounds x="687" y="431" width="30" height="30"/> - </element> <element name="lamp107" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_107" ref="debug_lamp_label_107"> - <bounds x="751" y="431" width="30" height="30"/> - </element> <element name="lamp108" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_108" ref="debug_lamp_label_108"> - <bounds x="815" y="431" width="30" height="30"/> - </element> <element name="lamp109" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_109" ref="debug_lamp_label_109"> - <bounds x="879" y="431" width="30" height="30"/> - </element> <element name="lamp110" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_110" ref="debug_lamp_label_110"> - <bounds x="943" y="431" width="30" height="30"/> - </element> <element name="lamp111" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="416" width="60" height="60"/> </element> - <element name="debug_lamp_label_111" ref="debug_lamp_label_111"> - <bounds x="1007" y="431" width="30" height="30"/> - </element> <element name="lamp112" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_112" ref="debug_lamp_label_112"> - <bounds x="47" y="495" width="30" height="30"/> - </element> <element name="lamp113" ref="debug_lamp_standard" state="0"> <bounds x="96" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_113" ref="debug_lamp_label_113"> - <bounds x="111" y="495" width="30" height="30"/> - </element> <element name="lamp114" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_114" ref="debug_lamp_label_114"> - <bounds x="175" y="495" width="30" height="30"/> - </element> <element name="lamp115" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_115" ref="debug_lamp_label_115"> - <bounds x="239" y="495" width="30" height="30"/> - </element> <element name="lamp116" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_116" ref="debug_lamp_label_116"> - <bounds x="303" y="495" width="30" height="30"/> - </element> <element name="lamp117" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_117" ref="debug_lamp_label_117"> - <bounds x="367" y="495" width="30" height="30"/> - </element> <element name="lamp118" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_118" ref="debug_lamp_label_118"> - <bounds x="431" y="495" width="30" height="30"/> - </element> <element name="lamp119" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_119" ref="debug_lamp_label_119"> - <bounds x="495" y="495" width="30" height="30"/> - </element> <element name="lamp120" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_120" ref="debug_lamp_label_120"> - <bounds x="559" y="495" width="30" height="30"/> - </element> <element name="lamp121" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_121" ref="debug_lamp_label_121"> - <bounds x="623" y="495" width="30" height="30"/> - </element> <element name="lamp122" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_122" ref="debug_lamp_label_122"> - <bounds x="687" y="495" width="30" height="30"/> - </element> <element name="lamp123" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_123" ref="debug_lamp_label_123"> - <bounds x="751" y="495" width="30" height="30"/> - </element> <element name="lamp124" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_124" ref="debug_lamp_label_124"> - <bounds x="815" y="495" width="30" height="30"/> - </element> <element name="lamp125" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_125" ref="debug_lamp_label_125"> - <bounds x="879" y="495" width="30" height="30"/> - </element> <element name="lamp126" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_126" ref="debug_lamp_label_126"> - <bounds x="943" y="495" width="30" height="30"/> - </element> <element name="lamp127" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="480" width="60" height="60"/> </element> - <element name="debug_lamp_label_127" ref="debug_lamp_label_127"> - <bounds x="1007" y="495" width="30" height="30"/> - </element> <element name="lamp128" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_128" ref="debug_lamp_label_128"> - <bounds x="47" y="559" width="30" height="30"/> - </element> <element name="lamp129" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_129" ref="debug_lamp_label_129"> - <bounds x="111" y="559" width="30" height="30"/> - </element> <element name="lamp130" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_130" ref="debug_lamp_label_130"> - <bounds x="175" y="559" width="30" height="30"/> - </element> <element name="lamp131" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_131" ref="debug_lamp_label_131"> - <bounds x="239" y="559" width="30" height="30"/> - </element> <element name="lamp132" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_132" ref="debug_lamp_label_132"> - <bounds x="303" y="559" width="30" height="30"/> - </element> <element name="lamp133" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_133" ref="debug_lamp_label_133"> - <bounds x="367" y="559" width="30" height="30"/> - </element> <element name="lamp134" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_134" ref="debug_lamp_label_134"> - <bounds x="431" y="559" width="30" height="30"/> - </element> <element name="lamp135" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_135" ref="debug_lamp_label_135"> - <bounds x="495" y="559" width="30" height="30"/> - </element> <element name="lamp136" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_136" ref="debug_lamp_label_136"> - <bounds x="559" y="559" width="30" height="30"/> - </element> <element name="lamp137" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_137" ref="debug_lamp_label_137"> - <bounds x="623" y="559" width="30" height="30"/> - </element> <element name="lamp138" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_138" ref="debug_lamp_label_138"> - <bounds x="687" y="559" width="30" height="30"/> - </element> <element name="lamp139" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_139" ref="debug_lamp_label_139"> - <bounds x="751" y="559" width="30" height="30"/> - </element> <element name="lamp140" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_140" ref="debug_lamp_label_140"> - <bounds x="815" y="559" width="30" height="30"/> - </element> <element name="lamp141" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_141" ref="debug_lamp_label_141"> - <bounds x="879" y="559" width="30" height="30"/> - </element> <element name="lamp142" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_142" ref="debug_lamp_label_142"> - <bounds x="943" y="559" width="30" height="30"/> - </element> <element name="lamp143" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="544" width="60" height="60"/> </element> - <element name="debug_lamp_label_143" ref="debug_lamp_label_143"> - <bounds x="1007" y="559" width="30" height="30"/> - </element> <element name="lamp144" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_144" ref="debug_lamp_label_144"> - <bounds x="47" y="623" width="30" height="30"/> - </element> <element name="lamp145" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_145" ref="debug_lamp_label_145"> - <bounds x="111" y="623" width="30" height="30"/> - </element> <element name="lamp146" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_146" ref="debug_lamp_label_146"> - <bounds x="175" y="623" width="30" height="30"/> - </element> <element name="lamp147" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_147" ref="debug_lamp_label_147"> - <bounds x="239" y="623" width="30" height="30"/> - </element> <element name="lamp148" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_148" ref="debug_lamp_label_148"> - <bounds x="303" y="623" width="30" height="30"/> - </element> <element name="lamp149" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_149" ref="debug_lamp_label_149"> - <bounds x="367" y="623" width="30" height="30"/> - </element> <element name="lamp150" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_150" ref="debug_lamp_label_150"> - <bounds x="431" y="623" width="30" height="30"/> - </element> <element name="lamp151" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_151" ref="debug_lamp_label_151"> - <bounds x="495" y="623" width="30" height="30"/> - </element> <element name="lamp152" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_152" ref="debug_lamp_label_152"> - <bounds x="559" y="623" width="30" height="30"/> - </element> <element name="lamp153" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_153" ref="debug_lamp_label_153"> - <bounds x="623" y="623" width="30" height="30"/> - </element> <element name="lamp154" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_154" ref="debug_lamp_label_154"> - <bounds x="687" y="623" width="30" height="30"/> - </element> <element name="lamp155" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_155" ref="debug_lamp_label_155"> - <bounds x="751" y="623" width="30" height="30"/> - </element> <element name="lamp156" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_156" ref="debug_lamp_label_156"> - <bounds x="815" y="623" width="30" height="30"/> - </element> <element name="lamp157" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_157" ref="debug_lamp_label_157"> - <bounds x="879" y="623" width="30" height="30"/> - </element> <element name="lamp158" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_158" ref="debug_lamp_label_158"> - <bounds x="943" y="623" width="30" height="30"/> - </element> <element name="lamp159" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="608" width="60" height="60"/> </element> - <element name="debug_lamp_label_159" ref="debug_lamp_label_159"> - <bounds x="1007" y="623" width="30" height="30"/> - </element> <element name="lamp160" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_160" ref="debug_lamp_label_160"> - <bounds x="47" y="687" width="30" height="30"/> - </element> <element name="lamp161" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_161" ref="debug_lamp_label_161"> - <bounds x="111" y="687" width="30" height="30"/> - </element> <element name="lamp162" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_162" ref="debug_lamp_label_162"> - <bounds x="175" y="687" width="30" height="30"/> - </element> <element name="lamp163" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_163" ref="debug_lamp_label_163"> - <bounds x="239" y="687" width="30" height="30"/> - </element> <element name="lamp164" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_164" ref="debug_lamp_label_164"> - <bounds x="303" y="687" width="30" height="30"/> - </element> <element name="lamp165" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_165" ref="debug_lamp_label_165"> - <bounds x="367" y="687" width="30" height="30"/> - </element> <element name="lamp166" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_166" ref="debug_lamp_label_166"> - <bounds x="431" y="687" width="30" height="30"/> - </element> <element name="lamp167" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_167" ref="debug_lamp_label_167"> - <bounds x="495" y="687" width="30" height="30"/> - </element> <element name="lamp168" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_168" ref="debug_lamp_label_168"> - <bounds x="559" y="687" width="30" height="30"/> - </element> <element name="lamp169" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_169" ref="debug_lamp_label_169"> - <bounds x="623" y="687" width="30" height="30"/> - </element> <element name="lamp170" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_170" ref="debug_lamp_label_170"> - <bounds x="687" y="687" width="30" height="30"/> - </element> <element name="lamp171" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_171" ref="debug_lamp_label_171"> - <bounds x="751" y="687" width="30" height="30"/> - </element> <element name="lamp172" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_172" ref="debug_lamp_label_172"> - <bounds x="815" y="687" width="30" height="30"/> - </element> <element name="lamp173" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_173" ref="debug_lamp_label_173"> - <bounds x="879" y="687" width="30" height="30"/> - </element> <element name="lamp174" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_174" ref="debug_lamp_label_174"> - <bounds x="943" y="687" width="30" height="30"/> - </element> <element name="lamp175" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="672" width="60" height="60"/> </element> - <element name="debug_lamp_label_175" ref="debug_lamp_label_175"> - <bounds x="1007" y="687" width="30" height="30"/> - </element> <element name="lamp176" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_176" ref="debug_lamp_label_176"> - <bounds x="47" y="751" width="30" height="30"/> - </element> <element name="lamp177" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_177" ref="debug_lamp_label_177"> - <bounds x="111" y="751" width="30" height="30"/> - </element> <element name="lamp178" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_178" ref="debug_lamp_label_178"> - <bounds x="175" y="751" width="30" height="30"/> - </element> <element name="lamp179" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_179" ref="debug_lamp_label_179"> - <bounds x="239" y="751" width="30" height="30"/> - </element> <element name="lamp180" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_180" ref="debug_lamp_label_180"> - <bounds x="303" y="751" width="30" height="30"/> - </element> <element name="lamp181" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_181" ref="debug_lamp_label_181"> - <bounds x="367" y="751" width="30" height="30"/> - </element> <element name="lamp182" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_182" ref="debug_lamp_label_182"> - <bounds x="431" y="751" width="30" height="30"/> - </element> <element name="lamp183" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_183" ref="debug_lamp_label_183"> - <bounds x="495" y="751" width="30" height="30"/> - </element> <element name="lamp184" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_184" ref="debug_lamp_label_184"> - <bounds x="559" y="751" width="30" height="30"/> - </element> <element name="lamp185" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_185" ref="debug_lamp_label_185"> - <bounds x="623" y="751" width="30" height="30"/> - </element> <element name="lamp186" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_186" ref="debug_lamp_label_186"> - <bounds x="687" y="751" width="30" height="30"/> - </element> <element name="lamp187" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_187" ref="debug_lamp_label_187"> - <bounds x="751" y="751" width="30" height="30"/> - </element> <element name="lamp188" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_188" ref="debug_lamp_label_188"> - <bounds x="815" y="751" width="30" height="30"/> - </element> <element name="lamp189" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_189" ref="debug_lamp_label_189"> - <bounds x="879" y="751" width="30" height="30"/> - </element> <element name="lamp190" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_190" ref="debug_lamp_label_190"> - <bounds x="943" y="751" width="30" height="30"/> - </element> <element name="lamp191" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="736" width="60" height="60"/> </element> - <element name="debug_lamp_label_191" ref="debug_lamp_label_191"> - <bounds x="1007" y="751" width="30" height="30"/> - </element> <element name="lamp192" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_192" ref="debug_lamp_label_192"> - <bounds x="47" y="815" width="30" height="30"/> - </element> <element name="lamp193" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_193" ref="debug_lamp_label_193"> - <bounds x="111" y="815" width="30" height="30"/> - </element> <element name="lamp194" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_194" ref="debug_lamp_label_194"> - <bounds x="175" y="815" width="30" height="30"/> - </element> <element name="lamp195" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_195" ref="debug_lamp_label_195"> - <bounds x="239" y="815" width="30" height="30"/> - </element> <element name="lamp196" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_196" ref="debug_lamp_label_196"> - <bounds x="303" y="815" width="30" height="30"/> - </element> <element name="lamp197" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_197" ref="debug_lamp_label_197"> - <bounds x="367" y="815" width="30" height="30"/> - </element> <element name="lamp198" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_198" ref="debug_lamp_label_198"> - <bounds x="431" y="815" width="30" height="30"/> - </element> <element name="lamp199" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_199" ref="debug_lamp_label_199"> - <bounds x="495" y="815" width="30" height="30"/> - </element> <element name="lamp200" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_200" ref="debug_lamp_label_200"> - <bounds x="559" y="815" width="30" height="30"/> - </element> <element name="lamp201" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_201" ref="debug_lamp_label_201"> - <bounds x="623" y="815" width="30" height="30"/> - </element> <element name="lamp202" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_202" ref="debug_lamp_label_202"> - <bounds x="687" y="815" width="30" height="30"/> - </element> <element name="lamp203" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_203" ref="debug_lamp_label_203"> - <bounds x="751" y="815" width="30" height="30"/> - </element> <element name="lamp204" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_204" ref="debug_lamp_label_204"> - <bounds x="815" y="815" width="30" height="30"/> - </element> <element name="lamp205" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_205" ref="debug_lamp_label_205"> - <bounds x="879" y="815" width="30" height="30"/> - </element> <element name="lamp206" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_206" ref="debug_lamp_label_206"> - <bounds x="943" y="815" width="30" height="30"/> - </element> <element name="lamp207" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="800" width="60" height="60"/> </element> - <element name="debug_lamp_label_207" ref="debug_lamp_label_207"> - <bounds x="1007" y="815" width="30" height="30"/> - </element> <element name="lamp208" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_208" ref="debug_lamp_label_208"> - <bounds x="47" y="879" width="30" height="30"/> - </element> <element name="lamp209" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_209" ref="debug_lamp_label_209"> - <bounds x="111" y="879" width="30" height="30"/> - </element> <element name="lamp210" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_210" ref="debug_lamp_label_210"> - <bounds x="175" y="879" width="30" height="30"/> - </element> <element name="lamp211" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_211" ref="debug_lamp_label_211"> - <bounds x="239" y="879" width="30" height="30"/> - </element> <element name="lamp212" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_212" ref="debug_lamp_label_212"> - <bounds x="303" y="879" width="30" height="30"/> - </element> <element name="lamp213" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_213" ref="debug_lamp_label_213"> - <bounds x="367" y="879" width="30" height="30"/> - </element> <element name="lamp214" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_214" ref="debug_lamp_label_214"> - <bounds x="431" y="879" width="30" height="30"/> - </element> <element name="lamp215" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_215" ref="debug_lamp_label_215"> - <bounds x="495" y="879" width="30" height="30"/> - </element> <element name="lamp216" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_216" ref="debug_lamp_label_216"> - <bounds x="559" y="879" width="30" height="30"/> - </element> <element name="lamp217" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_217" ref="debug_lamp_label_217"> - <bounds x="623" y="879" width="30" height="30"/> - </element> <element name="lamp218" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_218" ref="debug_lamp_label_218"> - <bounds x="687" y="879" width="30" height="30"/> - </element> <element name="lamp219" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_219" ref="debug_lamp_label_219"> - <bounds x="751" y="879" width="30" height="30"/> - </element> <element name="lamp220" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_220" ref="debug_lamp_label_220"> - <bounds x="815" y="879" width="30" height="30"/> - </element> <element name="lamp221" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_221" ref="debug_lamp_label_221"> - <bounds x="879" y="879" width="30" height="30"/> - </element> <element name="lamp222" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_222" ref="debug_lamp_label_222"> - <bounds x="943" y="879" width="30" height="30"/> - </element> <element name="lamp223" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="864" width="60" height="60"/> </element> - <element name="debug_lamp_label_223" ref="debug_lamp_label_223"> - <bounds x="1007" y="879" width="30" height="30"/> - </element> <element name="lamp224" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_224" ref="debug_lamp_label_224"> - <bounds x="47" y="943" width="30" height="30"/> - </element> <element name="lamp225" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_225" ref="debug_lamp_label_225"> - <bounds x="111" y="943" width="30" height="30"/> - </element> <element name="lamp226" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_226" ref="debug_lamp_label_226"> - <bounds x="175" y="943" width="30" height="30"/> - </element> <element name="lamp227" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_227" ref="debug_lamp_label_227"> - <bounds x="239" y="943" width="30" height="30"/> - </element> <element name="lamp228" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_228" ref="debug_lamp_label_228"> - <bounds x="303" y="943" width="30" height="30"/> - </element> <element name="lamp229" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_229" ref="debug_lamp_label_229"> - <bounds x="367" y="943" width="30" height="30"/> - </element> <element name="lamp230" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_230" ref="debug_lamp_label_230"> - <bounds x="431" y="943" width="30" height="30"/> - </element> <element name="lamp231" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_231" ref="debug_lamp_label_231"> - <bounds x="495" y="943" width="30" height="30"/> - </element> <element name="lamp232" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_232" ref="debug_lamp_label_232"> - <bounds x="559" y="943" width="30" height="30"/> - </element> <element name="lamp233" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_233" ref="debug_lamp_label_233"> - <bounds x="623" y="943" width="30" height="30"/> - </element> <element name="lamp234" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_234" ref="debug_lamp_label_234"> - <bounds x="687" y="943" width="30" height="30"/> - </element> <element name="lamp235" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_235" ref="debug_lamp_label_235"> - <bounds x="751" y="943" width="30" height="30"/> - </element> <element name="lamp236" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_236" ref="debug_lamp_label_236"> - <bounds x="815" y="943" width="30" height="30"/> - </element> <element name="lamp237" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_237" ref="debug_lamp_label_237"> - <bounds x="879" y="943" width="30" height="30"/> - </element> <element name="lamp238" ref="debug_lamp_unreferenced" state="0"> <bounds x="928" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_238" ref="debug_lamp_label_238"> - <bounds x="943" y="943" width="30" height="30"/> - </element> <element name="lamp239" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="928" width="60" height="60"/> </element> - <element name="debug_lamp_label_239" ref="debug_lamp_label_239"> - <bounds x="1007" y="943" width="30" height="30"/> - </element> <element name="lamp240" ref="debug_lamp_unreferenced" state="0"> <bounds x="32" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_240" ref="debug_lamp_label_240"> - <bounds x="47" y="1007" width="30" height="30"/> - </element> <element name="lamp241" ref="debug_lamp_unreferenced" state="0"> <bounds x="96" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_241" ref="debug_lamp_label_241"> - <bounds x="111" y="1007" width="30" height="30"/> - </element> <element name="lamp242" ref="debug_lamp_unreferenced" state="0"> <bounds x="160" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_242" ref="debug_lamp_label_242"> - <bounds x="175" y="1007" width="30" height="30"/> - </element> <element name="lamp243" ref="debug_lamp_unreferenced" state="0"> <bounds x="224" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_243" ref="debug_lamp_label_243"> - <bounds x="239" y="1007" width="30" height="30"/> - </element> <element name="lamp244" ref="debug_lamp_unreferenced" state="0"> <bounds x="288" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_244" ref="debug_lamp_label_244"> - <bounds x="303" y="1007" width="30" height="30"/> - </element> <element name="lamp245" ref="debug_lamp_unreferenced" state="0"> <bounds x="352" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_245" ref="debug_lamp_label_245"> - <bounds x="367" y="1007" width="30" height="30"/> - </element> <element name="lamp246" ref="debug_lamp_unreferenced" state="0"> <bounds x="416" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_246" ref="debug_lamp_label_246"> - <bounds x="431" y="1007" width="30" height="30"/> - </element> <element name="lamp247" ref="debug_lamp_unreferenced" state="0"> <bounds x="480" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_247" ref="debug_lamp_label_247"> - <bounds x="495" y="1007" width="30" height="30"/> - </element> <element name="lamp248" ref="debug_lamp_unreferenced" state="0"> <bounds x="544" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_248" ref="debug_lamp_label_248"> - <bounds x="559" y="1007" width="30" height="30"/> - </element> <element name="lamp249" ref="debug_lamp_unreferenced" state="0"> <bounds x="608" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_249" ref="debug_lamp_label_249"> - <bounds x="623" y="1007" width="30" height="30"/> - </element> <element name="lamp250" ref="debug_lamp_unreferenced" state="0"> <bounds x="672" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_250" ref="debug_lamp_label_250"> - <bounds x="687" y="1007" width="30" height="30"/> - </element> <element name="lamp251" ref="debug_lamp_unreferenced" state="0"> <bounds x="736" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_251" ref="debug_lamp_label_251"> - <bounds x="751" y="1007" width="30" height="30"/> - </element> <element name="lamp252" ref="debug_lamp_unreferenced" state="0"> <bounds x="800" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_252" ref="debug_lamp_label_252"> - <bounds x="815" y="1007" width="30" height="30"/> - </element> <element name="lamp253" ref="debug_lamp_unreferenced" state="0"> <bounds x="864" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_253" ref="debug_lamp_label_253"> - <bounds x="879" y="1007" width="30" height="30"/> - </element> <element name="lamp254" ref="debug_lamp_standard" state="0"> <bounds x="928" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_254" ref="debug_lamp_label_254"> - <bounds x="943" y="1007" width="30" height="30"/> - </element> <element name="lamp255" ref="debug_lamp_unreferenced" state="0"> <bounds x="992" y="992" width="60" height="60"/> </element> - <element name="debug_lamp_label_255" ref="debug_lamp_label_255"> - <bounds x="1007" y="1007" width="30" height="30"/> - </element> + + <repeat count="16"> + <param name="s" start="0" increment="16" /> + <param name="y" start="47" increment="64" /> + <repeat count="16"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="47" increment="64" /> + <element name="debug_lamp_label_~n~" ref="debug_lamp_label_~n~"> + <bounds x="~x~" y="~y~" width="30" height="30"/> + </element> + </repeat> + </repeat> + <element name="debug_button_0" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_0" ref="debug_button_label_0"> - <bounds x="1120" y="671" width="40" height="22"/> - </element> <element name="debug_button_1" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_1" ref="debug_button_label_1"> - <bounds x="1204" y="671" width="40" height="22"/> - </element> <element name="debug_button_2" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_2" ref="debug_button_label_2"> - <bounds x="1288" y="671" width="40" height="22"/> - </element> <element name="debug_button_3" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_3" ref="debug_button_label_3"> - <bounds x="1372" y="671" width="40" height="22"/> - </element> <element name="debug_button_4" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_4" ref="debug_button_label_4"> - <bounds x="1456" y="671" width="40" height="22"/> - </element> <element name="debug_button_5" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_5" ref="debug_button_label_5"> - <bounds x="1540" y="671" width="40" height="22"/> - </element> <element name="debug_button_6" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_6" ref="debug_button_label_6"> - <bounds x="1624" y="671" width="40" height="22"/> - </element> <element name="debug_button_7" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="660" width="80" height="44"/> </element> - <element name="debug_button_label_7" ref="debug_button_label_7"> - <bounds x="1708" y="671" width="40" height="22"/> - </element> <element name="debug_button_8" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_8" ref="debug_button_label_8"> - <bounds x="1120" y="719" width="40" height="22"/> - </element> <element name="debug_button_9" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_9" ref="debug_button_label_9"> - <bounds x="1204" y="719" width="40" height="22"/> - </element> <element name="debug_button_10" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_10" ref="debug_button_label_10"> - <bounds x="1288" y="719" width="40" height="22"/> - </element> <element name="debug_button_11" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_11" ref="debug_button_label_11"> - <bounds x="1372" y="719" width="40" height="22"/> - </element> <element name="debug_button_12" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_12" ref="debug_button_label_12"> - <bounds x="1456" y="719" width="40" height="22"/> - </element> <element name="debug_button_13" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_13" ref="debug_button_label_13"> - <bounds x="1540" y="719" width="40" height="22"/> - </element> <element name="debug_button_14" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_14" ref="debug_button_label_14"> - <bounds x="1624" y="719" width="40" height="22"/> - </element> <element name="debug_button_15" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="708" width="80" height="44"/> </element> - <element name="debug_button_label_15" ref="debug_button_label_15"> - <bounds x="1708" y="719" width="40" height="22"/> - </element> <element name="debug_button_16" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_16" ref="debug_button_label_16"> - <bounds x="1120" y="767" width="40" height="22"/> - </element> <element name="debug_button_17" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_17" ref="debug_button_label_17"> - <bounds x="1204" y="767" width="40" height="22"/> - </element> <element name="debug_button_18" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_18" ref="debug_button_label_18"> - <bounds x="1288" y="767" width="40" height="22"/> - </element> <element name="debug_button_19" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_19" ref="debug_button_label_19"> - <bounds x="1372" y="767" width="40" height="22"/> - </element> <element name="debug_button_20" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_20" ref="debug_button_label_20"> - <bounds x="1456" y="767" width="40" height="22"/> - </element> <element name="debug_button_21" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_21" ref="debug_button_label_21"> - <bounds x="1540" y="767" width="40" height="22"/> - </element> <element name="debug_button_22" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_22" ref="debug_button_label_22"> - <bounds x="1624" y="767" width="40" height="22"/> - </element> <element name="debug_button_23" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="756" width="80" height="44"/> </element> - <element name="debug_button_label_23" ref="debug_button_label_23"> - <bounds x="1708" y="767" width="40" height="22"/> - </element> <element name="debug_button_24" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_24" ref="debug_button_label_24"> - <bounds x="1120" y="815" width="40" height="22"/> - </element> <element name="debug_button_25" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_25" ref="debug_button_label_25"> - <bounds x="1204" y="815" width="40" height="22"/> - </element> <element name="debug_button_26" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_26" ref="debug_button_label_26"> - <bounds x="1288" y="815" width="40" height="22"/> - </element> <element name="debug_button_27" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_27" ref="debug_button_label_27"> - <bounds x="1372" y="815" width="40" height="22"/> - </element> <element name="debug_button_28" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_28" ref="debug_button_label_28"> - <bounds x="1456" y="815" width="40" height="22"/> - </element> <element name="debug_button_29" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_29" ref="debug_button_label_29"> - <bounds x="1540" y="815" width="40" height="22"/> - </element> <element name="debug_button_30" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_30" ref="debug_button_label_30"> - <bounds x="1624" y="815" width="40" height="22"/> - </element> <element name="debug_button_31" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="804" width="80" height="44"/> </element> - <element name="debug_button_label_31" ref="debug_button_label_31"> - <bounds x="1708" y="815" width="40" height="22"/> - </element> <element name="lamp64" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_32" ref="debug_button_label_32"> - <bounds x="1120" y="863" width="40" height="22"/> - </element> <element name="lamp65" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_33" ref="debug_button_label_33"> - <bounds x="1204" y="863" width="40" height="22"/> - </element> <element name="lamp66" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_34" ref="debug_button_label_34"> - <bounds x="1288" y="863" width="40" height="22"/> - </element> <element name="lamp67" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_35" ref="debug_button_label_35"> - <bounds x="1372" y="863" width="40" height="22"/> - </element> <element name="lamp68" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_36" ref="debug_button_label_36"> - <bounds x="1456" y="863" width="40" height="22"/> - </element> <element name="lamp69" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_37" ref="debug_button_label_37"> - <bounds x="1540" y="863" width="40" height="22"/> - </element> <element name="lamp70" ref="debug_button_standard" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_38" ref="debug_button_label_38"> - <bounds x="1624" y="863" width="40" height="22"/> - </element> <element name="debug_button_39" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="852" width="80" height="44"/> </element> - <element name="debug_button_label_39" ref="debug_button_label_39"> - <bounds x="1708" y="863" width="40" height="22"/> - </element> <element name="debug_button_40" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_40" ref="debug_button_label_40"> - <bounds x="1120" y="911" width="40" height="22"/> - </element> <element name="debug_button_41" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_41" ref="debug_button_label_41"> - <bounds x="1204" y="911" width="40" height="22"/> - </element> <element name="debug_button_42" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_42" ref="debug_button_label_42"> - <bounds x="1288" y="911" width="40" height="22"/> - </element> <element name="debug_button_43" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_43" ref="debug_button_label_43"> - <bounds x="1372" y="911" width="40" height="22"/> - </element> <element name="debug_button_44" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_44" ref="debug_button_label_44"> - <bounds x="1456" y="911" width="40" height="22"/> - </element> <element name="debug_button_45" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_45" ref="debug_button_label_45"> - <bounds x="1540" y="911" width="40" height="22"/> - </element> <element name="debug_button_46" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_46" ref="debug_button_label_46"> - <bounds x="1624" y="911" width="40" height="22"/> - </element> <element name="debug_button_47" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="900" width="80" height="44"/> </element> - <element name="debug_button_label_47" ref="debug_button_label_47"> - <bounds x="1708" y="911" width="40" height="22"/> - </element> <element name="debug_button_48" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_48" ref="debug_button_label_48"> - <bounds x="1120" y="959" width="40" height="22"/> - </element> <element name="debug_button_49" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_49" ref="debug_button_label_49"> - <bounds x="1204" y="959" width="40" height="22"/> - </element> <element name="debug_button_50" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_50" ref="debug_button_label_50"> - <bounds x="1288" y="959" width="40" height="22"/> - </element> <element name="debug_button_51" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_51" ref="debug_button_label_51"> - <bounds x="1372" y="959" width="40" height="22"/> - </element> <element name="debug_button_52" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_52" ref="debug_button_label_52"> - <bounds x="1456" y="959" width="40" height="22"/> - </element> <element name="debug_button_53" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_53" ref="debug_button_label_53"> - <bounds x="1540" y="959" width="40" height="22"/> - </element> <element name="debug_button_54" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_54" ref="debug_button_label_54"> - <bounds x="1624" y="959" width="40" height="22"/> - </element> <element name="debug_button_55" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="948" width="80" height="44"/> </element> - <element name="debug_button_label_55" ref="debug_button_label_55"> - <bounds x="1708" y="959" width="40" height="22"/> - </element> <element name="debug_button_56" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x01"> <bounds x="1100" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_56" ref="debug_button_label_56"> - <bounds x="1120" y="1007" width="40" height="22"/> - </element> <element name="debug_button_57" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x02"> <bounds x="1184" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_57" ref="debug_button_label_57"> - <bounds x="1204" y="1007" width="40" height="22"/> - </element> <element name="debug_button_58" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x04"> <bounds x="1268" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_58" ref="debug_button_label_58"> - <bounds x="1288" y="1007" width="40" height="22"/> - </element> <element name="debug_button_59" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x08"> <bounds x="1352" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_59" ref="debug_button_label_59"> - <bounds x="1372" y="1007" width="40" height="22"/> - </element> <element name="debug_button_60" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x10"> <bounds x="1436" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_60" ref="debug_button_label_60"> - <bounds x="1456" y="1007" width="40" height="22"/> - </element> <element name="debug_button_61" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x20"> <bounds x="1520" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_61" ref="debug_button_label_61"> - <bounds x="1540" y="1007" width="40" height="22"/> - </element> <element name="debug_button_62" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x40"> <bounds x="1604" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_62" ref="debug_button_label_62"> - <bounds x="1624" y="1007" width="40" height="22"/> - </element> <element name="debug_button_63" ref="debug_button_unreferenced" state="0" inputtag="TODO" inputmask="0x80"> <bounds x="1688" y="996" width="80" height="44"/> </element> - <element name="debug_button_label_63" ref="debug_button_label_63"> - <bounds x="1708" y="1007" width="40" height="22"/> - </element> - <element name="vfd15" ref="debug_vfd" state="0"> - <bounds x="1150" y="600" width="32" height="48"/> - </element> - <element name="vfd14" ref="debug_vfd" state="0"> - <bounds x="1182" y="600" width="32" height="48"/> - </element> - <element name="vfd13" ref="debug_vfd" state="0"> - <bounds x="1214" y="600" width="32" height="48"/> - </element> - <element name="vfd12" ref="debug_vfd" state="0"> - <bounds x="1246" y="600" width="32" height="48"/> - </element> - <element name="vfd11" ref="debug_vfd" state="0"> - <bounds x="1278" y="600" width="32" height="48"/> - </element> - <element name="vfd10" ref="debug_vfd" state="0"> - <bounds x="1310" y="600" width="32" height="48"/> - </element> - <element name="vfd9" ref="debug_vfd" state="0"> - <bounds x="1342" y="600" width="32" height="48"/> - </element> - <element name="vfd8" ref="debug_vfd" state="0"> - <bounds x="1374" y="600" width="32" height="48"/> - </element> - <element name="vfd7" ref="debug_vfd" state="0"> - <bounds x="1406" y="600" width="32" height="48"/> - </element> - <element name="vfd6" ref="debug_vfd" state="0"> - <bounds x="1438" y="600" width="32" height="48"/> - </element> - <element name="vfd5" ref="debug_vfd" state="0"> - <bounds x="1470" y="600" width="32" height="48"/> - </element> - <element name="vfd4" ref="debug_vfd" state="0"> - <bounds x="1502" y="600" width="32" height="48"/> - </element> - <element name="vfd3" ref="debug_vfd" state="0"> - <bounds x="1534" y="600" width="32" height="48"/> - </element> - <element name="vfd2" ref="debug_vfd" state="0"> - <bounds x="1566" y="600" width="32" height="48"/> - </element> - <element name="vfd1" ref="debug_vfd" state="0"> - <bounds x="1598" y="600" width="32" height="48"/> - </element> - <element name="vfd0" ref="debug_vfd" state="0"> - <bounds x="1630" y="600" width="32" height="48"/> - </element> + + <repeat count="8"> + <param name="s" start="0" increment="8" /> + <param name="y" start="671" increment="48" /> + <repeat count="8"> + <param name="n" start="~s~" increment="1" /> + <param name="x" start="1120" increment="84" /> + <element name="debug_button_label_~n~" ref="debug_button_label_~n~"> + <bounds x="~x~" y="~y~" width="40" height="22"/> + </element> + </repeat> + </repeat> + + <repeat count="16"> + <param name="n" start="15" increment="-1" /> + <param name="x" start="1150" increment="32" /> + <element name="vfd~n~" ref="debug_vfd" state="0"> + <bounds x="~x~" y="600" width="32" height="48"/> + </element> + </repeat> + <element ref="reel_background"> <bounds x="1240" y="32" width="120" height="240"/> </element> diff --git a/src/mame/layout/pnchmn.lay b/src/mame/layout/pnchmn.lay index 55e58da484e..89086207b22 100644 --- a/src/mame/layout/pnchmn.lay +++ b/src/mame/layout/pnchmn.lay @@ -3,1667 +3,104 @@ license:CC0 --> <mamelayout version="2"> - <element name="select left right"> - <rect state="0"> - <color red="1.0" green="1.0" blue="1.0" /> - </rect> - <rect state="1"> - <color red="1.0" green="0.0" blue="0.0" /> - </rect> + <element name="disk"> + <disk /> </element> - <element name="start lamp"> - <disk state="0"> - <color red="1.0" green="1.0" blue="1.0" /> - </disk> - <disk state="1"> - <color red="1.0" green="0.0" blue="0.0" /> - </disk> - </element> - - <element name="left top lamp"> - <rect state="0"> - <color red="1.0" green="0.0" blue="0.0" alpha="0" /> - </rect> - <rect state="1"> - <color red="1.0" green="0.0" blue="0.0" /> - </rect> - </element> - - <element name="left top pad"> - <rect state="0"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="1"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="2"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="3"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="4"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="5"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="6"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="7"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="8"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="9"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="10"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="11"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="12"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="13"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="14"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="15"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="16"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="17"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="18"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="19"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="20"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="21"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="22"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="23"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="24"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="25"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="26"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="27"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="28"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="29"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="30"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="31"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="32"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="33"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="34"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="35"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="36"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="37"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="38"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="39"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="40"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="41"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="42"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="43"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="44"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="45"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="46"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="47"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="48"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="49"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="50"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="51"><color red="1" green="1" blue="1" alpha="0.01" /></rect> - <rect state="52"><color red="1" green="1" blue="1" alpha="0.02" /></rect> - <rect state="53"><color red="1" green="1" blue="1" alpha="0.03" /></rect> - <rect state="54"><color red="1" green="1" blue="1" alpha="0.04" /></rect> - <rect state="55"><color red="1" green="1" blue="1" alpha="0.05" /></rect> - <rect state="56"><color red="1" green="1" blue="1" alpha="0.06" /></rect> - <rect state="57"><color red="1" green="1" blue="1" alpha="0.07" /></rect> - <rect state="58"><color red="1" green="1" blue="1" alpha="0.08" /></rect> - <rect state="59"><color red="1" green="1" blue="1" alpha="0.09" /></rect> - <rect state="60"><color red="1" green="1" blue="1" alpha="0.10" /></rect> - <rect state="61"><color red="1" green="1" blue="1" alpha="0.11" /></rect> - <rect state="62"><color red="1" green="1" blue="1" alpha="0.12" /></rect> - <rect state="63"><color red="1" green="1" blue="1" alpha="0.13" /></rect> - <rect state="64"><color red="1" green="1" blue="1" alpha="0.14" /></rect> - <rect state="65"><color red="1" green="1" blue="1" alpha="0.15" /></rect> - <rect state="66"><color red="1" green="1" blue="1" alpha="0.16" /></rect> - <rect state="67"><color red="1" green="1" blue="1" alpha="0.17" /></rect> - <rect state="68"><color red="1" green="1" blue="1" alpha="0.18" /></rect> - <rect state="69"><color red="1" green="1" blue="1" alpha="0.19" /></rect> - <rect state="70"><color red="1" green="1" blue="1" alpha="0.20" /></rect> - <rect state="71"><color red="1" green="1" blue="1" alpha="0.21" /></rect> - <rect state="72"><color red="1" green="1" blue="1" alpha="0.22" /></rect> - <rect state="73"><color red="1" green="1" blue="1" alpha="0.23" /></rect> - <rect state="74"><color red="1" green="1" blue="1" alpha="0.24" /></rect> - <rect state="75"><color red="1" green="1" blue="1" alpha="0.25" /></rect> - <rect state="76"><color red="1" green="1" blue="1" alpha="0.26" /></rect> - <rect state="77"><color red="1" green="1" blue="1" alpha="0.27" /></rect> - <rect state="78"><color red="1" green="1" blue="1" alpha="0.28" /></rect> - <rect state="79"><color red="1" green="1" blue="1" alpha="0.29" /></rect> - <rect state="80"><color red="1" green="1" blue="1" alpha="0.30" /></rect> - <rect state="81"><color red="1" green="1" blue="1" alpha="0.31" /></rect> - <rect state="82"><color red="1" green="1" blue="1" alpha="0.32" /></rect> - <rect state="83"><color red="1" green="1" blue="1" alpha="0.33" /></rect> - <rect state="84"><color red="1" green="1" blue="1" alpha="0.34" /></rect> - <rect state="85"><color red="1" green="1" blue="1" alpha="0.35" /></rect> - <rect state="86"><color red="1" green="1" blue="1" alpha="0.36" /></rect> - <rect state="87"><color red="1" green="1" blue="1" alpha="0.37" /></rect> - <rect state="88"><color red="1" green="1" blue="1" alpha="0.38" /></rect> - <rect state="89"><color red="1" green="1" blue="1" alpha="0.39" /></rect> - <rect state="90"><color red="1" green="1" blue="1" alpha="0.40" /></rect> - <rect state="91"><color red="1" green="1" blue="1" alpha="0.41" /></rect> - <rect state="92"><color red="1" green="1" blue="1" alpha="0.42" /></rect> - <rect state="93"><color red="1" green="1" blue="1" alpha="0.43" /></rect> - <rect state="94"><color red="1" green="1" blue="1" alpha="0.44" /></rect> - <rect state="95"><color red="1" green="1" blue="1" alpha="0.45" /></rect> - <rect state="96"><color red="1" green="1" blue="1" alpha="0.46" /></rect> - <rect state="97"><color red="1" green="1" blue="1" alpha="0.47" /></rect> - <rect state="98"><color red="1" green="1" blue="1" alpha="0.48" /></rect> - <rect state="99"><color red="1" green="1" blue="1" alpha="0.49" /></rect> - <rect state="100"><color red="1" green="1" blue="1" alpha="0.50" /></rect> - <rect state="101"><color red="1" green="1" blue="1" alpha="0.51" /></rect> - <rect state="102"><color red="1" green="1" blue="1" alpha="0.52" /></rect> - <rect state="103"><color red="1" green="1" blue="1" alpha="0.53" /></rect> - <rect state="104"><color red="1" green="1" blue="1" alpha="0.54" /></rect> - <rect state="105"><color red="1" green="1" blue="1" alpha="0.55" /></rect> - <rect state="106"><color red="1" green="1" blue="1" alpha="0.56" /></rect> - <rect state="107"><color red="1" green="1" blue="1" alpha="0.57" /></rect> - <rect state="108"><color red="1" green="1" blue="1" alpha="0.58" /></rect> - <rect state="109"><color red="1" green="1" blue="1" alpha="0.59" /></rect> - <rect state="110"><color red="1" green="1" blue="1" alpha="0.60" /></rect> - <rect state="111"><color red="1" green="1" blue="1" alpha="0.61" /></rect> - <rect state="112"><color red="1" green="1" blue="1" alpha="0.62" /></rect> - <rect state="113"><color red="1" green="1" blue="1" alpha="0.63" /></rect> - <rect state="114"><color red="1" green="1" blue="1" alpha="0.64" /></rect> - <rect state="115"><color red="1" green="1" blue="1" alpha="0.65" /></rect> - <rect state="116"><color red="1" green="1" blue="1" alpha="0.66" /></rect> - <rect state="117"><color red="1" green="1" blue="1" alpha="0.67" /></rect> - <rect state="118"><color red="1" green="1" blue="1" alpha="0.68" /></rect> - <rect state="119"><color red="1" green="1" blue="1" alpha="0.69" /></rect> - <rect state="120"><color red="1" green="1" blue="1" alpha="0.70" /></rect> - <rect state="121"><color red="1" green="1" blue="1" alpha="0.71" /></rect> - <rect state="122"><color red="1" green="1" blue="1" alpha="0.72" /></rect> - <rect state="123"><color red="1" green="1" blue="1" alpha="0.73" /></rect> - <rect state="124"><color red="1" green="1" blue="1" alpha="0.74" /></rect> - <rect state="125"><color red="1" green="1" blue="1" alpha="0.75" /></rect> - <rect state="126"><color red="1" green="1" blue="1" alpha="0.76" /></rect> - <rect state="127"><color red="1" green="1" blue="1" alpha="0.77" /></rect> - <rect state="128"><color red="1" green="1" blue="1" alpha="0.78" /></rect> - <rect state="129"><color red="1" green="1" blue="1" alpha="0.79" /></rect> - <rect state="130"><color red="1" green="1" blue="1" alpha="0.80" /></rect> - <rect state="131"><color red="1" green="1" blue="1" alpha="0.81" /></rect> - <rect state="132"><color red="1" green="1" blue="1" alpha="0.82" /></rect> - <rect state="133"><color red="1" green="1" blue="1" alpha="0.83" /></rect> - <rect state="134"><color red="1" green="1" blue="1" alpha="0.84" /></rect> - <rect state="135"><color red="1" green="1" blue="1" alpha="0.85" /></rect> - <rect state="136"><color red="1" green="1" blue="1" alpha="0.86" /></rect> - <rect state="137"><color red="1" green="1" blue="1" alpha="0.87" /></rect> - <rect state="138"><color red="1" green="1" blue="1" alpha="0.88" /></rect> - <rect state="139"><color red="1" green="1" blue="1" alpha="0.89" /></rect> - <rect state="140"><color red="1" green="1" blue="1" alpha="0.90" /></rect> - <rect state="141"><color red="1" green="1" blue="1" alpha="0.91" /></rect> - <rect state="142"><color red="1" green="1" blue="1" alpha="0.92" /></rect> - <rect state="143"><color red="1" green="1" blue="1" alpha="0.93" /></rect> - <rect state="144"><color red="1" green="1" blue="1" alpha="0.94" /></rect> - <rect state="145"><color red="1" green="1" blue="1" alpha="0.95" /></rect> - <rect state="146"><color red="1" green="1" blue="1" alpha="0.96" /></rect> - <rect state="147"><color red="1" green="1" blue="1" alpha="0.97" /></rect> - <rect state="148"><color red="1" green="1" blue="1" alpha="0.98" /></rect> - <rect state="149"><color red="1" green="1" blue="1" alpha="0.99" /></rect> - <rect state="150"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="151"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="152"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="153"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="154"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="155"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="156"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="157"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="158"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="159"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="160"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="161"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="162"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="163"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="164"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="165"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="166"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="167"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="168"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="169"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="170"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="171"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="172"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="173"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="174"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="175"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="176"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="177"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="178"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="179"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="180"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="181"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="182"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="183"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="184"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="185"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="186"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="187"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="188"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="189"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="190"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="191"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="192"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="193"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="194"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="195"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="196"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="197"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="198"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="199"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="200"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="201"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="202"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="203"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="204"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="205"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="206"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="207"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="208"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="209"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="210"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="211"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="212"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="213"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="214"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="215"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="216"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="217"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="218"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="219"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="220"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="221"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="222"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="223"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="224"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="225"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="226"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="227"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="228"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="229"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="230"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="231"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="232"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="233"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="234"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="235"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="236"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="237"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="238"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="239"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="240"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="241"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="242"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="243"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="244"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="245"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="246"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="247"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="248"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="249"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="250"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="251"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="252"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="253"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="254"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="255"><color red="1" green="1" blue="1" alpha="1" /></rect> - </element> - - <element name="left middle lamp"> - <rect state="0"> - <color red="1.0" green="0.0" blue="0.0" alpha="0" /> - </rect> - <rect state="1"> - <color red="1.0" green="0.0" blue="0.0" /> - </rect> - </element> - - <element name="left middle pad"> - <rect state="0"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="1"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="2"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="3"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="4"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="5"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="6"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="7"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="8"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="9"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="10"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="11"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="12"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="13"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="14"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="15"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="16"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="17"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="18"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="19"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="20"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="21"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="22"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="23"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="24"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="25"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="26"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="27"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="28"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="29"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="30"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="31"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="32"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="33"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="34"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="35"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="36"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="37"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="38"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="39"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="40"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="41"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="42"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="43"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="44"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="45"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="46"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="47"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="48"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="49"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="50"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="51"><color red="1" green="1" blue="1" alpha="0.01" /></rect> - <rect state="52"><color red="1" green="1" blue="1" alpha="0.02" /></rect> - <rect state="53"><color red="1" green="1" blue="1" alpha="0.03" /></rect> - <rect state="54"><color red="1" green="1" blue="1" alpha="0.04" /></rect> - <rect state="55"><color red="1" green="1" blue="1" alpha="0.05" /></rect> - <rect state="56"><color red="1" green="1" blue="1" alpha="0.06" /></rect> - <rect state="57"><color red="1" green="1" blue="1" alpha="0.07" /></rect> - <rect state="58"><color red="1" green="1" blue="1" alpha="0.08" /></rect> - <rect state="59"><color red="1" green="1" blue="1" alpha="0.09" /></rect> - <rect state="60"><color red="1" green="1" blue="1" alpha="0.10" /></rect> - <rect state="61"><color red="1" green="1" blue="1" alpha="0.11" /></rect> - <rect state="62"><color red="1" green="1" blue="1" alpha="0.12" /></rect> - <rect state="63"><color red="1" green="1" blue="1" alpha="0.13" /></rect> - <rect state="64"><color red="1" green="1" blue="1" alpha="0.14" /></rect> - <rect state="65"><color red="1" green="1" blue="1" alpha="0.15" /></rect> - <rect state="66"><color red="1" green="1" blue="1" alpha="0.16" /></rect> - <rect state="67"><color red="1" green="1" blue="1" alpha="0.17" /></rect> - <rect state="68"><color red="1" green="1" blue="1" alpha="0.18" /></rect> - <rect state="69"><color red="1" green="1" blue="1" alpha="0.19" /></rect> - <rect state="70"><color red="1" green="1" blue="1" alpha="0.20" /></rect> - <rect state="71"><color red="1" green="1" blue="1" alpha="0.21" /></rect> - <rect state="72"><color red="1" green="1" blue="1" alpha="0.22" /></rect> - <rect state="73"><color red="1" green="1" blue="1" alpha="0.23" /></rect> - <rect state="74"><color red="1" green="1" blue="1" alpha="0.24" /></rect> - <rect state="75"><color red="1" green="1" blue="1" alpha="0.25" /></rect> - <rect state="76"><color red="1" green="1" blue="1" alpha="0.26" /></rect> - <rect state="77"><color red="1" green="1" blue="1" alpha="0.27" /></rect> - <rect state="78"><color red="1" green="1" blue="1" alpha="0.28" /></rect> - <rect state="79"><color red="1" green="1" blue="1" alpha="0.29" /></rect> - <rect state="80"><color red="1" green="1" blue="1" alpha="0.30" /></rect> - <rect state="81"><color red="1" green="1" blue="1" alpha="0.31" /></rect> - <rect state="82"><color red="1" green="1" blue="1" alpha="0.32" /></rect> - <rect state="83"><color red="1" green="1" blue="1" alpha="0.33" /></rect> - <rect state="84"><color red="1" green="1" blue="1" alpha="0.34" /></rect> - <rect state="85"><color red="1" green="1" blue="1" alpha="0.35" /></rect> - <rect state="86"><color red="1" green="1" blue="1" alpha="0.36" /></rect> - <rect state="87"><color red="1" green="1" blue="1" alpha="0.37" /></rect> - <rect state="88"><color red="1" green="1" blue="1" alpha="0.38" /></rect> - <rect state="89"><color red="1" green="1" blue="1" alpha="0.39" /></rect> - <rect state="90"><color red="1" green="1" blue="1" alpha="0.40" /></rect> - <rect state="91"><color red="1" green="1" blue="1" alpha="0.41" /></rect> - <rect state="92"><color red="1" green="1" blue="1" alpha="0.42" /></rect> - <rect state="93"><color red="1" green="1" blue="1" alpha="0.43" /></rect> - <rect state="94"><color red="1" green="1" blue="1" alpha="0.44" /></rect> - <rect state="95"><color red="1" green="1" blue="1" alpha="0.45" /></rect> - <rect state="96"><color red="1" green="1" blue="1" alpha="0.46" /></rect> - <rect state="97"><color red="1" green="1" blue="1" alpha="0.47" /></rect> - <rect state="98"><color red="1" green="1" blue="1" alpha="0.48" /></rect> - <rect state="99"><color red="1" green="1" blue="1" alpha="0.49" /></rect> - <rect state="100"><color red="1" green="1" blue="1" alpha="0.50" /></rect> - <rect state="101"><color red="1" green="1" blue="1" alpha="0.51" /></rect> - <rect state="102"><color red="1" green="1" blue="1" alpha="0.52" /></rect> - <rect state="103"><color red="1" green="1" blue="1" alpha="0.53" /></rect> - <rect state="104"><color red="1" green="1" blue="1" alpha="0.54" /></rect> - <rect state="105"><color red="1" green="1" blue="1" alpha="0.55" /></rect> - <rect state="106"><color red="1" green="1" blue="1" alpha="0.56" /></rect> - <rect state="107"><color red="1" green="1" blue="1" alpha="0.57" /></rect> - <rect state="108"><color red="1" green="1" blue="1" alpha="0.58" /></rect> - <rect state="109"><color red="1" green="1" blue="1" alpha="0.59" /></rect> - <rect state="110"><color red="1" green="1" blue="1" alpha="0.60" /></rect> - <rect state="111"><color red="1" green="1" blue="1" alpha="0.61" /></rect> - <rect state="112"><color red="1" green="1" blue="1" alpha="0.62" /></rect> - <rect state="113"><color red="1" green="1" blue="1" alpha="0.63" /></rect> - <rect state="114"><color red="1" green="1" blue="1" alpha="0.64" /></rect> - <rect state="115"><color red="1" green="1" blue="1" alpha="0.65" /></rect> - <rect state="116"><color red="1" green="1" blue="1" alpha="0.66" /></rect> - <rect state="117"><color red="1" green="1" blue="1" alpha="0.67" /></rect> - <rect state="118"><color red="1" green="1" blue="1" alpha="0.68" /></rect> - <rect state="119"><color red="1" green="1" blue="1" alpha="0.69" /></rect> - <rect state="120"><color red="1" green="1" blue="1" alpha="0.70" /></rect> - <rect state="121"><color red="1" green="1" blue="1" alpha="0.71" /></rect> - <rect state="122"><color red="1" green="1" blue="1" alpha="0.72" /></rect> - <rect state="123"><color red="1" green="1" blue="1" alpha="0.73" /></rect> - <rect state="124"><color red="1" green="1" blue="1" alpha="0.74" /></rect> - <rect state="125"><color red="1" green="1" blue="1" alpha="0.75" /></rect> - <rect state="126"><color red="1" green="1" blue="1" alpha="0.76" /></rect> - <rect state="127"><color red="1" green="1" blue="1" alpha="0.77" /></rect> - <rect state="128"><color red="1" green="1" blue="1" alpha="0.78" /></rect> - <rect state="129"><color red="1" green="1" blue="1" alpha="0.79" /></rect> - <rect state="130"><color red="1" green="1" blue="1" alpha="0.80" /></rect> - <rect state="131"><color red="1" green="1" blue="1" alpha="0.81" /></rect> - <rect state="132"><color red="1" green="1" blue="1" alpha="0.82" /></rect> - <rect state="133"><color red="1" green="1" blue="1" alpha="0.83" /></rect> - <rect state="134"><color red="1" green="1" blue="1" alpha="0.84" /></rect> - <rect state="135"><color red="1" green="1" blue="1" alpha="0.85" /></rect> - <rect state="136"><color red="1" green="1" blue="1" alpha="0.86" /></rect> - <rect state="137"><color red="1" green="1" blue="1" alpha="0.87" /></rect> - <rect state="138"><color red="1" green="1" blue="1" alpha="0.88" /></rect> - <rect state="139"><color red="1" green="1" blue="1" alpha="0.89" /></rect> - <rect state="140"><color red="1" green="1" blue="1" alpha="0.90" /></rect> - <rect state="141"><color red="1" green="1" blue="1" alpha="0.91" /></rect> - <rect state="142"><color red="1" green="1" blue="1" alpha="0.92" /></rect> - <rect state="143"><color red="1" green="1" blue="1" alpha="0.93" /></rect> - <rect state="144"><color red="1" green="1" blue="1" alpha="0.94" /></rect> - <rect state="145"><color red="1" green="1" blue="1" alpha="0.95" /></rect> - <rect state="146"><color red="1" green="1" blue="1" alpha="0.96" /></rect> - <rect state="147"><color red="1" green="1" blue="1" alpha="0.97" /></rect> - <rect state="148"><color red="1" green="1" blue="1" alpha="0.98" /></rect> - <rect state="149"><color red="1" green="1" blue="1" alpha="0.99" /></rect> - <rect state="150"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="151"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="152"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="153"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="154"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="155"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="156"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="157"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="158"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="159"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="160"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="161"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="162"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="163"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="164"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="165"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="166"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="167"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="168"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="169"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="170"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="171"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="172"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="173"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="174"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="175"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="176"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="177"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="178"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="179"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="180"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="181"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="182"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="183"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="184"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="185"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="186"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="187"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="188"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="189"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="190"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="191"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="192"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="193"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="194"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="195"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="196"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="197"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="198"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="199"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="200"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="201"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="202"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="203"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="204"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="205"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="206"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="207"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="208"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="209"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="210"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="211"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="212"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="213"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="214"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="215"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="216"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="217"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="218"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="219"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="220"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="221"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="222"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="223"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="224"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="225"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="226"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="227"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="228"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="229"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="230"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="231"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="232"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="233"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="234"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="235"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="236"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="237"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="238"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="239"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="240"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="241"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="242"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="243"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="244"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="245"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="246"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="247"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="248"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="249"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="250"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="251"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="252"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="253"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="254"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="255"><color red="1" green="1" blue="1" alpha="1" /></rect> - </element> - - <element name="left bottom lamp"> - <rect state="0"> - <color red="1.0" green="0.0" blue="0.0" alpha="0" /> - </rect> - <rect state="1"> - <color red="1.0" green="0.0" blue="0.0" /> - </rect> - </element> - - <element name="left bottom pad"> - <rect state="0"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="1"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="2"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="3"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="4"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="5"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="6"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="7"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="8"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="9"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="10"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="11"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="12"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="13"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="14"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="15"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="16"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="17"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="18"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="19"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="20"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="21"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="22"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="23"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="24"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="25"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="26"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="27"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="28"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="29"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="30"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="31"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="32"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="33"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="34"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="35"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="36"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="37"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="38"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="39"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="40"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="41"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="42"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="43"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="44"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="45"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="46"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="47"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="48"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="49"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="50"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="51"><color red="1" green="1" blue="1" alpha="0.01" /></rect> - <rect state="52"><color red="1" green="1" blue="1" alpha="0.02" /></rect> - <rect state="53"><color red="1" green="1" blue="1" alpha="0.03" /></rect> - <rect state="54"><color red="1" green="1" blue="1" alpha="0.04" /></rect> - <rect state="55"><color red="1" green="1" blue="1" alpha="0.05" /></rect> - <rect state="56"><color red="1" green="1" blue="1" alpha="0.06" /></rect> - <rect state="57"><color red="1" green="1" blue="1" alpha="0.07" /></rect> - <rect state="58"><color red="1" green="1" blue="1" alpha="0.08" /></rect> - <rect state="59"><color red="1" green="1" blue="1" alpha="0.09" /></rect> - <rect state="60"><color red="1" green="1" blue="1" alpha="0.10" /></rect> - <rect state="61"><color red="1" green="1" blue="1" alpha="0.11" /></rect> - <rect state="62"><color red="1" green="1" blue="1" alpha="0.12" /></rect> - <rect state="63"><color red="1" green="1" blue="1" alpha="0.13" /></rect> - <rect state="64"><color red="1" green="1" blue="1" alpha="0.14" /></rect> - <rect state="65"><color red="1" green="1" blue="1" alpha="0.15" /></rect> - <rect state="66"><color red="1" green="1" blue="1" alpha="0.16" /></rect> - <rect state="67"><color red="1" green="1" blue="1" alpha="0.17" /></rect> - <rect state="68"><color red="1" green="1" blue="1" alpha="0.18" /></rect> - <rect state="69"><color red="1" green="1" blue="1" alpha="0.19" /></rect> - <rect state="70"><color red="1" green="1" blue="1" alpha="0.20" /></rect> - <rect state="71"><color red="1" green="1" blue="1" alpha="0.21" /></rect> - <rect state="72"><color red="1" green="1" blue="1" alpha="0.22" /></rect> - <rect state="73"><color red="1" green="1" blue="1" alpha="0.23" /></rect> - <rect state="74"><color red="1" green="1" blue="1" alpha="0.24" /></rect> - <rect state="75"><color red="1" green="1" blue="1" alpha="0.25" /></rect> - <rect state="76"><color red="1" green="1" blue="1" alpha="0.26" /></rect> - <rect state="77"><color red="1" green="1" blue="1" alpha="0.27" /></rect> - <rect state="78"><color red="1" green="1" blue="1" alpha="0.28" /></rect> - <rect state="79"><color red="1" green="1" blue="1" alpha="0.29" /></rect> - <rect state="80"><color red="1" green="1" blue="1" alpha="0.30" /></rect> - <rect state="81"><color red="1" green="1" blue="1" alpha="0.31" /></rect> - <rect state="82"><color red="1" green="1" blue="1" alpha="0.32" /></rect> - <rect state="83"><color red="1" green="1" blue="1" alpha="0.33" /></rect> - <rect state="84"><color red="1" green="1" blue="1" alpha="0.34" /></rect> - <rect state="85"><color red="1" green="1" blue="1" alpha="0.35" /></rect> - <rect state="86"><color red="1" green="1" blue="1" alpha="0.36" /></rect> - <rect state="87"><color red="1" green="1" blue="1" alpha="0.37" /></rect> - <rect state="88"><color red="1" green="1" blue="1" alpha="0.38" /></rect> - <rect state="89"><color red="1" green="1" blue="1" alpha="0.39" /></rect> - <rect state="90"><color red="1" green="1" blue="1" alpha="0.40" /></rect> - <rect state="91"><color red="1" green="1" blue="1" alpha="0.41" /></rect> - <rect state="92"><color red="1" green="1" blue="1" alpha="0.42" /></rect> - <rect state="93"><color red="1" green="1" blue="1" alpha="0.43" /></rect> - <rect state="94"><color red="1" green="1" blue="1" alpha="0.44" /></rect> - <rect state="95"><color red="1" green="1" blue="1" alpha="0.45" /></rect> - <rect state="96"><color red="1" green="1" blue="1" alpha="0.46" /></rect> - <rect state="97"><color red="1" green="1" blue="1" alpha="0.47" /></rect> - <rect state="98"><color red="1" green="1" blue="1" alpha="0.48" /></rect> - <rect state="99"><color red="1" green="1" blue="1" alpha="0.49" /></rect> - <rect state="100"><color red="1" green="1" blue="1" alpha="0.50" /></rect> - <rect state="101"><color red="1" green="1" blue="1" alpha="0.51" /></rect> - <rect state="102"><color red="1" green="1" blue="1" alpha="0.52" /></rect> - <rect state="103"><color red="1" green="1" blue="1" alpha="0.53" /></rect> - <rect state="104"><color red="1" green="1" blue="1" alpha="0.54" /></rect> - <rect state="105"><color red="1" green="1" blue="1" alpha="0.55" /></rect> - <rect state="106"><color red="1" green="1" blue="1" alpha="0.56" /></rect> - <rect state="107"><color red="1" green="1" blue="1" alpha="0.57" /></rect> - <rect state="108"><color red="1" green="1" blue="1" alpha="0.58" /></rect> - <rect state="109"><color red="1" green="1" blue="1" alpha="0.59" /></rect> - <rect state="110"><color red="1" green="1" blue="1" alpha="0.60" /></rect> - <rect state="111"><color red="1" green="1" blue="1" alpha="0.61" /></rect> - <rect state="112"><color red="1" green="1" blue="1" alpha="0.62" /></rect> - <rect state="113"><color red="1" green="1" blue="1" alpha="0.63" /></rect> - <rect state="114"><color red="1" green="1" blue="1" alpha="0.64" /></rect> - <rect state="115"><color red="1" green="1" blue="1" alpha="0.65" /></rect> - <rect state="116"><color red="1" green="1" blue="1" alpha="0.66" /></rect> - <rect state="117"><color red="1" green="1" blue="1" alpha="0.67" /></rect> - <rect state="118"><color red="1" green="1" blue="1" alpha="0.68" /></rect> - <rect state="119"><color red="1" green="1" blue="1" alpha="0.69" /></rect> - <rect state="120"><color red="1" green="1" blue="1" alpha="0.70" /></rect> - <rect state="121"><color red="1" green="1" blue="1" alpha="0.71" /></rect> - <rect state="122"><color red="1" green="1" blue="1" alpha="0.72" /></rect> - <rect state="123"><color red="1" green="1" blue="1" alpha="0.73" /></rect> - <rect state="124"><color red="1" green="1" blue="1" alpha="0.74" /></rect> - <rect state="125"><color red="1" green="1" blue="1" alpha="0.75" /></rect> - <rect state="126"><color red="1" green="1" blue="1" alpha="0.76" /></rect> - <rect state="127"><color red="1" green="1" blue="1" alpha="0.77" /></rect> - <rect state="128"><color red="1" green="1" blue="1" alpha="0.78" /></rect> - <rect state="129"><color red="1" green="1" blue="1" alpha="0.79" /></rect> - <rect state="130"><color red="1" green="1" blue="1" alpha="0.80" /></rect> - <rect state="131"><color red="1" green="1" blue="1" alpha="0.81" /></rect> - <rect state="132"><color red="1" green="1" blue="1" alpha="0.82" /></rect> - <rect state="133"><color red="1" green="1" blue="1" alpha="0.83" /></rect> - <rect state="134"><color red="1" green="1" blue="1" alpha="0.84" /></rect> - <rect state="135"><color red="1" green="1" blue="1" alpha="0.85" /></rect> - <rect state="136"><color red="1" green="1" blue="1" alpha="0.86" /></rect> - <rect state="137"><color red="1" green="1" blue="1" alpha="0.87" /></rect> - <rect state="138"><color red="1" green="1" blue="1" alpha="0.88" /></rect> - <rect state="139"><color red="1" green="1" blue="1" alpha="0.89" /></rect> - <rect state="140"><color red="1" green="1" blue="1" alpha="0.90" /></rect> - <rect state="141"><color red="1" green="1" blue="1" alpha="0.91" /></rect> - <rect state="142"><color red="1" green="1" blue="1" alpha="0.92" /></rect> - <rect state="143"><color red="1" green="1" blue="1" alpha="0.93" /></rect> - <rect state="144"><color red="1" green="1" blue="1" alpha="0.94" /></rect> - <rect state="145"><color red="1" green="1" blue="1" alpha="0.95" /></rect> - <rect state="146"><color red="1" green="1" blue="1" alpha="0.96" /></rect> - <rect state="147"><color red="1" green="1" blue="1" alpha="0.97" /></rect> - <rect state="148"><color red="1" green="1" blue="1" alpha="0.98" /></rect> - <rect state="149"><color red="1" green="1" blue="1" alpha="0.99" /></rect> - <rect state="150"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="151"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="152"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="153"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="154"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="155"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="156"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="157"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="158"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="159"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="160"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="161"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="162"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="163"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="164"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="165"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="166"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="167"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="168"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="169"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="170"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="171"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="172"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="173"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="174"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="175"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="176"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="177"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="178"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="179"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="180"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="181"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="182"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="183"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="184"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="185"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="186"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="187"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="188"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="189"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="190"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="191"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="192"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="193"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="194"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="195"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="196"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="197"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="198"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="199"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="200"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="201"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="202"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="203"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="204"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="205"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="206"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="207"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="208"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="209"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="210"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="211"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="212"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="213"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="214"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="215"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="216"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="217"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="218"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="219"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="220"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="221"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="222"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="223"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="224"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="225"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="226"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="227"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="228"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="229"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="230"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="231"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="232"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="233"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="234"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="235"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="236"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="237"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="238"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="239"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="240"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="241"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="242"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="243"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="244"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="245"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="246"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="247"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="248"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="249"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="250"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="251"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="252"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="253"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="254"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="255"><color red="1" green="1" blue="1" alpha="1" /></rect> - </element> - - <element name="right top lamp"> - <rect state="0"> - <color red="1.0" green="0.0" blue="0.0" alpha="0" /> - </rect> - <rect state="1"> - <color red="1.0" green="0.0" blue="0.0" /> - </rect> - </element> - - <element name="right top pad"> - <rect state="0"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="1"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="2"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="3"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="4"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="5"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="6"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="7"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="8"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="9"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="10"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="11"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="12"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="13"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="14"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="15"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="16"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="17"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="18"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="19"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="20"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="21"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="22"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="23"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="24"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="25"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="26"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="27"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="28"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="29"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="30"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="31"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="32"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="33"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="34"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="35"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="36"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="37"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="38"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="39"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="40"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="41"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="42"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="43"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="44"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="45"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="46"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="47"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="48"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="49"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="50"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="51"><color red="1" green="1" blue="1" alpha="0.01" /></rect> - <rect state="52"><color red="1" green="1" blue="1" alpha="0.02" /></rect> - <rect state="53"><color red="1" green="1" blue="1" alpha="0.03" /></rect> - <rect state="54"><color red="1" green="1" blue="1" alpha="0.04" /></rect> - <rect state="55"><color red="1" green="1" blue="1" alpha="0.05" /></rect> - <rect state="56"><color red="1" green="1" blue="1" alpha="0.06" /></rect> - <rect state="57"><color red="1" green="1" blue="1" alpha="0.07" /></rect> - <rect state="58"><color red="1" green="1" blue="1" alpha="0.08" /></rect> - <rect state="59"><color red="1" green="1" blue="1" alpha="0.09" /></rect> - <rect state="60"><color red="1" green="1" blue="1" alpha="0.10" /></rect> - <rect state="61"><color red="1" green="1" blue="1" alpha="0.11" /></rect> - <rect state="62"><color red="1" green="1" blue="1" alpha="0.12" /></rect> - <rect state="63"><color red="1" green="1" blue="1" alpha="0.13" /></rect> - <rect state="64"><color red="1" green="1" blue="1" alpha="0.14" /></rect> - <rect state="65"><color red="1" green="1" blue="1" alpha="0.15" /></rect> - <rect state="66"><color red="1" green="1" blue="1" alpha="0.16" /></rect> - <rect state="67"><color red="1" green="1" blue="1" alpha="0.17" /></rect> - <rect state="68"><color red="1" green="1" blue="1" alpha="0.18" /></rect> - <rect state="69"><color red="1" green="1" blue="1" alpha="0.19" /></rect> - <rect state="70"><color red="1" green="1" blue="1" alpha="0.20" /></rect> - <rect state="71"><color red="1" green="1" blue="1" alpha="0.21" /></rect> - <rect state="72"><color red="1" green="1" blue="1" alpha="0.22" /></rect> - <rect state="73"><color red="1" green="1" blue="1" alpha="0.23" /></rect> - <rect state="74"><color red="1" green="1" blue="1" alpha="0.24" /></rect> - <rect state="75"><color red="1" green="1" blue="1" alpha="0.25" /></rect> - <rect state="76"><color red="1" green="1" blue="1" alpha="0.26" /></rect> - <rect state="77"><color red="1" green="1" blue="1" alpha="0.27" /></rect> - <rect state="78"><color red="1" green="1" blue="1" alpha="0.28" /></rect> - <rect state="79"><color red="1" green="1" blue="1" alpha="0.29" /></rect> - <rect state="80"><color red="1" green="1" blue="1" alpha="0.30" /></rect> - <rect state="81"><color red="1" green="1" blue="1" alpha="0.31" /></rect> - <rect state="82"><color red="1" green="1" blue="1" alpha="0.32" /></rect> - <rect state="83"><color red="1" green="1" blue="1" alpha="0.33" /></rect> - <rect state="84"><color red="1" green="1" blue="1" alpha="0.34" /></rect> - <rect state="85"><color red="1" green="1" blue="1" alpha="0.35" /></rect> - <rect state="86"><color red="1" green="1" blue="1" alpha="0.36" /></rect> - <rect state="87"><color red="1" green="1" blue="1" alpha="0.37" /></rect> - <rect state="88"><color red="1" green="1" blue="1" alpha="0.38" /></rect> - <rect state="89"><color red="1" green="1" blue="1" alpha="0.39" /></rect> - <rect state="90"><color red="1" green="1" blue="1" alpha="0.40" /></rect> - <rect state="91"><color red="1" green="1" blue="1" alpha="0.41" /></rect> - <rect state="92"><color red="1" green="1" blue="1" alpha="0.42" /></rect> - <rect state="93"><color red="1" green="1" blue="1" alpha="0.43" /></rect> - <rect state="94"><color red="1" green="1" blue="1" alpha="0.44" /></rect> - <rect state="95"><color red="1" green="1" blue="1" alpha="0.45" /></rect> - <rect state="96"><color red="1" green="1" blue="1" alpha="0.46" /></rect> - <rect state="97"><color red="1" green="1" blue="1" alpha="0.47" /></rect> - <rect state="98"><color red="1" green="1" blue="1" alpha="0.48" /></rect> - <rect state="99"><color red="1" green="1" blue="1" alpha="0.49" /></rect> - <rect state="100"><color red="1" green="1" blue="1" alpha="0.50" /></rect> - <rect state="101"><color red="1" green="1" blue="1" alpha="0.51" /></rect> - <rect state="102"><color red="1" green="1" blue="1" alpha="0.52" /></rect> - <rect state="103"><color red="1" green="1" blue="1" alpha="0.53" /></rect> - <rect state="104"><color red="1" green="1" blue="1" alpha="0.54" /></rect> - <rect state="105"><color red="1" green="1" blue="1" alpha="0.55" /></rect> - <rect state="106"><color red="1" green="1" blue="1" alpha="0.56" /></rect> - <rect state="107"><color red="1" green="1" blue="1" alpha="0.57" /></rect> - <rect state="108"><color red="1" green="1" blue="1" alpha="0.58" /></rect> - <rect state="109"><color red="1" green="1" blue="1" alpha="0.59" /></rect> - <rect state="110"><color red="1" green="1" blue="1" alpha="0.60" /></rect> - <rect state="111"><color red="1" green="1" blue="1" alpha="0.61" /></rect> - <rect state="112"><color red="1" green="1" blue="1" alpha="0.62" /></rect> - <rect state="113"><color red="1" green="1" blue="1" alpha="0.63" /></rect> - <rect state="114"><color red="1" green="1" blue="1" alpha="0.64" /></rect> - <rect state="115"><color red="1" green="1" blue="1" alpha="0.65" /></rect> - <rect state="116"><color red="1" green="1" blue="1" alpha="0.66" /></rect> - <rect state="117"><color red="1" green="1" blue="1" alpha="0.67" /></rect> - <rect state="118"><color red="1" green="1" blue="1" alpha="0.68" /></rect> - <rect state="119"><color red="1" green="1" blue="1" alpha="0.69" /></rect> - <rect state="120"><color red="1" green="1" blue="1" alpha="0.70" /></rect> - <rect state="121"><color red="1" green="1" blue="1" alpha="0.71" /></rect> - <rect state="122"><color red="1" green="1" blue="1" alpha="0.72" /></rect> - <rect state="123"><color red="1" green="1" blue="1" alpha="0.73" /></rect> - <rect state="124"><color red="1" green="1" blue="1" alpha="0.74" /></rect> - <rect state="125"><color red="1" green="1" blue="1" alpha="0.75" /></rect> - <rect state="126"><color red="1" green="1" blue="1" alpha="0.76" /></rect> - <rect state="127"><color red="1" green="1" blue="1" alpha="0.77" /></rect> - <rect state="128"><color red="1" green="1" blue="1" alpha="0.78" /></rect> - <rect state="129"><color red="1" green="1" blue="1" alpha="0.79" /></rect> - <rect state="130"><color red="1" green="1" blue="1" alpha="0.80" /></rect> - <rect state="131"><color red="1" green="1" blue="1" alpha="0.81" /></rect> - <rect state="132"><color red="1" green="1" blue="1" alpha="0.82" /></rect> - <rect state="133"><color red="1" green="1" blue="1" alpha="0.83" /></rect> - <rect state="134"><color red="1" green="1" blue="1" alpha="0.84" /></rect> - <rect state="135"><color red="1" green="1" blue="1" alpha="0.85" /></rect> - <rect state="136"><color red="1" green="1" blue="1" alpha="0.86" /></rect> - <rect state="137"><color red="1" green="1" blue="1" alpha="0.87" /></rect> - <rect state="138"><color red="1" green="1" blue="1" alpha="0.88" /></rect> - <rect state="139"><color red="1" green="1" blue="1" alpha="0.89" /></rect> - <rect state="140"><color red="1" green="1" blue="1" alpha="0.90" /></rect> - <rect state="141"><color red="1" green="1" blue="1" alpha="0.91" /></rect> - <rect state="142"><color red="1" green="1" blue="1" alpha="0.92" /></rect> - <rect state="143"><color red="1" green="1" blue="1" alpha="0.93" /></rect> - <rect state="144"><color red="1" green="1" blue="1" alpha="0.94" /></rect> - <rect state="145"><color red="1" green="1" blue="1" alpha="0.95" /></rect> - <rect state="146"><color red="1" green="1" blue="1" alpha="0.96" /></rect> - <rect state="147"><color red="1" green="1" blue="1" alpha="0.97" /></rect> - <rect state="148"><color red="1" green="1" blue="1" alpha="0.98" /></rect> - <rect state="149"><color red="1" green="1" blue="1" alpha="0.99" /></rect> - <rect state="150"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="151"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="152"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="153"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="154"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="155"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="156"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="157"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="158"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="159"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="160"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="161"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="162"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="163"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="164"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="165"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="166"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="167"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="168"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="169"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="170"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="171"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="172"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="173"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="174"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="175"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="176"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="177"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="178"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="179"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="180"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="181"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="182"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="183"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="184"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="185"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="186"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="187"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="188"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="189"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="190"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="191"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="192"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="193"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="194"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="195"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="196"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="197"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="198"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="199"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="200"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="201"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="202"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="203"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="204"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="205"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="206"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="207"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="208"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="209"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="210"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="211"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="212"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="213"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="214"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="215"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="216"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="217"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="218"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="219"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="220"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="221"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="222"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="223"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="224"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="225"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="226"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="227"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="228"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="229"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="230"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="231"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="232"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="233"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="234"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="235"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="236"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="237"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="238"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="239"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="240"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="241"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="242"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="243"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="244"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="245"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="246"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="247"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="248"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="249"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="250"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="251"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="252"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="253"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="254"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="255"><color red="1" green="1" blue="1" alpha="1" /></rect> - </element> - - <element name="right middle lamp"> - <rect state="0"> - <color red="1.0" green="0.0" blue="0.0" alpha="0" /> - </rect> - <rect state="1"> - <color red="1.0" green="0.0" blue="0.0" /> - </rect> - </element> - - <element name="right middle pad"> - <rect state="0"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="1"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="2"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="3"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="4"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="5"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="6"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="7"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="8"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="9"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="10"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="11"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="12"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="13"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="14"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="15"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="16"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="17"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="18"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="19"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="20"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="21"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="22"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="23"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="24"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="25"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="26"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="27"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="28"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="29"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="30"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="31"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="32"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="33"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="34"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="35"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="36"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="37"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="38"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="39"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="40"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="41"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="42"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="43"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="44"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="45"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="46"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="47"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="48"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="49"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="50"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="51"><color red="1" green="1" blue="1" alpha="0.01" /></rect> - <rect state="52"><color red="1" green="1" blue="1" alpha="0.02" /></rect> - <rect state="53"><color red="1" green="1" blue="1" alpha="0.03" /></rect> - <rect state="54"><color red="1" green="1" blue="1" alpha="0.04" /></rect> - <rect state="55"><color red="1" green="1" blue="1" alpha="0.05" /></rect> - <rect state="56"><color red="1" green="1" blue="1" alpha="0.06" /></rect> - <rect state="57"><color red="1" green="1" blue="1" alpha="0.07" /></rect> - <rect state="58"><color red="1" green="1" blue="1" alpha="0.08" /></rect> - <rect state="59"><color red="1" green="1" blue="1" alpha="0.09" /></rect> - <rect state="60"><color red="1" green="1" blue="1" alpha="0.10" /></rect> - <rect state="61"><color red="1" green="1" blue="1" alpha="0.11" /></rect> - <rect state="62"><color red="1" green="1" blue="1" alpha="0.12" /></rect> - <rect state="63"><color red="1" green="1" blue="1" alpha="0.13" /></rect> - <rect state="64"><color red="1" green="1" blue="1" alpha="0.14" /></rect> - <rect state="65"><color red="1" green="1" blue="1" alpha="0.15" /></rect> - <rect state="66"><color red="1" green="1" blue="1" alpha="0.16" /></rect> - <rect state="67"><color red="1" green="1" blue="1" alpha="0.17" /></rect> - <rect state="68"><color red="1" green="1" blue="1" alpha="0.18" /></rect> - <rect state="69"><color red="1" green="1" blue="1" alpha="0.19" /></rect> - <rect state="70"><color red="1" green="1" blue="1" alpha="0.20" /></rect> - <rect state="71"><color red="1" green="1" blue="1" alpha="0.21" /></rect> - <rect state="72"><color red="1" green="1" blue="1" alpha="0.22" /></rect> - <rect state="73"><color red="1" green="1" blue="1" alpha="0.23" /></rect> - <rect state="74"><color red="1" green="1" blue="1" alpha="0.24" /></rect> - <rect state="75"><color red="1" green="1" blue="1" alpha="0.25" /></rect> - <rect state="76"><color red="1" green="1" blue="1" alpha="0.26" /></rect> - <rect state="77"><color red="1" green="1" blue="1" alpha="0.27" /></rect> - <rect state="78"><color red="1" green="1" blue="1" alpha="0.28" /></rect> - <rect state="79"><color red="1" green="1" blue="1" alpha="0.29" /></rect> - <rect state="80"><color red="1" green="1" blue="1" alpha="0.30" /></rect> - <rect state="81"><color red="1" green="1" blue="1" alpha="0.31" /></rect> - <rect state="82"><color red="1" green="1" blue="1" alpha="0.32" /></rect> - <rect state="83"><color red="1" green="1" blue="1" alpha="0.33" /></rect> - <rect state="84"><color red="1" green="1" blue="1" alpha="0.34" /></rect> - <rect state="85"><color red="1" green="1" blue="1" alpha="0.35" /></rect> - <rect state="86"><color red="1" green="1" blue="1" alpha="0.36" /></rect> - <rect state="87"><color red="1" green="1" blue="1" alpha="0.37" /></rect> - <rect state="88"><color red="1" green="1" blue="1" alpha="0.38" /></rect> - <rect state="89"><color red="1" green="1" blue="1" alpha="0.39" /></rect> - <rect state="90"><color red="1" green="1" blue="1" alpha="0.40" /></rect> - <rect state="91"><color red="1" green="1" blue="1" alpha="0.41" /></rect> - <rect state="92"><color red="1" green="1" blue="1" alpha="0.42" /></rect> - <rect state="93"><color red="1" green="1" blue="1" alpha="0.43" /></rect> - <rect state="94"><color red="1" green="1" blue="1" alpha="0.44" /></rect> - <rect state="95"><color red="1" green="1" blue="1" alpha="0.45" /></rect> - <rect state="96"><color red="1" green="1" blue="1" alpha="0.46" /></rect> - <rect state="97"><color red="1" green="1" blue="1" alpha="0.47" /></rect> - <rect state="98"><color red="1" green="1" blue="1" alpha="0.48" /></rect> - <rect state="99"><color red="1" green="1" blue="1" alpha="0.49" /></rect> - <rect state="100"><color red="1" green="1" blue="1" alpha="0.50" /></rect> - <rect state="101"><color red="1" green="1" blue="1" alpha="0.51" /></rect> - <rect state="102"><color red="1" green="1" blue="1" alpha="0.52" /></rect> - <rect state="103"><color red="1" green="1" blue="1" alpha="0.53" /></rect> - <rect state="104"><color red="1" green="1" blue="1" alpha="0.54" /></rect> - <rect state="105"><color red="1" green="1" blue="1" alpha="0.55" /></rect> - <rect state="106"><color red="1" green="1" blue="1" alpha="0.56" /></rect> - <rect state="107"><color red="1" green="1" blue="1" alpha="0.57" /></rect> - <rect state="108"><color red="1" green="1" blue="1" alpha="0.58" /></rect> - <rect state="109"><color red="1" green="1" blue="1" alpha="0.59" /></rect> - <rect state="110"><color red="1" green="1" blue="1" alpha="0.60" /></rect> - <rect state="111"><color red="1" green="1" blue="1" alpha="0.61" /></rect> - <rect state="112"><color red="1" green="1" blue="1" alpha="0.62" /></rect> - <rect state="113"><color red="1" green="1" blue="1" alpha="0.63" /></rect> - <rect state="114"><color red="1" green="1" blue="1" alpha="0.64" /></rect> - <rect state="115"><color red="1" green="1" blue="1" alpha="0.65" /></rect> - <rect state="116"><color red="1" green="1" blue="1" alpha="0.66" /></rect> - <rect state="117"><color red="1" green="1" blue="1" alpha="0.67" /></rect> - <rect state="118"><color red="1" green="1" blue="1" alpha="0.68" /></rect> - <rect state="119"><color red="1" green="1" blue="1" alpha="0.69" /></rect> - <rect state="120"><color red="1" green="1" blue="1" alpha="0.70" /></rect> - <rect state="121"><color red="1" green="1" blue="1" alpha="0.71" /></rect> - <rect state="122"><color red="1" green="1" blue="1" alpha="0.72" /></rect> - <rect state="123"><color red="1" green="1" blue="1" alpha="0.73" /></rect> - <rect state="124"><color red="1" green="1" blue="1" alpha="0.74" /></rect> - <rect state="125"><color red="1" green="1" blue="1" alpha="0.75" /></rect> - <rect state="126"><color red="1" green="1" blue="1" alpha="0.76" /></rect> - <rect state="127"><color red="1" green="1" blue="1" alpha="0.77" /></rect> - <rect state="128"><color red="1" green="1" blue="1" alpha="0.78" /></rect> - <rect state="129"><color red="1" green="1" blue="1" alpha="0.79" /></rect> - <rect state="130"><color red="1" green="1" blue="1" alpha="0.80" /></rect> - <rect state="131"><color red="1" green="1" blue="1" alpha="0.81" /></rect> - <rect state="132"><color red="1" green="1" blue="1" alpha="0.82" /></rect> - <rect state="133"><color red="1" green="1" blue="1" alpha="0.83" /></rect> - <rect state="134"><color red="1" green="1" blue="1" alpha="0.84" /></rect> - <rect state="135"><color red="1" green="1" blue="1" alpha="0.85" /></rect> - <rect state="136"><color red="1" green="1" blue="1" alpha="0.86" /></rect> - <rect state="137"><color red="1" green="1" blue="1" alpha="0.87" /></rect> - <rect state="138"><color red="1" green="1" blue="1" alpha="0.88" /></rect> - <rect state="139"><color red="1" green="1" blue="1" alpha="0.89" /></rect> - <rect state="140"><color red="1" green="1" blue="1" alpha="0.90" /></rect> - <rect state="141"><color red="1" green="1" blue="1" alpha="0.91" /></rect> - <rect state="142"><color red="1" green="1" blue="1" alpha="0.92" /></rect> - <rect state="143"><color red="1" green="1" blue="1" alpha="0.93" /></rect> - <rect state="144"><color red="1" green="1" blue="1" alpha="0.94" /></rect> - <rect state="145"><color red="1" green="1" blue="1" alpha="0.95" /></rect> - <rect state="146"><color red="1" green="1" blue="1" alpha="0.96" /></rect> - <rect state="147"><color red="1" green="1" blue="1" alpha="0.97" /></rect> - <rect state="148"><color red="1" green="1" blue="1" alpha="0.98" /></rect> - <rect state="149"><color red="1" green="1" blue="1" alpha="0.99" /></rect> - <rect state="150"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="151"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="152"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="153"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="154"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="155"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="156"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="157"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="158"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="159"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="160"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="161"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="162"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="163"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="164"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="165"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="166"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="167"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="168"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="169"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="170"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="171"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="172"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="173"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="174"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="175"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="176"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="177"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="178"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="179"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="180"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="181"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="182"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="183"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="184"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="185"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="186"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="187"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="188"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="189"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="190"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="191"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="192"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="193"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="194"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="195"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="196"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="197"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="198"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="199"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="200"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="201"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="202"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="203"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="204"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="205"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="206"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="207"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="208"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="209"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="210"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="211"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="212"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="213"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="214"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="215"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="216"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="217"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="218"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="219"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="220"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="221"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="222"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="223"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="224"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="225"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="226"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="227"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="228"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="229"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="230"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="231"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="232"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="233"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="234"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="235"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="236"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="237"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="238"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="239"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="240"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="241"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="242"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="243"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="244"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="245"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="246"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="247"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="248"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="249"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="250"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="251"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="252"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="253"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="254"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="255"><color red="1" green="1" blue="1" alpha="1" /></rect> - </element> - - <element name="right bottom lamp"> - <rect state="0"> - <color red="1.0" green="0.0" blue="0.0" alpha="0" /> - </rect> - <rect state="1"> - <color red="1.0" green="0.0" blue="0.0" /> - </rect> - </element> - - <element name="right bottom pad"> - <rect state="0"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="1"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="2"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="3"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="4"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="5"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="6"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="7"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="8"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="9"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="10"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="11"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="12"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="13"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="14"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="15"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="16"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="17"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="18"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="19"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="20"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="21"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="22"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="23"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="24"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="25"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="26"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="27"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="28"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="29"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="30"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="31"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="32"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="33"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="34"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="35"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="36"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="37"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="38"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="39"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="40"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="41"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="42"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="43"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="44"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="45"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="46"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="47"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="48"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="49"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="50"><color red="1" green="1" blue="1" alpha="0" /></rect> - <rect state="51"><color red="1" green="1" blue="1" alpha="0.01" /></rect> - <rect state="52"><color red="1" green="1" blue="1" alpha="0.02" /></rect> - <rect state="53"><color red="1" green="1" blue="1" alpha="0.03" /></rect> - <rect state="54"><color red="1" green="1" blue="1" alpha="0.04" /></rect> - <rect state="55"><color red="1" green="1" blue="1" alpha="0.05" /></rect> - <rect state="56"><color red="1" green="1" blue="1" alpha="0.06" /></rect> - <rect state="57"><color red="1" green="1" blue="1" alpha="0.07" /></rect> - <rect state="58"><color red="1" green="1" blue="1" alpha="0.08" /></rect> - <rect state="59"><color red="1" green="1" blue="1" alpha="0.09" /></rect> - <rect state="60"><color red="1" green="1" blue="1" alpha="0.10" /></rect> - <rect state="61"><color red="1" green="1" blue="1" alpha="0.11" /></rect> - <rect state="62"><color red="1" green="1" blue="1" alpha="0.12" /></rect> - <rect state="63"><color red="1" green="1" blue="1" alpha="0.13" /></rect> - <rect state="64"><color red="1" green="1" blue="1" alpha="0.14" /></rect> - <rect state="65"><color red="1" green="1" blue="1" alpha="0.15" /></rect> - <rect state="66"><color red="1" green="1" blue="1" alpha="0.16" /></rect> - <rect state="67"><color red="1" green="1" blue="1" alpha="0.17" /></rect> - <rect state="68"><color red="1" green="1" blue="1" alpha="0.18" /></rect> - <rect state="69"><color red="1" green="1" blue="1" alpha="0.19" /></rect> - <rect state="70"><color red="1" green="1" blue="1" alpha="0.20" /></rect> - <rect state="71"><color red="1" green="1" blue="1" alpha="0.21" /></rect> - <rect state="72"><color red="1" green="1" blue="1" alpha="0.22" /></rect> - <rect state="73"><color red="1" green="1" blue="1" alpha="0.23" /></rect> - <rect state="74"><color red="1" green="1" blue="1" alpha="0.24" /></rect> - <rect state="75"><color red="1" green="1" blue="1" alpha="0.25" /></rect> - <rect state="76"><color red="1" green="1" blue="1" alpha="0.26" /></rect> - <rect state="77"><color red="1" green="1" blue="1" alpha="0.27" /></rect> - <rect state="78"><color red="1" green="1" blue="1" alpha="0.28" /></rect> - <rect state="79"><color red="1" green="1" blue="1" alpha="0.29" /></rect> - <rect state="80"><color red="1" green="1" blue="1" alpha="0.30" /></rect> - <rect state="81"><color red="1" green="1" blue="1" alpha="0.31" /></rect> - <rect state="82"><color red="1" green="1" blue="1" alpha="0.32" /></rect> - <rect state="83"><color red="1" green="1" blue="1" alpha="0.33" /></rect> - <rect state="84"><color red="1" green="1" blue="1" alpha="0.34" /></rect> - <rect state="85"><color red="1" green="1" blue="1" alpha="0.35" /></rect> - <rect state="86"><color red="1" green="1" blue="1" alpha="0.36" /></rect> - <rect state="87"><color red="1" green="1" blue="1" alpha="0.37" /></rect> - <rect state="88"><color red="1" green="1" blue="1" alpha="0.38" /></rect> - <rect state="89"><color red="1" green="1" blue="1" alpha="0.39" /></rect> - <rect state="90"><color red="1" green="1" blue="1" alpha="0.40" /></rect> - <rect state="91"><color red="1" green="1" blue="1" alpha="0.41" /></rect> - <rect state="92"><color red="1" green="1" blue="1" alpha="0.42" /></rect> - <rect state="93"><color red="1" green="1" blue="1" alpha="0.43" /></rect> - <rect state="94"><color red="1" green="1" blue="1" alpha="0.44" /></rect> - <rect state="95"><color red="1" green="1" blue="1" alpha="0.45" /></rect> - <rect state="96"><color red="1" green="1" blue="1" alpha="0.46" /></rect> - <rect state="97"><color red="1" green="1" blue="1" alpha="0.47" /></rect> - <rect state="98"><color red="1" green="1" blue="1" alpha="0.48" /></rect> - <rect state="99"><color red="1" green="1" blue="1" alpha="0.49" /></rect> - <rect state="100"><color red="1" green="1" blue="1" alpha="0.50" /></rect> - <rect state="101"><color red="1" green="1" blue="1" alpha="0.51" /></rect> - <rect state="102"><color red="1" green="1" blue="1" alpha="0.52" /></rect> - <rect state="103"><color red="1" green="1" blue="1" alpha="0.53" /></rect> - <rect state="104"><color red="1" green="1" blue="1" alpha="0.54" /></rect> - <rect state="105"><color red="1" green="1" blue="1" alpha="0.55" /></rect> - <rect state="106"><color red="1" green="1" blue="1" alpha="0.56" /></rect> - <rect state="107"><color red="1" green="1" blue="1" alpha="0.57" /></rect> - <rect state="108"><color red="1" green="1" blue="1" alpha="0.58" /></rect> - <rect state="109"><color red="1" green="1" blue="1" alpha="0.59" /></rect> - <rect state="110"><color red="1" green="1" blue="1" alpha="0.60" /></rect> - <rect state="111"><color red="1" green="1" blue="1" alpha="0.61" /></rect> - <rect state="112"><color red="1" green="1" blue="1" alpha="0.62" /></rect> - <rect state="113"><color red="1" green="1" blue="1" alpha="0.63" /></rect> - <rect state="114"><color red="1" green="1" blue="1" alpha="0.64" /></rect> - <rect state="115"><color red="1" green="1" blue="1" alpha="0.65" /></rect> - <rect state="116"><color red="1" green="1" blue="1" alpha="0.66" /></rect> - <rect state="117"><color red="1" green="1" blue="1" alpha="0.67" /></rect> - <rect state="118"><color red="1" green="1" blue="1" alpha="0.68" /></rect> - <rect state="119"><color red="1" green="1" blue="1" alpha="0.69" /></rect> - <rect state="120"><color red="1" green="1" blue="1" alpha="0.70" /></rect> - <rect state="121"><color red="1" green="1" blue="1" alpha="0.71" /></rect> - <rect state="122"><color red="1" green="1" blue="1" alpha="0.72" /></rect> - <rect state="123"><color red="1" green="1" blue="1" alpha="0.73" /></rect> - <rect state="124"><color red="1" green="1" blue="1" alpha="0.74" /></rect> - <rect state="125"><color red="1" green="1" blue="1" alpha="0.75" /></rect> - <rect state="126"><color red="1" green="1" blue="1" alpha="0.76" /></rect> - <rect state="127"><color red="1" green="1" blue="1" alpha="0.77" /></rect> - <rect state="128"><color red="1" green="1" blue="1" alpha="0.78" /></rect> - <rect state="129"><color red="1" green="1" blue="1" alpha="0.79" /></rect> - <rect state="130"><color red="1" green="1" blue="1" alpha="0.80" /></rect> - <rect state="131"><color red="1" green="1" blue="1" alpha="0.81" /></rect> - <rect state="132"><color red="1" green="1" blue="1" alpha="0.82" /></rect> - <rect state="133"><color red="1" green="1" blue="1" alpha="0.83" /></rect> - <rect state="134"><color red="1" green="1" blue="1" alpha="0.84" /></rect> - <rect state="135"><color red="1" green="1" blue="1" alpha="0.85" /></rect> - <rect state="136"><color red="1" green="1" blue="1" alpha="0.86" /></rect> - <rect state="137"><color red="1" green="1" blue="1" alpha="0.87" /></rect> - <rect state="138"><color red="1" green="1" blue="1" alpha="0.88" /></rect> - <rect state="139"><color red="1" green="1" blue="1" alpha="0.89" /></rect> - <rect state="140"><color red="1" green="1" blue="1" alpha="0.90" /></rect> - <rect state="141"><color red="1" green="1" blue="1" alpha="0.91" /></rect> - <rect state="142"><color red="1" green="1" blue="1" alpha="0.92" /></rect> - <rect state="143"><color red="1" green="1" blue="1" alpha="0.93" /></rect> - <rect state="144"><color red="1" green="1" blue="1" alpha="0.94" /></rect> - <rect state="145"><color red="1" green="1" blue="1" alpha="0.95" /></rect> - <rect state="146"><color red="1" green="1" blue="1" alpha="0.96" /></rect> - <rect state="147"><color red="1" green="1" blue="1" alpha="0.97" /></rect> - <rect state="148"><color red="1" green="1" blue="1" alpha="0.98" /></rect> - <rect state="149"><color red="1" green="1" blue="1" alpha="0.99" /></rect> - <rect state="150"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="151"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="152"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="153"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="154"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="155"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="156"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="157"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="158"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="159"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="160"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="161"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="162"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="163"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="164"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="165"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="166"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="167"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="168"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="169"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="170"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="171"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="172"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="173"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="174"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="175"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="176"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="177"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="178"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="179"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="180"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="181"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="182"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="183"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="184"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="185"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="186"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="187"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="188"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="189"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="190"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="191"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="192"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="193"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="194"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="195"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="196"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="197"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="198"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="199"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="200"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="201"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="202"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="203"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="204"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="205"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="206"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="207"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="208"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="209"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="210"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="211"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="212"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="213"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="214"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="215"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="216"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="217"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="218"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="219"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="220"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="221"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="222"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="223"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="224"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="225"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="226"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="227"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="228"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="229"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="230"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="231"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="232"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="233"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="234"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="235"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="236"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="237"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="238"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="239"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="240"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="241"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="242"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="243"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="244"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="245"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="246"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="247"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="248"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="249"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="250"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="251"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="252"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="253"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="254"><color red="1" green="1" blue="1" alpha="1" /></rect> - <rect state="255"><color red="1" green="1" blue="1" alpha="1" /></rect> - </element> - - <element name="static_black"> - <rect> - <color red="0" green="0" blue="0" /> - </rect> + <element name="rect"> + <rect /> </element> <view name="Full"> - <element name="padding" ref="static_black"> - <bounds x="0" y="0" width="832" height="560"/> + <element name="padding" ref="rect"> + <bounds x="0" y="0" width="832" height="560" /> + <color red="0" green="0" blue="0" /> </element> <screen index="0"> <bounds x="96" y="0" width="640" height="480" /> </screen> - <element name="left top pad" ref="left top pad"><bounds x="16" y="209" width="64" height="64"/></element> - <element name="left top lamp" ref="left top lamp"><bounds x="16" y="209" width="64" height="64" alpha="0.25" /></element> + <element name="left top pad" ref="rect"> + <bounds x="16" y="209" width="64" height="64" /> + <color state="50" alpha="0" /> + <color state="150" alha="1" /> + </element> + <element name="left top lamp" ref="rect"> + <bounds x="16" y="209" width="64" height="64" /> + <color state="0" red="1" green="0" blue="0" alpha="0" /> + <color state="1" red="1" green="0" blue="0" alpha="1" /> + </element> - <element name="left middle pad" ref="left middle pad"><bounds x="16" y="289" width="64" height="64"/></element> - <element name="left middle lamp" ref="left middle lamp"><bounds x="16" y="289" width="64" height="64" alpha="0.25" /></element> + <element name="left middle pad" ref="rect"> + <bounds x="16" y="289" width="64" height="64" /> + <color state="50" alpha="0" /> + <color state="150" alha="1" /> + </element> + <element name="left middle lamp" ref="rect"> + <bounds x="16" y="289" width="64" height="64" /> + <color state="0" red="1" green="0" blue="0" alpha="0" /> + <color state="1" red="1" green="0" blue="0" alpha="1" /> + </element> - <element name="left bottom pad" ref="left bottom pad"><bounds x="16" y="369" width="64" height="64"/></element> - <element name="left bottom lamp" ref="left bottom lamp"><bounds x="16" y="369" width="64" height="64" alpha="0.25" /></element> + <element name="left bottom pad" ref="rect"> + <bounds x="16" y="369" width="64" height="64" /> + <color state="50" alpha="0" /> + <color state="150" alha="1" /> + </element> + <element name="left bottom lamp" ref="rect"> + <bounds x="16" y="369" width="64" height="64" /> + <color state="0" red="1" green="0" blue="0" alpha="0" /> + <color state="1" red="1" green="0" blue="0" alpha="1" /> + </element> - <element name="right top pad" ref="right top pad"><bounds x="752" y="209" width="64" height="64"/></element> - <element name="right top lamp" ref="right top lamp"><bounds x="752" y="209" width="64" height="64" alpha="0.25" /></element> + <element name="right top pad" ref="rect"> + <bounds x="752" y="209" width="64" height="64" /> + <color state="50" alpha="0" /> + <color state="150" alha="1" /> + </element> + <element name="right top lamp" ref="rect"> + <bounds x="752" y="209" width="64" height="64" /> + <color state="0" red="1" green="0" blue="0" alpha="0" /> + <color state="1" red="1" green="0" blue="0" alpha="1" /> + </element> - <element name="right middle pad" ref="right middle pad"><bounds x="752" y="289" width="64" height="64"/></element> - <element name="right middle lamp" ref="right middle lamp"><bounds x="752" y="289" width="64" height="64" alpha="0.25" /></element> + <element name="right middle pad" ref="rect"> + <bounds x="752" y="289" width="64" height="64" /> + <color state="50" alpha="0" /> + <color state="150" alha="1" /> + </element> + <element name="right middle lamp" ref="rect"> + <bounds x="752" y="289" width="64" height="64" /> + <color state="0" red="1" green="0" blue="0" alpha="0" /> + <color state="1" red="1" green="0" blue="0" alpha="1" /> + </element> - <element name="right bottom pad" ref="right bottom pad"><bounds x="752" y="369" width="64" height="64"/></element> - <element name="right bottom lamp" ref="right bottom lamp"><bounds x="752" y="369" width="64" height="64" alpha="0.25" /></element> + <element name="right bottom pad" ref="rect"> + <bounds x="752" y="369" width="64" height="64" /> + <color state="50" alpha="0" /> + <color state="150" alha="1" /> + </element> + <element name="right bottom lamp" ref="rect"> + <bounds x="752" y="369" width="64" height="64" /> + <color state="0" red="1" green="0" blue="0" alpha="0" /> + <color state="1" red="1" green="0" blue="0" alpha="1" /> + </element> - <element name="select left right" ref="select left right"><bounds x="312" y="508" width="48" height="24" /></element> - <element name="start lamp" ref="start lamp"><bounds x="376" y="496" width="48" height="48" /></element> - <element name="select left right" ref="select left right"><bounds x="440" y="508" width="48" height="24" /></element> + <element name="select left right" ref="rect"> + <bounds x="312" y="508" width="48" height="24" /> + <color state="0" red="1" green="1" blue="1" /> + <color state="1" red="1" green="0" blue="0" /> + </element> + <element name="start lamp" ref="disk"> + <bounds x="376" y="496" width="48" height="48" /> + <color state="0" red="1" green="1" blue="1" /> + <color state="1" red="1" green="0" blue="0" /> + </element> + <element name="select left right" ref="rect"> + <bounds x="440" y="508" width="48" height="24" /> + <color state="0" red="1" green="1" blue="1" /> + <color state="1" red="1" green="0" blue="0" /> + </element> </view> </mamelayout> |