<p>Harald Welte <strong>merged</strong> this change.</p><p><a href="https://gerrit.osmocom.org/13083">View Change</a></p><div style="white-space:pre-wrap">Approvals:
  Jenkins Builder: Verified
  Harald Welte: Looks good to me, approved

</div><pre style="font-family: monospace,monospace; white-space: pre-wrap;">Add minimal board-support for Olimex SAM3-P256<br><br>This is a general purpose evaluation board, and it makes sense to<br>support it particularly for the DFU bootloader.<br><br>Change-Id: I85aea8f1441158f991493c5fc767fdcad405545e<br>---<br>A firmware/libboard/sam3p256/include/board.h<br>A firmware/libboard/sam3p256/source/board_sam3p256.c<br>M hardware/board_gpio.gnumeric<br>3 files changed, 605 insertions(+), 33 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/firmware/libboard/sam3p256/include/board.h b/firmware/libboard/sam3p256/include/board.h</span><br><span>new file mode 100644</span><br><span>index 0000000..bd2ab49</span><br><span>--- /dev/null</span><br><span>+++ b/firmware/libboard/sam3p256/include/board.h</span><br><span>@@ -0,0 +1,148 @@</span><br><span style="color: hsl(120, 100%, 40%);">+/* Olimiex SAM3S-P256 board definition</span><br><span style="color: hsl(120, 100%, 40%);">+ *</span><br><span style="color: hsl(120, 100%, 40%);">+ * (C) 2019 by Harald Welte <hwelte@hmw-consulting.de></span><br><span style="color: hsl(120, 100%, 40%);">+ *</span><br><span style="color: hsl(120, 100%, 40%);">+ * This program is free software; you can redistribute it and/or modify</span><br><span style="color: hsl(120, 100%, 40%);">+ * it under the terms of the GNU General Public License as published by</span><br><span style="color: hsl(120, 100%, 40%);">+ * the Free Software Foundation; either version 2 of the License, or</span><br><span style="color: hsl(120, 100%, 40%);">+ * (at your option) any later version.</span><br><span style="color: hsl(120, 100%, 40%);">+ *</span><br><span style="color: hsl(120, 100%, 40%);">+ * This program is distributed in the hope that it will be useful,</span><br><span style="color: hsl(120, 100%, 40%);">+ * but WITHOUT ANY WARRANTY; without even the implied warranty of</span><br><span style="color: hsl(120, 100%, 40%);">+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span><br><span style="color: hsl(120, 100%, 40%);">+ * GNU General Public License for more details.</span><br><span style="color: hsl(120, 100%, 40%);">+ *</span><br><span style="color: hsl(120, 100%, 40%);">+ * You should have received a copy of the GNU General Public License</span><br><span style="color: hsl(120, 100%, 40%);">+ * along with this program; if not, write to the Free Software</span><br><span style="color: hsl(120, 100%, 40%);">+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA</span><br><span style="color: hsl(120, 100%, 40%);">+ */</span><br><span style="color: hsl(120, 100%, 40%);">+#pragma once</span><br><span style="color: hsl(120, 100%, 40%);">+#include "board_common.h"</span><br><span style="color: hsl(120, 100%, 40%);">+#include "simtrace_usb.h"</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/* Name of the board */</span><br><span style="color: hsl(120, 100%, 40%);">+#define BOARD_NAME "SAM3S-P256"</span><br><span style="color: hsl(120, 100%, 40%);">+/* Board definition */</span><br><span style="color: hsl(120, 100%, 40%);">+#define simtrace</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** oscillator used as main clock source (in Hz) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define BOARD_MAINOSC 12000000</span><br><span style="color: hsl(120, 100%, 40%);">+/** desired main clock frequency (in Hz, based on BOARD_MAINOSC) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define BOARD_MCK 58000000</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** Pin configuration **/</span><br><span style="color: hsl(120, 100%, 40%);">+/* Button to force bootloader start (shorted to ground when pressed */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_BOOTLOADER_SW      {PIO_PA20, PIOA, ID_PIOA, PIO_INPUT, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+#if 0</span><br><span style="color: hsl(120, 100%, 40%);">+/* Enable powering the card using the second 3.3 V output of the LDO (active high) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define SIM_PWEN_PIN           {SIM_PWEN, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Enable powering the SIM card */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PWR_PINS                SIM_PWEN_PIN</span><br><span style="color: hsl(120, 100%, 40%);">+/* Card presence pin */</span><br><span style="color: hsl(120, 100%, 40%);">+#define SW_SIM                  PIO_PA8</span><br><span style="color: hsl(120, 100%, 40%);">+/* Pull card presence pin high (shorted to ground in card slot when card is present) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define SMARTCARD_CONNECT_PIN  {SW_SIM, PIOA, ID_PIOA, PIO_INPUT, PIO_PULLUP | PIO_DEBOUNCE | PIO_DEGLITCH | PIO_IT_EDGE }</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** Smart card connection **/</span><br><span style="color: hsl(120, 100%, 40%);">+/* Card RST reset signal input (active low; RST_SIM in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SIM_RST            {PIO_PA7, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Card I/O data signal input/output (I/O_SIM in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SIM_IO             {PIO_PA6A_TXD0, PIOA, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Card CLK clock input (CLK_SIM in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SIM_CLK            {PIO_PA2B_SCK0, PIOA, ID_PIOA, PIO_PERIPH_B, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Pin to measure card I/O timing (to start measuring the ETU on I/O activity; connected I/O_SIM in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SIM_IO_INPUT       {PIO_PA1B_TIOB0, PIOA, ID_PIOA, PIO_PERIPH_B, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Pin used as clock input (to measure the ETU duration; connected to CLK_SIM in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SIM_CLK_INPUT      {PIO_PA4B_TCLK0, PIOA, ID_PIOA, PIO_PERIPH_B, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Pins used to measure ETU timing (using timer counter) */ </span><br><span style="color: hsl(120, 100%, 40%);">+#define PINS_TC                 PIN_SIM_IO_INPUT, PIN_SIM_CLK_INPUT</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** Phone connection **/</span><br><span style="color: hsl(120, 100%, 40%);">+/* Phone USIM slot 1 VCC pin (VCC_PHONE in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_USIM1_VCC          {PIO_PA25, PIOA, ID_PIOA, PIO_INPUT, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Phone USIM slot 1 RST pin (active low; RST_PHONE in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_USIM1_nRST         {PIO_PA24, PIOA, ID_PIOA, PIO_INPUT, PIO_IT_RISE_EDGE | PIO_DEGLITCH }</span><br><span style="color: hsl(120, 100%, 40%);">+/* Phone I/O data signal input/output (I/O_PHONE in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_PHONE_IO           {PIO_PA22A_TXD1, PIOA, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Phone CLK clock input (CLK_PHONE in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_PHONE_CLK          {PIO_PA23A_SCK1, PIOA, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Pin used for phone USIM slot 1 communication */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PINS_USIM1              PIN_PHONE_IO, PIN_PHONE_CLK, PIN_PHONE_CLK_INPUT, PIN_USIM1_VCC, PIN_PHONE_IO_INPUT, PIN_USIM1_nRST</span><br><span style="color: hsl(120, 100%, 40%);">+/* Phone I/O data signal input/output (unused USART RX input; connected to I/O_PHONE in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_PHONE_IO_INPUT     {PIO_PA21A_RXD1, PIOA, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Pin used as clock input (to measure the ETU duration; connected to CLK_PHONE in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_PHONE_CLK_INPUT    {PIO_PA29B_TCLK2, PIOA, ID_PIOA, PIO_PERIPH_B, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** Default pin configuration **/</span><br><span style="color: hsl(120, 100%, 40%);">+/* Disconnect VPP, CLK, and RST lines between card and phone using bus switch (high sets bus switch to high-impedance) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SC_SW_DEFAULT      {PIO_PA20, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Disconnect I/O line between card and phone using bus switch (high sets bus switch to high-impedance) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_IO_SW_DEFAULT      {PIO_PA19, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Disconnect all lines (VPP, CLK, RST, and I/O) between card and phone */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PINS_BUS_DEFAULT        PIN_SC_SW_DEFAULT, PIN_IO_SW_DEFAULT</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** Sniffer configuration **/</span><br><span style="color: hsl(120, 100%, 40%);">+/* Connect VPP, CLK, and RST lines between card and phone using bus switch (low connects signals on bus switch) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SC_SW_SNIFF        {PIO_PA20, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Connect I/O line between card and phone using bus switch (low connects signals on bus switch) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_IO_SW_SNIFF        {PIO_PA19, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Connect all lines (VPP, CLK, RST, and I/O) between card and phone */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PINS_BUS_SNIFF          PIN_SC_SW_SNIFF, PIN_IO_SW_SNIFF</span><br><span style="color: hsl(120, 100%, 40%);">+/* Card RST reset signal input (use as input since the phone will drive it) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SIM_RST_SNIFF      {PIO_PA7, PIOA, ID_PIOA, PIO_INPUT, PIO_DEGLITCH | PIO_IT_EDGE}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Pins used to sniff phone-card communication */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PINS_SIM_SNIFF          PIN_SIM_IO, PIN_SIM_CLK, PIN_SIM_RST_SNIFF</span><br><span style="color: hsl(120, 100%, 40%);">+/* Disable power converter 4.5-6V to 3.3V (active high) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SIM_PWEN_SNIFF     {SIM_PWEN, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Enable power switch to forward VCC_PHONE to VCC_SIM (active high) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_VCC_FWD_SNIFF      {VCC_FWD, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* Use phone VCC to power card */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PINS_PWR_SNIFF          PIN_SIM_PWEN_SNIFF, PIN_VCC_FWD_SNIFF</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** CCID configuration */</span><br><span style="color: hsl(120, 100%, 40%);">+/* Card RST reset signal input (active low; RST_SIM in schematic) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_ISO7816_RSTMC      {PIO_PA7, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* ISO7816-communication related pins */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PINS_ISO7816            PIN_SIM_IO,  PIN_SIM_CLK,  PIN_ISO7816_RSTMC // SIM_PWEN_PIN, PIN_SIM_IO2, PIN_SIM_CLK2</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** External SPI flash interface   **/</span><br><span style="color: hsl(120, 100%, 40%);">+/* SPI MISO pin definition */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SPI_MISO  {PIO_PA12A_MISO, PIOA, PIOA, PIO_PERIPH_A, PIO_PULLUP}</span><br><span style="color: hsl(120, 100%, 40%);">+/* SPI MOSI pin definition */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SPI_MOSI  {PIO_PA13A_MOSI, PIOA, PIOA, PIO_PERIPH_A, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* SPI SCK pin definition */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SPI_SCK   {PIO_PA14A_SPCK, PIOA, PIOA, PIO_PERIPH_A, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* SPI pins definition. Contains MISO, MOSI & SCK */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PINS_SPI       PIN_SPI_MISO, PIN_SPI_MOSI, PIN_SPI_SCK</span><br><span style="color: hsl(120, 100%, 40%);">+/* SPI chip select 0 pin definition */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SPI_NPCS0 {PIO_PA11A_NPCS0, PIOA, PIOA, PIO_PERIPH_A, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+/* SPI flash write protect pin (active low, pulled low) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_SPI_WP    {PA15, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+#endif</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** Pin configuration to control USB pull-up on D+</span><br><span style="color: hsl(120, 100%, 40%);">+ *  @details the USB pull-up on D+ is enable by default on the board but can be disabled by setting PA16 high</span><br><span style="color: hsl(120, 100%, 40%);">+ */</span><br><span style="color: hsl(120, 100%, 40%);">+#define PIN_USB_PULLUP  {PIO_PA16, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT}</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** USB definitions */</span><br><span style="color: hsl(120, 100%, 40%);">+/* OpenMoko SIMtrace 2 USB vendor ID */</span><br><span style="color: hsl(120, 100%, 40%);">+#define BOARD_USB_VENDOR_ID        USB_VENDOR_OPENMOKO</span><br><span style="color: hsl(120, 100%, 40%);">+/* OpenMoko SIMtrace 2 USB product ID (main application/runtime mode) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define BOARD_USB_PRODUCT_ID     USB_PRODUCT_SIMTRACE2</span><br><span style="color: hsl(120, 100%, 40%);">+/* OpenMoko SIMtrace 2 DFU USB product ID (DFU bootloader/DFU mode) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define BOARD_DFU_USB_PRODUCT_ID USB_PRODUCT_SIMTRACE2_DFU</span><br><span style="color: hsl(120, 100%, 40%);">+/* USB release number (bcdDevice, shown as 0.00) */</span><br><span style="color: hsl(120, 100%, 40%);">+#define BOARD_USB_RELEASE       0x000</span><br><span style="color: hsl(120, 100%, 40%);">+/* Indicate SIMtrace is bus power in USB attributes */</span><br><span style="color: hsl(120, 100%, 40%);">+#define BOARD_USB_BMATTRIBUTES   USBConfigurationDescriptor_BUSPOWERED_NORWAKEUP</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/** Supported modes */</span><br><span style="color: hsl(120, 100%, 40%);">+/* SIMtrace board supports sniffer mode */</span><br><span style="color: hsl(120, 100%, 40%);">+#define HAVE_SNIFFER</span><br><span style="color: hsl(120, 100%, 40%);">+/* SIMtrace board supports CCID mode */</span><br><span style="color: hsl(120, 100%, 40%);">+//#define HAVE_CCID</span><br><span style="color: hsl(120, 100%, 40%);">+/* SIMtrace board supports card emulation mode */</span><br><span style="color: hsl(120, 100%, 40%);">+//#define HAVE_CARDEM</span><br><span style="color: hsl(120, 100%, 40%);">+/* SIMtrace board supports man-in-the-middle mode */</span><br><span style="color: hsl(120, 100%, 40%);">+//#define HAVE_MITM</span><br><span>diff --git a/firmware/libboard/sam3p256/source/board_sam3p256.c b/firmware/libboard/sam3p256/source/board_sam3p256.c</span><br><span>new file mode 100644</span><br><span>index 0000000..4b6a451</span><br><span>--- /dev/null</span><br><span>+++ b/firmware/libboard/sam3p256/source/board_sam3p256.c</span><br><span>@@ -0,0 +1,68 @@</span><br><span style="color: hsl(120, 100%, 40%);">+/* Olimex SAM3S-P256 specific application code</span><br><span style="color: hsl(120, 100%, 40%);">+ *</span><br><span style="color: hsl(120, 100%, 40%);">+ * (C) 2017,2019 by Harald Welte <laforge@gnumonks.org></span><br><span style="color: hsl(120, 100%, 40%);">+ * (C) 2018 by sysmocom -s.f.m.c. GmbH, Author: Kevin Redon <kredon@sysmocom.de></span><br><span style="color: hsl(120, 100%, 40%);">+ *</span><br><span style="color: hsl(120, 100%, 40%);">+ * This program is free software; you can redistribute it and/or modify</span><br><span style="color: hsl(120, 100%, 40%);">+ * it under the terms of the GNU General Public License as published by</span><br><span style="color: hsl(120, 100%, 40%);">+ * the Free Software Foundation; either version 2 of the License, or</span><br><span style="color: hsl(120, 100%, 40%);">+ * (at your option) any later version.</span><br><span style="color: hsl(120, 100%, 40%);">+ *</span><br><span style="color: hsl(120, 100%, 40%);">+ * This program is distributed in the hope that it will be useful,</span><br><span style="color: hsl(120, 100%, 40%);">+ * but WITHOUT ANY WARRANTY; without even the implied warranty of</span><br><span style="color: hsl(120, 100%, 40%);">+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span><br><span style="color: hsl(120, 100%, 40%);">+ * GNU General Public License for more details.</span><br><span style="color: hsl(120, 100%, 40%);">+ *</span><br><span style="color: hsl(120, 100%, 40%);">+ * You should have received a copy of the GNU General Public License</span><br><span style="color: hsl(120, 100%, 40%);">+ * along with this program; if not, write to the Free Software</span><br><span style="color: hsl(120, 100%, 40%);">+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA</span><br><span style="color: hsl(120, 100%, 40%);">+ */</span><br><span style="color: hsl(120, 100%, 40%);">+#include "board.h"</span><br><span style="color: hsl(120, 100%, 40%);">+#include "simtrace.h"</span><br><span style="color: hsl(120, 100%, 40%);">+#include "utils.h"</span><br><span style="color: hsl(120, 100%, 40%);">+#include "sim_switch.h"</span><br><span style="color: hsl(120, 100%, 40%);">+#include <osmocom/core/timer.h></span><br><span style="color: hsl(120, 100%, 40%);">+#include "usb_buf.h"</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+void board_exec_dbg_cmd(int ch)</span><br><span style="color: hsl(120, 100%, 40%);">+{</span><br><span style="color: hsl(120, 100%, 40%);">+    switch (ch) {</span><br><span style="color: hsl(120, 100%, 40%);">+ case '?':</span><br><span style="color: hsl(120, 100%, 40%);">+             printf("\t?\thelp\n\r");</span><br><span style="color: hsl(120, 100%, 40%);">+            printf("\tR\treset SAM3\n\r");</span><br><span style="color: hsl(120, 100%, 40%);">+              break;</span><br><span style="color: hsl(120, 100%, 40%);">+        case 'R':</span><br><span style="color: hsl(120, 100%, 40%);">+             printf("Asking NVIC to reset us\n\r");</span><br><span style="color: hsl(120, 100%, 40%);">+              USBD_Disconnect();</span><br><span style="color: hsl(120, 100%, 40%);">+            NVIC_SystemReset();</span><br><span style="color: hsl(120, 100%, 40%);">+           break;</span><br><span style="color: hsl(120, 100%, 40%);">+        default:</span><br><span style="color: hsl(120, 100%, 40%);">+              printf("Unknown command '%c'\n\r", ch);</span><br><span style="color: hsl(120, 100%, 40%);">+             break;</span><br><span style="color: hsl(120, 100%, 40%);">+        }</span><br><span style="color: hsl(120, 100%, 40%);">+}</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+void board_main_top(void)</span><br><span style="color: hsl(120, 100%, 40%);">+{</span><br><span style="color: hsl(120, 100%, 40%);">+#ifndef APPLICATION_dfu</span><br><span style="color: hsl(120, 100%, 40%);">+ usb_buf_init();</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+     /* Initialize checking for card insert/remove events */</span><br><span style="color: hsl(120, 100%, 40%);">+       //card_present_init();</span><br><span style="color: hsl(120, 100%, 40%);">+#endif</span><br><span style="color: hsl(120, 100%, 40%);">+}</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+int board_override_enter_dfu(void)</span><br><span style="color: hsl(120, 100%, 40%);">+{</span><br><span style="color: hsl(120, 100%, 40%);">+    const Pin bl_sw_pin = PIN_BOOTLOADER_SW;</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+    PIO_Configure(&bl_sw_pin, 1);</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+   /* Enter DFU bootloader in case the respective button is pressed */</span><br><span style="color: hsl(120, 100%, 40%);">+   if (PIO_Get(&bl_sw_pin) == 0) {</span><br><span style="color: hsl(120, 100%, 40%);">+           /* do not print to early since the console is not initialized yet */</span><br><span style="color: hsl(120, 100%, 40%);">+          //printf("BOOTLOADER switch pressed -> Force DFU\n\r");</span><br><span style="color: hsl(120, 100%, 40%);">+          return 1;</span><br><span style="color: hsl(120, 100%, 40%);">+     } else</span><br><span style="color: hsl(120, 100%, 40%);">+                return 0;</span><br><span style="color: hsl(120, 100%, 40%);">+}</span><br><span>diff --git a/hardware/board_gpio.gnumeric b/hardware/board_gpio.gnumeric</span><br><span>index 3d76b0a..1ec9ff6 100644</span><br><span>--- a/hardware/board_gpio.gnumeric</span><br><span>+++ b/hardware/board_gpio.gnumeric</span><br><span>@@ -1,6 +1,6 @@</span><br><span> <?xml version="1.0" encoding="UTF-8"?></span><br><span> <gnm:Workbook xmlns:gnm="http://www.gnumeric.org/v10.dtd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.gnumeric.org/v9.xsd"></span><br><span style="color: hsl(0, 100%, 40%);">-  <gnm:Version Epoch="1" Major="12" Minor="32" Full="1.12.32"/></span><br><span style="color: hsl(120, 100%, 40%);">+  <gnm:Version Epoch="1" Major="12" Minor="44" Full="1.12.44"/></span><br><span>   <gnm:Attributes></span><br><span>     <gnm:Attribute></span><br><span>       <gnm:name>WorkbookView::show_horizontal_scrollbar</gnm:name></span><br><span>@@ -25,7 +25,7 @@</span><br><span>   </gnm:Attributes></span><br><span>   <office:document-meta xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:ooo="http://openoffice.org/2004/office" office:version="1.2"></span><br><span>     <office:meta></span><br><span style="color: hsl(0, 100%, 40%);">-      <dc:date>2017-05-05T14:31:27Z</dc:date></span><br><span style="color: hsl(120, 100%, 40%);">+      <dc:date>2019-02-28T17:12:35Z</dc:date></span><br><span>       <meta:creation-date>2017-03-05T18:42:38Z</meta:creation-date></span><br><span>     </office:meta></span><br><span>   </office:document-meta></span><br><span>@@ -35,11 +35,11 @@</span><br><span>     <gnm:SheetName gnm:Cols="256" gnm:Rows="65536">Sheet2</gnm:SheetName></span><br><span>     <gnm:SheetName gnm:Cols="256" gnm:Rows="65536">Sheet3</gnm:SheetName></span><br><span>   </gnm:SheetNameIndex></span><br><span style="color: hsl(0, 100%, 40%);">-  <gnm:Geometry Width="1304" Height="896"/></span><br><span style="color: hsl(120, 100%, 40%);">+  <gnm:Geometry Width="1918" Height="2001"/></span><br><span>   <gnm:Sheets></span><br><span>     <gnm:Sheet DisplayFormulas="0" HideZero="0" HideGrid="0" HideColHeader="0" HideRowHeader="0" DisplayOutlines="1" OutlineSymbolsBelow="1" OutlineSymbolsRight="1" Visibility="GNM_SHEET_VISIBILITY_VISIBLE" GridColor="0:0:0"></span><br><span>       <gnm:Name>Sheet1</gnm:Name></span><br><span style="color: hsl(0, 100%, 40%);">-      <gnm:MaxCol>7</gnm:MaxCol></span><br><span style="color: hsl(120, 100%, 40%);">+      <gnm:MaxCol>9</gnm:MaxCol></span><br><span>       <gnm:MaxRow>67</gnm:MaxRow></span><br><span>       <gnm:Zoom>1</gnm:Zoom></span><br><span>       <gnm:Names></span><br><span>@@ -1057,127 +1057,452 @@</span><br><span>             </gnm:StyleBorder></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="0" endCol="255" endRow="5"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="0" endCol="7" endRow="5"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="6" endCol="255" endRow="9"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="6" endCol="7" endRow="9"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="10" endCol="255" endRow="11"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="10" endCol="7" endRow="11"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="12" endCol="255" endRow="14"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="12" endCol="7" endRow="14"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="15" endCol="255" endRow="15"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="15" endCol="7" endRow="15"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="16" endCol="255" endRow="19"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="16" endCol="7" endRow="19"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="20" endCol="255" endRow="21"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="20" endCol="7" endRow="21"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="22" endCol="255" endRow="26"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="22" endCol="7" endRow="26"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="27" endCol="255" endRow="27"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="27" endCol="7" endRow="27"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="28" endCol="255" endRow="35"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="28" endCol="7" endRow="35"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="36" endCol="255" endRow="36"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="36" endCol="7" endRow="36"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="37" endCol="255" endRow="41"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="37" endCol="7" endRow="41"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="42" endCol="255" endRow="43"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="42" endCol="7" endRow="43"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="44" endCol="255" endRow="47"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="44" endCol="7" endRow="47"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="48" endCol="255" endRow="49"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="48" endCol="7" endRow="49"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="50" endCol="255" endRow="51"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="50" endCol="7" endRow="51"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="52" endCol="255" endRow="54"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="52" endCol="7" endRow="54"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="55" endCol="255" endRow="55"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="55" endCol="7" endRow="55"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="56" endCol="255" endRow="57"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="56" endCol="7" endRow="57"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="58" endCol="255" endRow="58"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="58" endCol="7" endRow="58"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="59" endCol="255" endRow="61"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="59" endCol="7" endRow="61"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="62" endCol="255" endRow="62"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="62" endCol="7" endRow="62"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="63" endCol="255" endRow="63"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="63" endCol="7" endRow="63"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="64" endCol="255" endRow="66"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="64" endCol="7" endRow="66"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>         </gnm:StyleRegion></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:StyleRegion startCol="7" startRow="67" endCol="255" endRow="65535"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="7" startRow="67" endCol="7" endRow="65535"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="0" endCol="8" endRow="5"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="6" endCol="8" endRow="9"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="10" endCol="8" endRow="11"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="12" endCol="8" endRow="14"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="15" endCol="8" endRow="15"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="16" endCol="8" endRow="19"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="20" endCol="8" endRow="21"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="22" endCol="8" endRow="26"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="27" endCol="8" endRow="27"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="28" endCol="8" endRow="35"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="36" endCol="8" endRow="36"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="37" endCol="8" endRow="41"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="42" endCol="8" endRow="43"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="44" endCol="8" endRow="47"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="48" endCol="8" endRow="49"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="50" endCol="8" endRow="51"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="52" endCol="8" endRow="54"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="55" endCol="8" endRow="55"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="56" endCol="8" endRow="57"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="58" endCol="8" endRow="58"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="59" endCol="8" endRow="61"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="62" endCol="8" endRow="62"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="63" endCol="8" endRow="63"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="64" endCol="8" endRow="66"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="8" startRow="67" endCol="8" endRow="65535"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+              <gnm:Left Style="1" Color="0:0:0"/></span><br><span style="color: hsl(120, 100%, 40%);">+            </gnm:StyleBorder></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="0" endCol="255" endRow="5"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="6" endCol="255" endRow="9"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="10" endCol="255" endRow="11"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="12" endCol="255" endRow="14"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="15" endCol="255" endRow="15"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="16" endCol="255" endRow="19"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="20" endCol="255" endRow="21"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="22" endCol="255" endRow="26"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="27" endCol="255" endRow="27"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="28" endCol="255" endRow="35"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="36" endCol="255" endRow="36"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="37" endCol="255" endRow="41"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="42" endCol="255" endRow="43"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="44" endCol="255" endRow="47"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="48" endCol="255" endRow="49"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="50" endCol="255" endRow="51"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="52" endCol="255" endRow="54"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="55" endCol="255" endRow="55"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="56" endCol="255" endRow="57"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="58" endCol="255" endRow="58"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="59" endCol="255" endRow="61"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="62" endCol="255" endRow="62"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="63" endCol="255" endRow="63"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="64" endCol="255" endRow="66"></span><br><span style="color: hsl(120, 100%, 40%);">+          <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:BABA" PatternColor="0:0:0" Format="General"></span><br><span style="color: hsl(120, 100%, 40%);">+            <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span style="color: hsl(120, 100%, 40%);">+          </gnm:Style></span><br><span style="color: hsl(120, 100%, 40%);">+        </gnm:StyleRegion></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:StyleRegion startCol="9" startRow="67" endCol="255" endRow="65535"></span><br><span>           <gnm:Style HAlign="GNM_HALIGN_GENERAL" VAlign="GNM_VALIGN_BOTTOM" WrapText="0" ShrinkToFit="0" Rotation="0" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General"></span><br><span>             <gnm:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0" Script="0">Sans</gnm:Font></span><br><span>           </gnm:Style></span><br><span>@@ -1190,15 +1515,27 @@</span><br><span>         <gnm:ColInfo No="5" Unit="120" HardSize="1"/></span><br><span>         <gnm:ColInfo No="7" Unit="161.2" HardSize="1"/></span><br><span>       </gnm:Cols></span><br><span style="color: hsl(0, 100%, 40%);">-      <gnm:Rows DefaultSizePts="12.75"/></span><br><span style="color: hsl(0, 100%, 40%);">-      <gnm:Selections CursorCol="5" CursorRow="34"></span><br><span style="color: hsl(0, 100%, 40%);">-        <gnm:Selection startCol="5" startRow="34" endCol="5" endRow="34"/></span><br><span style="color: hsl(120, 100%, 40%);">+      <gnm:Rows DefaultSizePts="12.75"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="2" Unit="13.5" Count="2"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="12" Unit="13.5" Count="3"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="16" Unit="13.5" Count="2"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="19" Unit="13.5"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="22" Unit="13.5"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="24" Unit="13.5" Count="2"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="30" Unit="13.5" Count="5"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="39" Unit="13.5"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="46" Unit="13.5"/></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:RowInfo No="55" Unit="13.5"/></span><br><span style="color: hsl(120, 100%, 40%);">+      </gnm:Rows></span><br><span style="color: hsl(120, 100%, 40%);">+      <gnm:Selections CursorCol="3" CursorRow="0"></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Selection startCol="3" startRow="0" endCol="3" endRow="0"/></span><br><span>       </gnm:Selections></span><br><span>       <gnm:Cells></span><br><span>         <gnm:Cell Row="0" Col="0" ValueType="60">Pins / Ios of SAM3 based devices</gnm:Cell></span><br><span>         <gnm:Cell Row="2" Col="2" ValueType="60">SIMtrace v1.x</gnm:Cell></span><br><span>         <gnm:Cell Row="2" Col="4" ValueType="60">Quad Modem</gnm:Cell></span><br><span>         <gnm:Cell Row="2" Col="6" ValueType="60">OWHW</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="2" Col="8" ValueType="60">SAM3-P256</gnm:Cell></span><br><span>         <gnm:Cell Row="3" Col="0" ValueType="60">Pin Number</gnm:Cell></span><br><span>         <gnm:Cell Row="3" Col="1" ValueType="60">Pin Name</gnm:Cell></span><br><span>         <gnm:Cell Row="3" Col="2" ValueType="60">Used Function</gnm:Cell></span><br><span>@@ -1207,6 +1544,8 @@</span><br><span>         <gnm:Cell Row="3" Col="5" ValueType="60">Signal Name</gnm:Cell></span><br><span>         <gnm:Cell Row="3" Col="6" ValueType="60">Used Function</gnm:Cell></span><br><span>         <gnm:Cell Row="3" Col="7" ValueType="60">Signal Name</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="3" Col="8" ValueType="60">Used Function</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="3" Col="9" ValueType="60">Signal Name</gnm:Cell></span><br><span>         <gnm:Cell Row="4" Col="0" ValueType="40">1</gnm:Cell></span><br><span>         <gnm:Cell Row="4" Col="1" ValueType="60">ADVREF</gnm:Cell></span><br><span>         <gnm:Cell Row="4" Col="4" ValueType="60">ADVREF</gnm:Cell></span><br><span>@@ -1245,6 +1584,7 @@</span><br><span>         <gnm:Cell Row="12" Col="5" ValueType="60">LED_RED</gnm:Cell></span><br><span>         <gnm:Cell Row="12" Col="6" ValueType="60">PA17</gnm:Cell></span><br><span>         <gnm:Cell Row="12" Col="7" ValueType="60">LED_RED</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="12" Col="8" ValueType="60">LED2</gnm:Cell></span><br><span>         <gnm:Cell Row="13" Col="0" ValueType="40">10</gnm:Cell></span><br><span>         <gnm:Cell Row="13" Col="1" ValueType="60">PA18</gnm:Cell></span><br><span>         <gnm:Cell Row="13" Col="2" ValueType="60">PA18</gnm:Cell></span><br><span>@@ -1253,6 +1593,7 @@</span><br><span>         <gnm:Cell Row="13" Col="5" ValueType="60">LED_GREEN</gnm:Cell></span><br><span>         <gnm:Cell Row="13" Col="6" ValueType="60">PA18</gnm:Cell></span><br><span>         <gnm:Cell Row="13" Col="7" ValueType="60">LED_GREEN</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="13" Col="8" ValueType="60">LED1</gnm:Cell></span><br><span>         <gnm:Cell Row="14" Col="0" ValueType="40">11</gnm:Cell></span><br><span>         <gnm:Cell Row="14" Col="1" ValueType="60">PA21/RXD1/PCK1</gnm:Cell></span><br><span>         <gnm:Cell Row="14" Col="2" ValueType="60">RXD1</gnm:Cell></span><br><span>@@ -1261,6 +1602,7 @@</span><br><span>         <gnm:Cell Row="14" Col="5" ValueType="60">ST_USIM1_IO</gnm:Cell></span><br><span>         <gnm:Cell Row="14" Col="6" ValueType="60">RXD1</gnm:Cell></span><br><span>         <gnm:Cell Row="14" Col="7" ValueType="60">ST_USIM1_IO</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="14" Col="8" ValueType="60">RXD1</gnm:Cell></span><br><span>         <gnm:Cell Row="15" Col="0" ValueType="40">12</gnm:Cell></span><br><span>         <gnm:Cell Row="15" Col="1" ValueType="60">VDDCORE</gnm:Cell></span><br><span>         <gnm:Cell Row="16" Col="0" ValueType="40">13</gnm:Cell></span><br><span>@@ -1270,6 +1612,7 @@</span><br><span>         <gnm:Cell Row="16" Col="4" ValueType="60">AD2</gnm:Cell></span><br><span>         <gnm:Cell Row="16" Col="5" ValueType="60">VERSION_DETECT12</gnm:Cell></span><br><span>         <gnm:Cell Row="16" Col="7" ValueType="60">NC</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="16" Col="8" ValueType="60">B1</gnm:Cell></span><br><span>         <gnm:Cell Row="17" Col="0" ValueType="40">14</gnm:Cell></span><br><span>         <gnm:Cell Row="17" Col="1" ValueType="60">PA22/TXD1/NPCS3</gnm:Cell></span><br><span>         <gnm:Cell Row="17" Col="2" ValueType="60">TXD1</gnm:Cell></span><br><span>@@ -1278,6 +1621,7 @@</span><br><span>         <gnm:Cell Row="17" Col="5" ValueType="60">ST_USIM1_IO</gnm:Cell></span><br><span>         <gnm:Cell Row="17" Col="6" ValueType="60">TXD1</gnm:Cell></span><br><span>         <gnm:Cell Row="17" Col="7" ValueType="60">ST_USIM1_IO</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="17" Col="8" ValueType="60">TXD1</gnm:Cell></span><br><span>         <gnm:Cell Row="18" Col="0" ValueType="40">15</gnm:Cell></span><br><span>         <gnm:Cell Row="18" Col="1" ValueType="60">PA23/SCK1/PWM0</gnm:Cell></span><br><span>         <gnm:Cell Row="18" Col="2" ValueType="60">SCK1</gnm:Cell></span><br><span>@@ -1293,6 +1637,7 @@</span><br><span>         <gnm:Cell Row="19" Col="4" ValueType="60">PA20</gnm:Cell></span><br><span>         <gnm:Cell Row="19" Col="5" ValueType="60">!CONNECT_ST_USIM1</gnm:Cell></span><br><span>         <gnm:Cell Row="19" Col="7" ValueType="60">NC</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="19" Col="8" ValueType="60">B2</gnm:Cell></span><br><span>         <gnm:Cell Row="20" Col="0" ValueType="40">17</gnm:Cell></span><br><span>         <gnm:Cell Row="20" Col="1" ValueType="60">GND</gnm:Cell></span><br><span>         <gnm:Cell Row="21" Col="0" ValueType="40">18</gnm:Cell></span><br><span>@@ -1305,6 +1650,7 @@</span><br><span>         <gnm:Cell Row="22" Col="5" ValueType="60">WWAN2</gnm:Cell></span><br><span>         <gnm:Cell Row="22" Col="6" ValueType="60">PA16</gnm:Cell></span><br><span>         <gnm:Cell Row="22" Col="7" ValueType="60">UDP_PUP_CTL</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="22" Col="8" ValueType="60">DP_PUP</gnm:Cell></span><br><span>         <gnm:Cell Row="23" Col="0" ValueType="40">20</gnm:Cell></span><br><span>         <gnm:Cell Row="23" Col="1" ValueType="60">PA15/TF/TIOA1</gnm:Cell></span><br><span>         <gnm:Cell Row="23" Col="2" ValueType="60">PA15</gnm:Cell></span><br><span>@@ -1320,6 +1666,7 @@</span><br><span>         <gnm:Cell Row="24" Col="5" ValueType="60">ST12_ST34_SELECT</gnm:Cell></span><br><span>         <gnm:Cell Row="24" Col="6" ValueType="60">PA14</gnm:Cell></span><br><span>         <gnm:Cell Row="24" Col="7" ValueType="60">SET_USIM2_PRES</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="24" Col="8" ValueType="60">SPCK</gnm:Cell></span><br><span>         <gnm:Cell Row="25" Col="0" ValueType="40">22</gnm:Cell></span><br><span>         <gnm:Cell Row="25" Col="1" ValueType="60">PA13/MOSI/PWM2</gnm:Cell></span><br><span>         <gnm:Cell Row="25" Col="2" ValueType="60">MOSI</gnm:Cell></span><br><span>@@ -1327,6 +1674,7 @@</span><br><span>         <gnm:Cell Row="25" Col="4" ValueType="60">PA13</gnm:Cell></span><br><span>         <gnm:Cell Row="25" Col="5" ValueType="60">HUB_RESET</gnm:Cell></span><br><span>         <gnm:Cell Row="25" Col="7" ValueType="60">NC</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="25" Col="8" ValueType="60">MOSI</gnm:Cell></span><br><span>         <gnm:Cell Row="26" Col="0" ValueType="40">23</gnm:Cell></span><br><span>         <gnm:Cell Row="26" Col="1" ValueType="60">PA24/RTS1/PWM1</gnm:Cell></span><br><span>         <gnm:Cell Row="26" Col="2" ValueType="60">PA24</gnm:Cell></span><br><span>@@ -1359,6 +1707,7 @@</span><br><span>         <gnm:Cell Row="30" Col="5" ValueType="60">SIMPRES1</gnm:Cell></span><br><span>         <gnm:Cell Row="30" Col="6" ValueType="60">PA12</gnm:Cell></span><br><span>         <gnm:Cell Row="30" Col="7" ValueType="60">SET_USIM1_PRES</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="30" Col="8" ValueType="60">MISO</gnm:Cell></span><br><span>         <gnm:Cell Row="31" Col="0" ValueType="40">28</gnm:Cell></span><br><span>         <gnm:Cell Row="31" Col="1" ValueType="60">PA11/NPCS0/PWM0</gnm:Cell></span><br><span>         <gnm:Cell Row="31" Col="2" ValueType="60">NPCS0</gnm:Cell></span><br><span>@@ -1366,6 +1715,7 @@</span><br><span>         <gnm:Cell Row="31" Col="4" ValueType="60">PA11</gnm:Cell></span><br><span>         <gnm:Cell Row="31" Col="5" ValueType="60">_SIMTRACE34_ERASE</gnm:Cell></span><br><span>         <gnm:Cell Row="31" Col="7" ValueType="60">NC</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="31" Col="8" ValueType="60">NPCS0</gnm:Cell></span><br><span>         <gnm:Cell Row="32" Col="0" ValueType="40">29</gnm:Cell></span><br><span>         <gnm:Cell Row="32" Col="1" ValueType="60">PA10/DTXD/NCPS2</gnm:Cell></span><br><span>         <gnm:Cell Row="32" Col="2" ValueType="60">DTXD</gnm:Cell></span><br><span>@@ -1374,6 +1724,7 @@</span><br><span>         <gnm:Cell Row="32" Col="5" ValueType="60">SIMTRACE1_DTXD</gnm:Cell></span><br><span>         <gnm:Cell Row="32" Col="6" ValueType="60">DTXD</gnm:Cell></span><br><span>         <gnm:Cell Row="32" Col="7" ValueType="60">SIMTRACE_DTXD</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="32" Col="8" ValueType="60">DTXD</gnm:Cell></span><br><span>         <gnm:Cell Row="33" Col="0" ValueType="40">30</gnm:Cell></span><br><span>         <gnm:Cell Row="33" Col="1" ValueType="60">PA9/DRXDNPCS1</gnm:Cell></span><br><span>         <gnm:Cell Row="33" Col="2" ValueType="60">DRXD</gnm:Cell></span><br><span>@@ -1382,6 +1733,7 @@</span><br><span>         <gnm:Cell Row="33" Col="5" ValueType="60">SIMTRACE1_DRXD</gnm:Cell></span><br><span>         <gnm:Cell Row="33" Col="6" ValueType="60">DRXD</gnm:Cell></span><br><span>         <gnm:Cell Row="33" Col="7" ValueType="60">SIMTRACE_DRXD</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="33" Col="8" ValueType="60">DRXD</gnm:Cell></span><br><span>         <gnm:Cell Row="34" Col="0" ValueType="40">31</gnm:Cell></span><br><span>         <gnm:Cell Row="34" Col="1" ValueType="60">PA8/CTS0/ADTRG</gnm:Cell></span><br><span>         <gnm:Cell Row="34" Col="2" ValueType="60">PA8</gnm:Cell></span><br><span>@@ -1389,6 +1741,7 @@</span><br><span>         <gnm:Cell Row="34" Col="4" ValueType="60">PA8</gnm:Cell></span><br><span>         <gnm:Cell Row="34" Col="5" ValueType="60">SIMPRES2 / ST12_PRTPWR-OVERRIDE</gnm:Cell></span><br><span>         <gnm:Cell Row="34" Col="7" ValueType="60">NC</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="34" Col="8" ValueType="60">DM_PUP</gnm:Cell></span><br><span>         <gnm:Cell Row="35" Col="0" ValueType="40">32</gnm:Cell></span><br><span>         <gnm:Cell Row="35" Col="1" ValueType="60">PA7/RTS0/PWM3</gnm:Cell></span><br><span>         <gnm:Cell Row="35" Col="2" ValueType="60">PA7</gnm:Cell></span><br><span>@@ -1424,6 +1777,7 @@</span><br><span>         <gnm:Cell Row="39" Col="5" ValueType="60">ST_USIM2_CLK</gnm:Cell></span><br><span>         <gnm:Cell Row="39" Col="6" ValueType="60">TCLK0</gnm:Cell></span><br><span>         <gnm:Cell Row="39" Col="7" ValueType="60">ST_USIM2_CLK</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="39" Col="8" ValueType="60">TWCK</gnm:Cell></span><br><span>         <gnm:Cell Row="40" Col="0" ValueType="40">37</gnm:Cell></span><br><span>         <gnm:Cell Row="40" Col="1" ValueType="60">PA27/DTR1/TIOB2</gnm:Cell></span><br><span>         <gnm:Cell Row="40" Col="2" ValueType="60">NC</gnm:Cell></span><br><span>@@ -1470,6 +1824,7 @@</span><br><span>         <gnm:Cell Row="46" Col="4" ValueType="60">NC</gnm:Cell></span><br><span>         <gnm:Cell Row="46" Col="5" ValueType="60">NC</gnm:Cell></span><br><span>         <gnm:Cell Row="46" Col="7" ValueType="60">NC</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="46" Col="8" ValueType="60">TWD</gnm:Cell></span><br><span>         <gnm:Cell Row="47" Col="0" ValueType="40">44</gnm:Cell></span><br><span>         <gnm:Cell Row="47" Col="1" ValueType="60">PA2/PWM2/SCK0</gnm:Cell></span><br><span>         <gnm:Cell Row="47" Col="2" ValueType="60">SCK0</gnm:Cell></span><br><span>@@ -1522,6 +1877,7 @@</span><br><span>         <gnm:Cell Row="55" Col="3" ValueType="60">BOTLOADER_SW</gnm:Cell></span><br><span>         <gnm:Cell Row="55" Col="4" ValueType="60">PA31</gnm:Cell></span><br><span>         <gnm:Cell Row="55" Col="5" ValueType="60">SCL</gnm:Cell></span><br><span style="color: hsl(120, 100%, 40%);">+        <gnm:Cell Row="55" Col="8" ValueType="60">NPCS1</gnm:Cell></span><br><span>         <gnm:Cell Row="56" Col="0" ValueType="40">53</gnm:Cell></span><br><span>         <gnm:Cell Row="56" Col="1" ValueType="60">TCK</gnm:Cell></span><br><span>         <gnm:Cell Row="56" Col="2" ValueType="60">TCK</gnm:Cell></span><br><span>@@ -1565,7 +1921,7 @@</span><br><span>         <gnm:Cell Row="67" Col="0" ValueType="40">64</gnm:Cell></span><br><span>         <gnm:Cell Row="67" Col="1" ValueType="60">VDDPLL</gnm:Cell></span><br><span>       </gnm:Cells></span><br><span style="color: hsl(0, 100%, 40%);">-      <gnm:SheetLayout TopLeft="A13"/></span><br><span style="color: hsl(120, 100%, 40%);">+      <gnm:SheetLayout TopLeft="A1"/></span><br><span>       <gnm:Solver ModelType="0" ProblemType="0" MaxTime="60" MaxIter="1000" NonNeg="1" Discr="0" AutoScale="0" ProgramR="0" SensitivityR="0"/></span><br><span>     </gnm:Sheet></span><br><span>     <gnm:Sheet DisplayFormulas="0" HideZero="0" HideGrid="0" HideColHeader="0" HideRowHeader="0" DisplayOutlines="1" OutlineSymbolsBelow="1" OutlineSymbolsRight="1" Visibility="GNM_SHEET_VISIBILITY_VISIBLE" GridColor="0:0:0"></span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.osmocom.org/13083">change 13083</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.osmocom.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.osmocom.org/13083"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: simtrace2 </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-MessageType: merged </div>
<div style="display:none"> Gerrit-Change-Id: I85aea8f1441158f991493c5fc767fdcad405545e </div>
<div style="display:none"> Gerrit-Change-Number: 13083 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Harald Welte <laforge@gnumonks.org> </div>
<div style="display:none"> Gerrit-Reviewer: Harald Welte <laforge@gnumonks.org> </div>
<div style="display:none"> Gerrit-Reviewer: Jenkins Builder (1000002) </div>