[
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: Lightweight regressions\non: [push]\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - name: Install Python 3\n        uses: actions/setup-python@v1\n        with:\n          python-version: 3.13\n      - name: Install dependencies\n        run: |\n          python -m pip install --upgrade pip\n          # pip install -r requirements.txt\n      - name: Build and run tests\n        run: ./testall\n"
  },
  {
    "path": ".gitignore",
    "content": "__pycache__\n*.pyc\n/c/build/\n/c/bin/\n/c/obj/\n"
  },
  {
    "path": ".readthedocs.yml",
    "content": "# .readthedocs.yml\n# Read the Docs configuration file\n# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details\n\n# Required\nversion: 2\n\n# Build documentation in the docs/ directory with Sphinx\nsphinx:\n   configuration: python/docs/conf.py\n\n# Optionally set the version of Python and requirements required to build your docs\npython:\n  install:\n    - method: pip\n      path: python\n\nformats: all\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: generic\nscript: ./testall\n\nmatrix:\n    include:\n        - os: linux\n          sudo: required\n          python: 2.7\n          install: pip install pyserial\n          env: TOXENV=py27\n        - os: linux\n          sudo: required\n          python: 3.4\n          install: pip install pyserial\n          env: TOXENV=py34\n        - os: linux\n          sudo: required\n          python: 3.5\n          install: pip install pyserial\n          env: TOXENV=py35\n        - os: osx\n          sudo: required\n          install: pip install pyserial\n          env: TOXENV=py33\n"
  },
  {
    "path": "LICENSE",
    "content": "BSD 3-Clause License\n\nCopyright (c) 2019, James Bowman\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n  list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n  this list of conditions and the following disclaimer in the documentation\n  and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n  contributors may be used to endorse or promote products derived from\n  this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "README.md",
    "content": "![logo](/images/logo.png)\n\n[![Build Status](https://travis-ci.org/jamesbowman/i2cdriver.svg?branch=master)](https://travis-ci.org/jamesbowman/i2cdriver)\n[![Documentation Status](https://readthedocs.org/projects/i2cdriver/badge/?version=latest)](https://i2cdriver.readthedocs.io/en/latest/?badge=latest)\n\nI2CDriver is a tool for controlling any I2C device from your PC's USB port,\nand can also monitor and capture I2C traffic.\nIt connects as a standard USB serial device, so there are no drivers to install.\nOn the main site\n[i2cdriver.com](https://i2cdriver.com),\nthere are drivers for\n\n* Windows/Mac/Linux GUI\n* Windows/Mac/Linux command-line\n* Python 2 and 3\n* Windows/Mac/Linux C/C++\n\n![front](/images/hero.jpg)\n\nFull documentation is at\n[i2cdriver.com](http://i2cdriver.com).\n\nFor developers: How to make a release\n-------------------------------------\n\nTo release Python:\n\n    cd python3\n    rm -rf dist/*\n    python -m build\n    twine check dist/*\n    twine upload dist/*\n\nTo build the Windows installer, you first need to build the two executables\n``i2ccl.exe`` and ``i2cgui.exe`` then use an NSIS script to create the installer.\n\nOn Linux cross-compile ``i2ccl``:\n  \n    cd c\n    make -f win32/Makefile\n\nOn Windows first make sure that you can run the GUI on the command-line, e.g.\n\n    python python\\samples\\i2cgui.py\n\n(You may need to install i2cdriver, wxPython and pySerial).\n\nThen build the GUI executable using ``pyinstaller``:\n\n    cd python\\samples\n    pyinstaller --onefile --windowed --icon=../../images/i2cdriver.ico i2cgui.py\n\nThis builds the executable in ``python\\samples\\dist\\i2cgui.exe``.\n\nThe Windows installer is built with NSIS (Nullsoft Scriptable Install System). Download and install it.\n\nCopy the two executables ``i2ccl.exe`` and ``i2cgui.exe`` into ``nsis/``.\n\nThen build the installer with NSIS:\n\n    cd nsis\n    \"C:\\Program Files\\NSIS\\makensis.exe\" i2cdriver.nsi\n\nThe script ``go.bat`` in ``nsis`` has an example complete flow.\n"
  },
  {
    "path": "c/common/i2cdriver.c",
    "content": "#include <stdio.h>\n#include <stdlib.h>\n#include <assert.h>\n#include <memory.h>\n#include <fcntl.h>\n#if !defined(WIN32)\n#include <sys/ioctl.h>\n#include <unistd.h>\n#endif\n#include <errno.h>\n#define __STDC_FORMAT_MACROS\n#include <inttypes.h>\n#include <string.h>\n#include <stdbool.h>\n\n#include \"i2cdriver.h\"\n\n// ****************************   Serial port  ********************************\n\n#if defined(WIN32)  // {\n\n#ifndef NOMINMAX\n#define NOMINMAX\n#endif\n#include <windows.h>\n\nvoid ErrorExit(const char *func_name) \n{ \n    // Retrieve the system error message for the last-error code\n\n    LPVOID lpMsgBuf;\n    DWORD dw = GetLastError(); \n\n    FormatMessage(\n        FORMAT_MESSAGE_ALLOCATE_BUFFER | \n        FORMAT_MESSAGE_FROM_SYSTEM |\n        FORMAT_MESSAGE_IGNORE_INSERTS,\n        NULL,\n        dw,\n        MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),\n        (LPTSTR) &lpMsgBuf,\n        0, NULL );\n\n    // Display the error message and exit the process\n\n    char mm[256];\n    snprintf(mm, sizeof(mm), \"%s failed with error %lu:\\n%s\", func_name, dw, (char*)lpMsgBuf); \n    MessageBox(NULL, (LPCTSTR)mm, TEXT(\"Error\"), MB_OK); \n\n    LocalFree(lpMsgBuf);\n    ExitProcess(dw); \n}\n\nHANDLE openSerialPort(const char *portname)\n{\n    char fullname[10];\n    const char *fmt;\n    if (portname[0] == 'C')\n        fmt = \"\\\\\\\\.\\\\%s\";\n    else\n        fmt = \"%s\";\n    snprintf(fullname, sizeof(fullname), fmt, portname);\n    DWORD  accessdirection = GENERIC_READ | GENERIC_WRITE;\n    HANDLE hSerial = CreateFile((LPCSTR)fullname,\n        accessdirection,\n        0,\n        0,\n        OPEN_EXISTING,\n        0,\n        0);\n    if (hSerial == INVALID_HANDLE_VALUE) {\n        ErrorExit(\"CreateFile\");\n    }\n    DCB dcbSerialParams = {0};\n    dcbSerialParams.DCBlength=sizeof(dcbSerialParams);\n    if (!GetCommState(hSerial, &dcbSerialParams)) {\n         ErrorExit(\"GetCommState\");\n    }\n    dcbSerialParams.BaudRate = 1000000;\n    dcbSerialParams.ByteSize = 8;\n    dcbSerialParams.StopBits = ONESTOPBIT;\n    dcbSerialParams.Parity = NOPARITY;\n    if (!SetCommState(hSerial, &dcbSerialParams)) {\n         ErrorExit(\"SetCommState\");\n    }\n    COMMTIMEOUTS timeouts = {0};\n    timeouts.ReadIntervalTimeout = 50;\n    timeouts.ReadTotalTimeoutConstant = 50;\n    timeouts.ReadTotalTimeoutMultiplier = 10;\n    timeouts.WriteTotalTimeoutConstant = 50;\n    timeouts.WriteTotalTimeoutMultiplier = 10;\n    if (!SetCommTimeouts(hSerial, &timeouts)) {\n        ErrorExit(\"SetCommTimeouts\");\n    }\n    return hSerial;\n}\n\nDWORD readFromSerialPort(HANDLE hSerial, uint8_t * buffer, int buffersize)\n{\n    DWORD dwBytesRead = 0;\n    if (!ReadFile(hSerial, buffer, buffersize, &dwBytesRead, NULL)) {\n        ErrorExit(\"ReadFile\");\n    }\n    return dwBytesRead;\n}\n\nDWORD writeToSerialPort(HANDLE hSerial, const uint8_t * data, int length)\n{\n    DWORD dwBytesRead = 0;\n    if (!WriteFile(hSerial, data, length, &dwBytesRead, NULL)) {\n        ErrorExit(\"WriteFile\");\n    }\n    return dwBytesRead;\n}\n\nvoid closeSerialPort(HANDLE hSerial)\n{\n    CloseHandle(hSerial);\n}\n\n#else               // }{\n\n#include <termios.h>\n\nint openSerialPort(const char *portname)\n{\n  struct termios Settings;\n  int fd;\n  \n  fd = open(portname, O_RDWR | O_NOCTTY);\n  if (fd == -1) {\n    perror(portname);\n    return -1;\n  }\n  tcgetattr(fd, &Settings);\n\n#if defined(__APPLE__) && !defined(B1000000)\n  #include <IOKit/serial/ioss.h>\n#else\n  cfsetispeed(&Settings, B1000000);\n  cfsetospeed(&Settings, B1000000);\n#endif\n\n\n  cfmakeraw(&Settings);\n  Settings.c_cc[VMIN] = 1;\n  if (tcsetattr(fd, TCSANOW, &Settings) != 0) {\n    perror(\"Serial settings\");\n    return -1;\n  }\n\n#if defined(__APPLE__) && !defined(B1000000)\n  speed_t speed = (speed_t)1000000;\n  ioctl(fd, IOSSIOSPEED, &speed);\n#endif\n\n  return fd;\n}\n\nint readFromSerialPort(int fd, uint8_t *b, size_t s)\n{\n  ssize_t n, t;\n  t = 0;\n  while (t < s) {\n    n = read(fd, b + t, s);\n    if (n > 0)\n      t += n;\n  }\n#ifdef VERBOSE\n  printf(\" READ %d %d: \", (int)s, (int)n);\n  int i;\n  for (i = 0; i < s; i++)\n    printf(\"%02x \", 0xff & b[i]);\n  printf(\"\\n\");\n#endif\n  return s;\n}\n\nvoid writeToSerialPort(int fd, const uint8_t *b, size_t s)\n{\n  write(fd, b, s);\n#ifdef VERBOSE\n  printf(\"WRITE %u: \", (int)s);\n  int i;\n  for (i = 0; i < s; i++)\n    printf(\"%02x \", 0xff & b[i]);\n  printf(\"\\n\");\n#endif  \n}\n\nvoid closeSerialPort(HANDLE hSerial)\n{\n    close((int)hSerial);\n}\n\n#endif              // }\n\n// ******************************  CCITT CRC  *********************************\n\nstatic const uint16_t crc_table[256] = {\n    0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,\n    0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,\n    0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,\n    0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de,\n    0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485,\n    0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,\n    0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4,\n    0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc,\n    0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823,\n    0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b,\n    0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12,\n    0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,\n    0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41,\n    0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49,\n    0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70,\n    0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78,\n    0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f,\n    0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,\n    0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e,\n    0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,\n    0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,\n    0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405,\n    0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,\n    0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,\n    0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,\n    0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3,\n    0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,\n    0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92,\n    0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,\n    0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1,\n    0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,\n    0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0\n};\n\nstatic void crc_update(I2CDriver *sd, const uint8_t *data, size_t data_len)\n{\n    unsigned int tbl_idx;\n    uint16_t crc = sd->e_ccitt_crc;\n\n    while (data_len--) {\n        tbl_idx = ((crc >> 8) ^ *data) & 0xff;\n        crc = (crc_table[tbl_idx] ^ (crc << 8)) & 0xffff;\n        data++;\n    }\n    sd->e_ccitt_crc = crc;\n}\n\n// ******************************  I2CDriver  *********************************\n\nvoid i2c_connect(I2CDriver *sd, const char* portname)\n{\n  int i;\n\n  sd->connected = 0;\n  sd->port = openSerialPort(portname);\n#if !defined(WIN32)\n  if (sd->port == -1)\n    return;\n#endif\n  writeToSerialPort(sd->port,\n    (uint8_t*)\"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\", 64);\n\n  const uint8_t tests[] = \"A\\r\\n\\0xff\";\n  for (i = 0; i < 4; i++) {\n    uint8_t tx[2] = {'e', tests[i]};\n    writeToSerialPort(sd->port, tx, 2);\n    uint8_t rx[1];\n    int n = readFromSerialPort(sd->port, rx, 1);\n    if ((n != 1) || (rx[0] != tests[i]))\n      return;\n  }\n\n  sd->connected = 1;\n  i2c_getstatus(sd);\n  sd->e_ccitt_crc = sd->ccitt_crc;\n}\n\nvoid i2c_disconnect(I2CDriver *sd)\n{\n  if (sd->connected) {\n    closeSerialPort(sd->port);\n    sd->port = -1;\n    sd->connected = 0;\n  }\n}\n\nstatic void charCommand(I2CDriver *sd, char c)\n{\n  writeToSerialPort(sd->port, (uint8_t*)&c, 1);\n}\n\nstatic int i2c_ack(I2CDriver *sd)\n{\n  uint8_t a[1];\n  if (readFromSerialPort(sd->port, a, 1) != 1)\n    return 0;\n  return (a[0] & 1) != 0;\n}\n\nvoid i2c_getstatus(I2CDriver *sd)\n{\n  uint8_t readbuffer[100];\n  int bytesRead;\n  uint8_t mode[80];\n\n  charCommand(sd, '?');\n  bytesRead = readFromSerialPort(sd->port, readbuffer, 80);\n  readbuffer[bytesRead] = 0;\n  // printf(\"%d Bytes were read: %.*s\\n\", bytesRead, bytesRead, readbuffer);\n  sscanf((char*)readbuffer, \"[%15s %8s %\" SCNu64 \" %f %f %f %c %d %d %d %d %x ]\",\n    sd->model,\n    sd->serial,\n    &sd->uptime,\n    &sd->voltage_v,\n    &sd->current_ma,\n    &sd->temp_celsius,\n    mode,\n    &sd->sda,\n    &sd->scl,\n    &sd->speed,\n    &sd->pullups,\n    &sd->ccitt_crc\n    );\n    sd->mode = mode[0];\n}\n\nbool i2c_setspeed(I2CDriver *sd, unsigned int speed_khz)\n{\n  uint8_t ch;\n\n  if (speed_khz == sd->speed) {\n    return true;\n  }\n  switch (speed_khz) {\n    case 100:\n      ch = '1';\n      break;\n    case 400:\n      ch = '4';\n    default:\n      return false;\n  }\n  writeToSerialPort(sd->port, &ch, 1);\n  i2c_getstatus(sd);\n  return (bool)(sd->speed == speed_khz);\n}\n\nvoid i2c_scan(I2CDriver *sd, uint8_t devices[128])\n{\n  charCommand(sd, 'd');\n  (void)readFromSerialPort(sd->port, devices + 8, 112);\n}\n\nuint8_t i2c_reset(I2CDriver *sd)\n{\n  charCommand(sd, 'x');\n  uint8_t a[1];\n  if (readFromSerialPort(sd->port, a, 1) != 1)\n    return 0;\n  return a[0];\n}\n\nint i2c_start(I2CDriver *sd, uint8_t dev, uint8_t op)\n{\n  uint8_t start[2] = {'s', (uint8_t)((dev << 1) | op)};\n  writeToSerialPort(sd->port, start, sizeof(start));\n  return i2c_ack(sd);\n}\n\nvoid i2c_stop(I2CDriver *sd)\n{\n  charCommand(sd, 'p');\n}\n\nint i2c_write(I2CDriver *sd, const uint8_t bytes[], size_t nn)\n{\n  size_t i;\n  int ack = 1;\n\n  for (i = 0; i < nn; i += 64) {\n    size_t len = ((nn - i) < 64) ? (nn - i) : 64;\n    uint8_t cmd[65] = {(uint8_t)(0xc0 + len - 1)};\n    memcpy(cmd + 1, bytes + i, len);\n    writeToSerialPort(sd->port, cmd, 1 + len);\n    ack = i2c_ack(sd);\n  }\n  crc_update(sd, bytes, nn);\n  return ack;\n}\n\nvoid i2c_read(I2CDriver *sd, uint8_t bytes[], size_t nn)\n{\n  size_t i;\n\n  for (i = 0; i < nn; i += 64) {\n    size_t len = ((nn - i) < 64) ? (nn - i) : 64;\n    uint8_t cmd[1] = {(uint8_t)(0x80 + len - 1)};\n    writeToSerialPort(sd->port, cmd, 1);\n    readFromSerialPort(sd->port, bytes + i, len);\n    crc_update(sd, bytes + i, len);\n  }\n}\n\nvoid i2c_monitor(I2CDriver *sd, int enable)\n{\n  charCommand(sd, enable ? 'm' : '@');\n}\n\nvoid i2c_capture(I2CDriver *sd)\n{\n  printf(\"Capture started\\n\");\n  charCommand(sd, 'c');\n  uint8_t bytes[1];\n\n  int starting = 0;\n  int nbits = 0, bits = 0;\n  while (1) {\n    int i;\n    readFromSerialPort(sd->port, bytes, 1);\n    for (i = 0; i < 2; i++) {\n      int symbol = (i == 0) ? (bytes[0] >> 4) : (bytes[0] & 0xf);\n      switch (symbol) {\n        case 0:\n          break;\n        case 1:\n          starting = 1;\n          break;\n        case 2:\n          printf(\"STOP\\n\");\n          starting = 1;\n          break;\n        case 8:\n        case 9:\n        case 10:\n        case 11:\n        case 12:\n        case 13:\n        case 14:\n        case 15:\n          bits = (bits << 3) | (symbol & 7);\n          nbits += 3;\n          if (nbits == 9) {\n            int b8 = (bits >> 1), ack = !(bits & 1);\n            if (starting) {\n              starting = 0;\n              printf(\"START %02x %s\", b8 >> 1, (b8 & 1) ? \"READ\" : \"WRITE\");\n            } else {\n              printf(\"BYTE %02x\", b8);\n            }\n            printf(\" %s\\n\", ack ? \"ACK\" : \"NAK\");\n            nbits = 0;\n            bits = 0;\n          }\n      }\n    }\n  }\n}\n\nint i2c_commands(I2CDriver *sd, int argc, char *argv[])\n{\n  int i;\n\n  for (i = 0; i < argc; i++) {\n    char *token = argv[i];\n    // printf(\"token [%s]\\n\", token);\n    if (strlen(token) != 1)\n      goto badcommand;\n    switch (token[0]) {\n\n    case 'i':\n      i2c_getstatus(sd);\n      printf(\"uptime %\" SCNu64\"  %.3f V  %.0f mA  %.1f C SDA=%d SCL=%d speed=%d kHz\\n\",\n        sd->uptime,\n        sd->voltage_v,\n        sd->current_ma,\n        sd->temp_celsius,\n        sd->sda,\n        sd->scl,\n        sd->speed\n        );\n      break;\n\n    case 'x':\n      {\n        uint8_t sda_scl = i2c_reset(sd);\n        printf(\"Bus reset. SDA = %d, SCL = %d\\n\",\n               1 & (sda_scl >> 1),\n               1 & sda_scl);\n      }\n      break;\n\n    case 'd':\n      {\n        uint8_t devices[128];\n        int i;\n\n        i2c_scan(sd, devices);\n        printf(\"\\n\");\n        for (i = 8; i < 0x78; i++) {\n          if (devices[i] == '1')\n            printf(\"%02x  \", i);\n          else\n            printf(\"--  \");\n          if ((i % 8) == 7)\n            printf(\"\\n\");\n        }\n        printf(\"\\n\");\n      }\n      break;\n    \n    case 'w':\n      {\n        token = argv[++i];\n        unsigned int dev = strtol(token, NULL, 0);\n\n        token = argv[++i];\n        uint8_t bytes[8192];\n        char *endptr = token;\n        size_t nn = 0;\n        while (nn < sizeof(bytes)) {\n          bytes[nn++] = strtol(endptr, &endptr, 0);\n          if (*endptr == '\\0')\n            break;\n          if (*endptr != ',') {\n            fprintf(stderr, \"Invalid bytes '%s'\\n\", token);\n            return 1;\n          }\n          endptr++;\n        }\n\n        i2c_start(sd, dev, 0);\n        i2c_write(sd, bytes, nn);\n      }\n      break;\n\n    case 'r':\n      {\n        token = argv[++i];\n        unsigned int dev = strtol(token, NULL, 0);\n\n        token = argv[++i];\n        size_t nn = strtol(token, NULL, 0);\n        uint8_t bytes[8192];\n\n        i2c_start(sd, dev, 1);\n        i2c_read(sd, bytes, nn);\n        i2c_stop(sd);\n\n        size_t i;\n        for (i = 0; i < nn; i++)\n          printf(\"%s0x%02x\", i ? \",\" : \"\", 0xff & bytes[i]);\n        printf(\"\\n\");\n      }\n      break;\n\n    case 'p':\n      i2c_stop(sd);\n      break;\n\n    case 'm':\n      {\n        char line[100];\n\n        i2c_monitor(sd, 1);\n        printf(\"[Hit return to exit monitor mode]\\n\");\n        fgets(line, sizeof(line) - 1, stdin);\n        i2c_monitor(sd, 0);\n      }\n      break;\n\n    case 'c':\n      {\n        i2c_capture(sd);\n      }\n      break;\n\n    default:\n    badcommand:\n      fprintf(stderr, \"Bad command '%s'\\n\", token);\n      fprintf(stderr, \"\\n\");\n      fprintf(stderr, \"Commands are:\");\n      fprintf(stderr, \"\\n\");\n      fprintf(stderr, \"  i              display status information (uptime, voltage, current, temperature)\\n\");\n      fprintf(stderr, \"  x              I2C bus reset\\n\");\n      fprintf(stderr, \"  d              device scan\\n\");\n      fprintf(stderr, \"  w dev <bytes>  write bytes to I2C device dev\\n\");\n      fprintf(stderr, \"  p              send a STOP\\n\");\n      fprintf(stderr, \"  r dev N        read N bytes from I2C device dev, then STOP\\n\");\n      fprintf(stderr, \"  m              enter I2C bus monitor mode\\n\");\n      fprintf(stderr, \"  c              enter I2C bus capture mode\\n\");\n      fprintf(stderr, \"\\n\");\n\n      return 1;\n    }\n  }\n\n  return 0;\n}\n"
  },
  {
    "path": "c/common/i2cdriver.h",
    "content": "#ifndef I2CDRIVER_H\n#define I2CDRIVER_H\n\n#include <stdint.h>\n#include <stdbool.h>\n\n#if defined(WIN32)\n#include <windows.h>\n#else\n#define HANDLE int\n#endif\n\ntypedef struct {\n  int connected;          // Set to 1 when connected\n  HANDLE port;\n  char      model[16],\n            serial[9];    // Serial number of USB device\n  uint64_t  uptime;       // time since boot (seconds)\n  float     voltage_v,    // USB voltage (Volts)\n            current_ma,   // device current (mA)\n            temp_celsius; // temperature (C)\n  unsigned int mode;      // I2C 'I' or bitbang 'B' mode\n  unsigned int sda;       // SDA state, 0 or 1\n  unsigned int scl;       // SCL state, 0 or 1\n  unsigned int speed;     // I2C line speed (in kHz)\n  unsigned int pullups;   // pullup state (6 bits, 1=enabled)\n  unsigned int\n            ccitt_crc,    // Hardware CCITT CRC\n            e_ccitt_crc;  // Host CCITT CRC, should match\n} I2CDriver;\n\nvoid i2c_connect(I2CDriver *sd, const char* portname);\nvoid i2c_disconnect(I2CDriver *sd);\nvoid i2c_getstatus(I2CDriver *sd);\nint  i2c_write(I2CDriver *sd, const uint8_t bytes[], size_t nn);\nvoid i2c_read(I2CDriver *sd, uint8_t bytes[], size_t nn);\nint  i2c_start(I2CDriver *sd, uint8_t dev, uint8_t op);\nvoid i2c_stop(I2CDriver *sd);\n\nbool i2c_setspeed(I2CDriver *sd, unsigned int kbaud);\n\nvoid i2c_monitor(I2CDriver *sd, int enable);\nvoid i2c_capture(I2CDriver *sd);\n\nint i2c_commands(I2CDriver *sd, int argc, char *argv[]);\n\n#endif\n"
  },
  {
    "path": "c/go",
    "content": "set -e\n\nrm -rf build/*\nmake -f linux/Makefile\n# build/i2ccl /dev/ttyUSB0 i d\n# build/i2ccl /dev/ttyUSB0 w 0x48 3 r 0x48 2\n\nmake -f win32/Makefile\n# cp build/spicl.exe /data/win10/\n# \n# rm -f win32gui/obj/* win32gui/bin/Win32App.exe\n# make -C win32gui/ CHARSET=ANSI\n# cp win32gui/bin/Win32App.exe /data/win10/spigui.exe\n# \n# ./mk-nsis /data/win10/nsis\n"
  },
  {
    "path": "c/linux/Makefile",
    "content": "CFLAGS += -I common -Wall -Wpointer-sign # -Werror\n\nall: build/i2ccl\n\ninstall: all\n\tcp build/i2ccl /usr/local/bin\n\nbuild/i2ccl: linux/i2c.c common/i2cdriver.c\n\tmkdir -p build/\n\t$(CC) -o $@ $(CPPFLAGS) $(CFLAGS) $^\n"
  },
  {
    "path": "c/linux/Makefile.clang",
    "content": "CC=clang\nCFLAGS += -I common -Wall -Wpointer-sign -xc++ -std=c++17 # -Werror\n\nall: build/i2ccl\n\ninstall: all\n\tcp build/i2ccl /usr/local/bin\n\nbuild/i2ccl: linux/i2c.c common/i2cdriver.c\n\tmkdir -p build/\n\t$(CC) -o $@ $(CPPFLAGS) $(CFLAGS) $^\n"
  },
  {
    "path": "c/linux/i2c.c",
    "content": "#include <stdio.h>\n#include <stdlib.h>\n\n#include \"i2cdriver.h\"\n\nint main(int argc, char *argv[])\n{\n  I2CDriver i2c;\n  if (argc < 2) {\n    printf(\"Usage: i2ccl <PORTNAME> <commands>\\n\");\n    exit(1);\n  } else {\n    i2c_connect(&i2c, argv[1]);\n    if (!i2c.connected)\n      exit(1);\n    return i2c_commands(&i2c, argc - 2, argv + 2);\n  }\n}\n"
  },
  {
    "path": "c/win32/Makefile",
    "content": "CC = /usr/bin/i686-w64-mingw32-g++\nCFLAGS += -I common -static-libgcc -static-libstdc++\n\nall: build/i2ccl.exe\n\nbuild/i2ccl.exe: win32/i2c.c common/i2cdriver.c\n\tmkdir -p build/\n\t$(CC) -o $@ $(CPPFLAGS) $(CFLAGS) $^\n"
  },
  {
    "path": "c/win32/i2c.c",
    "content": "#include <stdio.h>\n#include <stdlib.h>\n\n#include \"i2cdriver.h\"\n\nint main(int argc, char *argv[])\n{\n  I2CDriver sd;\n  if (argc < 2) {\n    printf(\"Usage: i2ccl <PORTNAME> <commands>\\n\");\n    exit(1);\n  } else {\n    i2c_connect(&sd, argv[1]);\n    if (!sd.connected)\n      exit(1);\n    return i2c_commands(&sd, argc - 2, argv + 2);\n  }\n}\n"
  },
  {
    "path": "firmware/README.md",
    "content": "This is the firmware for the I2CDriver.\nIt uses the [MyForth](http://www.kiblerelectronics.com/myf/myf.shtml) compiler written by\nCharley Shattuck and Bob Nash.\n\nTo compile the fonts go into ``assets``\nand run ``mkfont.py``. This builds the font sources in ``fonts.fs``\n"
  },
  {
    "path": "firmware/assets/go",
    "content": "set -e\n\npython2 mkfont.py\n"
  },
  {
    "path": "firmware/assets/mkfont.py",
    "content": "#!/usr/bin/python\n# -*- coding: utf-8 -*-\n\nimport sys\nfrom PIL import Image, ImageDraw, ImageFont\nimport numpy as np\nimport struct\nimport random\n\ndef rand(n):\n    return random.randrange(n)\n\ndef as565(im):\n    \"\"\" Return RGB565 of im \"\"\"\n    (r,g,b) = [np.array(c).astype(np.uint16) for c in im.split()]\n    def s(x, n):\n        return x * (2 ** n - 1) / 255\n    return (s(b, 5) << 11) | (s(g, 6) << 5) | s(r, 5)\n\ndef c3(rgb):\n    return (16 * (0xf & (rgb >> 8)),\n            16 * (0xf & (rgb >> 4)),\n            16 * (0xf & (rgb >> 0)))\n\nfont2 = ImageFont.truetype(\"IBMPlexSans-SemiBold.otf\", 13)\nfontSP = ImageFont.truetype(\"pf_ronda_seven_bold.ttf\", 8)\n\ndef pad2(s):\n    if len(s) % 2:\n        s.append(s[0])\n    return s\n\ndef rfont2(c):\n    im = Image.new(\"L\", (128, 160))\n    dr = ImageDraw.Draw(im)\n    dr.text((10,40), c, font=font2, fill=255)\n    # im.save(\"out.png\")\n    extents = im.getbbox()\n    assert 10 <= extents[0]\n    assert 45 <= extents[1]\n    if c in \"0123456789\":\n        extents = (0, 0, 10 + 8, 45 + 9)\n    im = im.crop((10, 45) + extents[2:])\n    (w,h) = im.size\n    nyb = pad2((np.array(im).astype(int).flatten() * 15 / 255).tolist())\n    return [w,h] + nyb\n\ndef rf(c, font):\n    im = Image.new(\"L\", (128, 160))\n    dr = ImageDraw.Draw(im)\n    dr.text((10,40), c, font=font, fill=255)\n    # im.save(\"out.png\")\n    extents = im.getbbox()\n    im = im.crop(extents)\n    (w,h) = im.size\n    nyb = (np.array(im).astype(int).flatten() * 15 / 255).tolist()\n    return [w,h] + nyb\n\nfs = open(\"../font.fs\", \"wt\")\nfb = 0\n\nif __name__ == '__main__':\n    fs.write('here constant tplan\\n')\n    fs.write('%d , %d , $%x%x , $%x , ,\" %s\"\\n' % (60, 0, 0xf, 0xf, 0xf, \"V\"))\n    fb += 5 + len(\"V\")\n    # fs.write(\"[ %d ]\\n\" % fb)\n    fs.write('%d , %d , $%x%x , $%x , ,\" %s\"\\n' % (108, 0, 0xf, 0xf, 0xf, \"mA\"))\n    fb += 5 + len(\"mA\")\n    # fs.write(\"[ %d ]\\n\" % fb)\n\n    fs.write('0 ,\\n')\n    fb += 1\n    # im.save(\"out.png\")\n\nuniq = \"\".join(sorted(set(\"0123456789.mAVDMCS\")))\nf2 = sum([rfont2(c) for c in uniq], [])\nprint \"font2 %s takes %d bytes\" % (uniq, len(f2) / 2)\ndef nybbles(nn):\n    s = len(nn)\n    assert s % 2 == 0\n    b = [\"$%x%x ,\" % tuple(nn[i:i+2]) for i in range(0, s, 2)]\n    return b\nfs.write('here constant font\\n')\nfor c in uniq:\n    bb = nybbles(rfont2(c))\n    print >>fs, \"'%s' , \" % c, \" \".join(bb)\n    fb += 1 + len(bb)\n\n# See http://angband.pl/font/tinyfont.html\nfs.write(\"\\nhere constant micro\\n\")\nif 1:\n    tiny = Image.open(\"hex4x5.png\").convert(\"L\")\n    for i in range(16):\n        x = 5 * i\n        im = tiny.crop((x, 0, x + 4, 5))\n        rim = im.transpose(Image.ROTATE_90)\n        ch = ((np.array(rim)).flatten() * 15.99 / 255).astype(np.uint8).tolist()\n        fs.write(\" \".join(nybbles(ch)) + \"\\n\")\n        fb += len(ch) / 2\n\nif 1:\n    # Image.open(\"arrow.png\").transpose(Image.FLIP_LEFT_RIGHT).save(\"larrow.png\")\n    for n in (\"symbol-s\", \"symbol-p\", \"symbol-b\", \"arrow\", \"larrow\", \"dot\", \"label-sda\", \"label-scl\"):\n        im = Image.open(n + \".png\").convert(\"L\")\n        if n.startswith(\"label-\"):\n            im = im.point([0] + 254 * [64] + [255])\n        rim = im.transpose(Image.ROTATE_90)\n        (w,h) = rim.size\n        ch = [w,h] + pad2(((np.array(rim)).flatten() * 15.99 / 255).astype(np.uint8).tolist())\n        fs.write(\"here constant %s \\n\" % n)\n        fs.write(\" \".join(nybbles(ch)) + \"\\n\")\n        fb += len(ch) / 2\n\nif 1:\n    w = 72\n    gpng = \"plasma.png\"\n    grad = Image.open(gpng).convert(\"RGB\").resize((w, 1), Image.BILINEAR).load()\n    fs.write(\"\\nHERE constant grad\\n\")\n    for x in range(w):\n        (r,g,b) = grad[x,0]\n        r = (r * 15) // 255\n        g = (g * 15) // 255\n        b = (b * 15) // 255\n        fs.write('$%x%x , $%x ,\\n' % (r, g, b))\n    fb += 2 * w\n\nfs.close()\n\nfs = open(\"../fontsize.fs\", \"wt\")\nfs.write(\"&%d constant FONTDATA_SIZE\\n\" % fb)\nfs.close()\n"
  },
  {
    "path": "firmware/capture.fs",
    "content": "\nhere constant CAPTURE-START\n\n[\n: fake ( a - u )\n    dup 0= ] here [ and or ;\n]\n\n:m ::  (  - )\n\t[ >in @ label >in !\n\tcreate ] here [ , hide \n\tdoes> @ ] m;\n\n\\ jump if bit is 0 or 1 ( addr bit )\n:m j1 ( addr bit ) [ swap fake swap ] 0=until. m;\n:m j0 ( addr bit ) [ swap fake swap ] until. m;\n:m j  ( addr )     fake again m;\n\n:m tx SBUF0 (#!) clra TMR3H (#!) m;\n:m SDA0 ( a ) SDA j0 m;\n:m SDA1 ( a ) SDA j1 m;\n\nfwd L00.0\nfwd L00.1\nfwd L00.2\nfwd H00.0\nfwd H00.1\nfwd H00.2\nfwd HS\nfwd HP\nfwd LP\nfwd LS\n\n:m escape   RI0 if. RI0 clr ; then m;\n\n:: L11      begin LS    SDA0 SCL 0=until.\n:: Lidle    begin begin SDA until. SCL until.\n            L11 j\n\n:: L10.0    3 .t set\n            begin L00.0 SDA0 SCL until.  begin LS SDA0 SCL 0=until. 2 .t set\n:: L10.1    begin L00.1 SDA0 SCL until.  begin LS SDA0 SCL 0=until. 1 .t set\n:: L10.2    begin L00.2 SDA0 SCL until.  begin LS SDA0 SCL 0=until. 0 .t set\n            tx\n:: H10.0    7 .t set\n:: klak     begin H00.0 SDA0 SCL until.  begin HS SDA0 SCL 0=until. 6 .t set\n:: H10.1    begin H00.1 SDA0 SCL until.  begin HS SDA0 SCL 0=until. 5 .t set\n:: H10.2    begin H00.2 SDA0 SCL until.  begin HS SDA0 SCL 0=until. 4 .t set\n            L10.0 j\n\n:: LS       $f0 # and $01 # ior tx      ( start )\n:: LS2      begin HP    SDA1 SCL 0=until.\n            H00.0 j\n\n:: HS       $10 (#)                     ( start )\n:: HS2      begin LP    SDA1 SCL 0=until.\n:: L00.0    3 .t set\n            begin L10.0 SDA1 SCL until.  begin LP SDA1 SCL 0=until.\n:: L00.1    begin L10.1 SDA1 SCL until.  begin LP SDA1 SCL 0=until.\n:: L00.2    begin L10.2 SDA1 SCL until.  begin LP SDA1 SCL 0=until.\n            tx\n:: H00.0    7 .t set\n            begin H10.0 SDA1 SCL until.  begin HP SDA1 SCL 0=until.\n:: H00.1    begin H10.1 SDA1 SCL until.  begin HP SDA1 SCL 0=until.\n:: H00.2    begin H10.2 SDA1 SCL until.  begin HP SDA1 SCL 0=until.\n            L00.0 j\n\n:: HP       $20 (#)\n            \\ L11 j\n            begin SDA 0=until.\n            escape\n            HS2 j\n\n: (warm)\n:: H11      begin HS    SDA0 SCL 0=until.\n:: Hidle    begin begin SDA until. SCL until.\n            H11 j\n\n:: LP       $f0 # and $02 # ior tx\n            \\ H11 j\n            begin SDA 0=until.\n            escape\n            LS2 j\n\n: /timer3\n    $80 # EIE1 ior!             \\ Timer 3 interrupt enable\n;\n: timer3\\\n    $80 ~# EIE1 and!            \\ Timer 3 interrupt disable\n;\n\n:m timer3\n    SBUF0 (#!) clra\n    $7f # TMR3CN and!\n    RI0 if.\n        RI0 clr\n        [ sp dec ]\n        [ sp dec ]\n    then\n    [ reti ] m;\n\n: capture\n    [ IE push ]\n    [ ET2 clr ]                 \\ Timer 2 interrupt disable\n    [ ES0 clr ]                 \\ UART interrupt disable\n    \\i2chw\n\n    [ clra ]\n    [ FL1 set ] t3+\n    (warm)\n    t3- [ FL1 clr ]\n    /i2chw\n    [ IE pop ]\n    ;\n\n\\ This code all runs in register bank 1:\n\\   0   scratch for heatmap\n\\   1   log\n\\   2   \n\\   3   prev cmd\n\\   4   constant 72, for heatmap\n\\   5\n\\   6\n\\   7   caller acc save\n\\\n\\ FL0 set means this is an address byte\n\nfwd M00.0\nfwd M10.0\nfwd M10.1\nfwd M10.2\nfwd M10.3\nfwd M10.4\nfwd M10.5\nfwd M10.6\nfwd M10.7\nfwd M10.8\nfwd Mt\nfwd MP\n\n:m (l!) $f3 , m;\n\n:m (log!)\n    $f3 , a+ m;\n\n:m wrap\n    $7f # 9 and! m;\n\n:m heat\n    \\ byte is in t\n    FL0 if.\n        setc 2/'\n        0 (#!)\n        4 (#@) $f2 ,\n    then\nm;\n\n:m escape\n    7 (#@)\n    [\n    dirty set\n    PSW pop\n    reti\n    ]\nm;\n\n:: MP\n            $00 (#) (log!)\n            $01 (#) (log!)\n            wrap\n            escape\n            begin SDA 0=until.\n: (mismatch)\n:: Mt\n            begin MP    SDA1 SCL 0=until.\n            $82 # 3 #! FL0 set\n            M00.0 j\n\n:: M00.6    begin M10.6 SDA1 SCL until.  begin MP SDA1 SCL 0=until.\n:: M00.7    begin M10.7 SDA1 SCL until.  begin MP SDA1 SCL 0=until.         (l!)\n:: M00.8    begin M10.8 SDA1 SCL until.  begin MP SDA1 SCL 0=until.         heat\n            a+ 3 (#@) (l!) a+ wrap\n            $83 # 3 #! FL0 clr\n            M00.0 j\n\n:: M10.6    begin M00.6 SDA0 SCL until.  begin Mt SDA0 SCL 0=until. 1 .t set\n:: M10.7    begin M00.7 SDA0 SCL until.  begin Mt SDA0 SCL 0=until. 1+       (l!)\n:: M10.8    begin M00.8 SDA0 SCL until.  begin Mt SDA0 SCL 0=until.\n            a+ 3 (#@) $7f # and (l!) a+ wrap\n            $83 # 3 #! FL0 clr\n            M10.0 j\n\n:: MP3      MP j\n:: Mt3      Mt j\n:: M00.3    begin M10.3 SDA1 SCL until.  begin MP3 SDA1 SCL 0=until.\n:: M00.4    begin M10.4 SDA1 SCL until.  begin MP3 SDA1 SCL 0=until.\n:: M00.5    begin M10.5 SDA1 SCL until.  begin MP3 SDA1 SCL 0=until.\n            M00.6 j\n:: M10.3    begin M00.3 SDA0 SCL until.  begin Mt3 SDA0 SCL 0=until. 4 .t set\n:: M10.4    begin M00.4 SDA0 SCL until.  begin Mt3 SDA0 SCL 0=until. 3 .t set\n:: M10.5    begin M00.5 SDA0 SCL until.  begin Mt3 SDA0 SCL 0=until. 2 .t set\n            M10.6 j\n\n:: MP0      MP j\n:: Mt0      Mt j\n\n: (warm)\n:: M00.0    clra\n            begin M10.0 SDA1 SCL until.  begin MP0 SDA1 SCL 0=until.\n:: M00.1    begin M10.1 SDA1 SCL until.  begin MP0 SDA1 SCL 0=until.\n:: M00.2    begin M10.2 SDA1 SCL until.  begin MP0 SDA1 SCL 0=until.\n            M00.3 j\n:: M10.0    clra\n            begin M00.0 SDA0 SCL until.  begin Mt0 SDA0 SCL 0=until. 7 .t set\n:: M10.1    begin M00.1 SDA0 SCL until.  begin Mt0 SDA0 SCL 0=until. 6 .t set\n:: M10.2    begin M00.2 SDA0 SCL until.  begin Mt0 SDA0 SCL 0=until. 5 .t set\n            M10.3 j\n\n: /monitor\n    [ ET2 clr ]                 \\ Timer 2 interrupt disable\n    [ ES0 clr ]                 \\ UART interrupt disable\n    \\i2chw\n    t3i- t3+                    \\ Timer3 running, no intr\n\n    %00000100 # P0MASK #!\n    %00000100 # P0MAT #!        \\ SDA high\n\n    %00010000 # P1MASK #!\n    %00010000 # P1MAT #!        \\ SCL high\n\n                                \\ constants in registers\n    72 # [ 4 8 + ] #!\n    $02 # EIE1 ior!             \\ EMAT\n    ;\n\n: \\monitor\n    $02 ~# EIE1 and!            \\ EMAT off\n    [ ET2 set ]                 \\ Timer 2 interrupt enable\n    [ ES0 set ]                 \\ UART interrupt enable\n    t3i+ t3-                    \\ Timer3 stopped, intr\n    /i2chw\n    ;\n\n:m mismatch\n    [\n    PSW push\n    RS0 set\n    ]\n    7 (#!)\n    Mt j\nm;\n\nhere [\nCAPTURE-START xor 11 rshift 0<>\n[IF]\ncr .( Capture block cannot cross a 2K boundary)\nabort\n[THEN]\n]\n"
  },
  {
    "path": "firmware/font.fs",
    "content": "here constant tplan\n60 , 0 , $ff , $f , ,\" V\"\n108 , 0 , $ff , $f , ,\" mA\"\n0 ,\nhere constant font\n'.' ,  $49 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $03 , $20 , $2f , $e0 , $0c , $b0 ,\n'0' ,  $89 , $01 , $9d , $d8 , $00 , $0c , $fc , $df , $90 , $4f , $b0 , $0d , $e1 , $7f , $70 , $0b , $f4 , $9f , $70 , $0a , $f5 , $7f , $70 , $0b , $f4 , $4f , $a0 , $0d , $e1 , $0c , $fb , $cf , $90 , $01 , $ad , $d8 , $00 ,\n'1' ,  $89 , $00 , $af , $f7 , $00 , $09 , $fd , $f7 , $00 , $6f , $a7 , $f7 , $00 , $07 , $07 , $f7 , $00 , $00 , $07 , $f7 , $00 , $00 , $07 , $f7 , $00 , $00 , $07 , $f7 , $00 , $09 , $9c , $fc , $95 , $0e , $ff , $ff , $f8 ,\n'2' ,  $89 , $02 , $ae , $d8 , $00 , $1d , $fc , $ef , $90 , $3b , $70 , $3f , $e0 , $00 , $00 , $4f , $c0 , $00 , $02 , $de , $40 , $00 , $4d , $e4 , $00 , $06 , $ed , $30 , $00 , $4f , $fb , $aa , $a2 , $5f , $ff , $ff , $f3 ,\n'3' ,  $89 , $04 , $ce , $d7 , $00 , $3e , $eb , $df , $80 , $05 , $10 , $5f , $b0 , $00 , $6b , $dd , $30 , $00 , $9f , $fc , $20 , $00 , $00 , $6f , $c0 , $2a , $10 , $2f , $e0 , $8f , $eb , $df , $80 , $07 , $ce , $c7 , $00 ,\n'4' ,  $89 , $00 , $05 , $ff , $40 , $00 , $1d , $ff , $40 , $00 , $8e , $cf , $40 , $03 , $e8 , $9f , $40 , $0c , $d0 , $9f , $40 , $6f , $50 , $9f , $40 , $bf , $ff , $ff , $f7 , $69 , $99 , $cf , $a4 , $00 , $00 , $9f , $40 ,\n'5' ,  $89 , $0c , $ff , $ff , $c0 , $0d , $eb , $bb , $90 , $0e , $a0 , $00 , $00 , $0f , $aa , $eb , $20 , $1f , $fb , $df , $d0 , $02 , $20 , $0d , $f3 , $07 , $40 , $0d , $f2 , $2e , $eb , $df , $b0 , $03 , $be , $d8 , $10 ,\n'6' ,  $89 , $00 , $1a , $fc , $10 , $00 , $cf , $90 , $00 , $09 , $f8 , $00 , $00 , $1e , $da , $eb , $30 , $5f , $fb , $bf , $d0 , $7f , $a0 , $0c , $f4 , $5f , $a0 , $0c , $f3 , $0c , $eb , $bf , $b0 , $01 , $ad , $d9 , $10 ,\n'7' ,  $89 , $5f , $ff , $ff , $f2 , $5f , $ba , $ae , $f2 , $5f , $50 , $3f , $c0 , $14 , $10 , $9f , $50 , $00 , $01 , $ee , $00 , $00 , $07 , $f8 , $00 , $00 , $0d , $e2 , $00 , $00 , $5f , $a0 , $00 , $00 , $bf , $40 , $00 ,\n'8' ,  $89 , $03 , $be , $d9 , $10 , $1e , $ea , $bf , $c0 , $2f , $a0 , $0d , $e0 , $09 , $e9 , $ae , $60 , $06 , $ef , $fd , $40 , $5f , $b1 , $2d , $e2 , $7f , $80 , $0c , $f4 , $2e , $ea , $bf , $d0 , $03 , $be , $da , $20 ,\n'9' ,  $89 , $02 , $ae , $d8 , $00 , $1d , $eb , $cf , $90 , $6f , $90 , $0d , $f1 , $7f , $80 , $0d , $f3 , $3e , $ea , $bf , $f2 , $05 , $ce , $af , $d0 , $00 , $00 , $af , $50 , $00 , $1b , $f9 , $00 , $02 , $df , $80 , $00 ,\n'A' ,  $99 , $00 , $0e , $fa , $00 , $00 , $04 , $ff , $e1 , $00 , $00 , $9f , $9f , $50 , $00 , $0e , $c2 , $fb , $00 , $05 , $f7 , $0c , $e1 , $00 , $af , $ff , $ff , $60 , $1e , $eb , $bb , $fb , $06 , $f8 , $00 , $0d , $f1 , $bf , $40 , $00 , $8f , $70 ,\n'C' ,  $99 , $00 , $5b , $ec , $70 , $00 , $6f , $ec , $ef , $80 , $1e , $e2 , $01 , $c7 , $04 , $fa , $00 , $00 , $00 , $6f , $90 , $00 , $00 , $04 , $fa , $00 , $00 , $00 , $1e , $e1 , $01 , $d8 , $00 , $7f , $ec , $ef , $80 , $00 , $6c , $ec , $60 , $00 ,\n'D' ,  $99 , $1f , $ff , $eb , $50 , $01 , $fe , $cc , $ef , $60 , $1f , $d0 , $02 , $ee , $01 , $fd , $00 , $0b , $f3 , $1f , $d0 , $00 , $af , $51 , $fd , $00 , $0b , $f3 , $1f , $d0 , $01 , $ee , $11 , $fe , $bc , $ef , $60 , $1f , $ff , $eb , $50 , $01 ,\n'M' ,  $a9 , $1f , $f5 , $00 , $0a , $fa , $1f , $fc , $00 , $3f , $fa , $1f , $ff , $60 , $bf , $fa , $1f , $dd , $d5 , $fb , $fa , $1f , $c6 , $fe , $e4 , $fa , $1f , $c0 , $cf , $63 , $fa , $1f , $c0 , $4d , $03 , $fa , $1f , $c0 , $02 , $03 , $fa , $1f , $c0 , $00 , $03 , $fa ,\n'S' ,  $89 , $02 , $ad , $da , $20 , $0d , $fd , $df , $e1 , $4f , $b0 , $04 , $30 , $2e , $e8 , $51 , $00 , $05 , $df , $ff , $80 , $00 , $02 , $5d , $f4 , $08 , $30 , $0a , $f5 , $5f , $fd , $df , $d1 , $04 , $be , $da , $20 ,\n'V' ,  $99 , $cf , $30 , $00 , $de , $17 , $f8 , $00 , $3f , $b0 , $2f , $d0 , $08 , $f6 , $00 , $cf , $20 , $de , $10 , $06 , $f7 , $2f , $b0 , $00 , $1f , $b6 , $f6 , $00 , $00 , $be , $ce , $10 , $00 , $06 , $ff , $a0 , $00 , $00 , $1e , $f5 , $00 , $0c ,\n'm' ,  $b9 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $00 , $2f , $ba , $ea , $1a , $ea , $12 , $ff , $bd , $fe , $bd , $f8 , $2f , $c0 , $3f , $c0 , $3f , $b2 , $fb , $02 , $fb , $02 , $fc , $2f , $b0 , $2f , $b0 , $2f , $c2 , $fb , $02 , $fb , $02 , $fc , $2f , $b0 , $2f , $b0 , $2f , $c0 ,\n\nhere constant micro\n$4f , $ff , $4f , $00 , $0f , $f0 , $00 , $f4 , $ff , $f4 ,\n$00 , $00 , $0f , $ff , $ff , $f0 , $00 , $00 , $00 , $00 ,\n$4f , $40 , $ff , $0f , $0f , $f0 , $f0 , $ff , $04 , $ff ,\n$4f , $4f , $4f , $0f , $0f , $f0 , $f0 , $ff , $04 , $0f ,\n$ff , $ff , $f0 , $0f , $00 , $00 , $f0 , $0f , $ff , $00 ,\n$f0 , $4f , $4f , $0f , $0f , $f0 , $f0 , $ff , $ff , $0f ,\n$40 , $4f , $4f , $0f , $0f , $f0 , $f0 , $f4 , $ff , $f4 ,\n$ff , $00 , $0f , $0f , $00 , $f0 , $0f , $ff , $00 , $00 ,\n$4f , $4f , $4f , $0f , $0f , $f0 , $f0 , $f4 , $f4 , $f4 ,\n$4f , $ff , $4f , $0f , $0f , $f0 , $f0 , $f4 , $f4 , $04 ,\n$4f , $ff , $ff , $0f , $00 , $f0 , $f0 , $04 , $ff , $ff ,\n$4f , $4f , $4f , $0f , $0f , $f0 , $f0 , $ff , $ff , $ff ,\n$4f , $0f , $4f , $00 , $0f , $f0 , $00 , $f4 , $ff , $f4 ,\n$4f , $ff , $4f , $00 , $0f , $f0 , $00 , $ff , $ff , $ff ,\n$00 , $00 , $0f , $0f , $0f , $f0 , $f0 , $ff , $ff , $ff ,\n$00 , $00 , $0f , $0f , $00 , $f0 , $f0 , $0f , $ff , $ff ,\nhere constant symbol-s \n$bc , $00 , $17 , $ce , $d8 , $20 , $00 , $2b , $ff , $ff , $fc , $30 , $0a , $ff , $ff , $ff , $fb , $15 , $fd , $0f , $d0 , $0d , $f6 , $af , $00 , $f0 , $00 , $0f , $cc , $f0 , $ff , $0f , $f0 , $fe , $cf , $0f , $f0 , $ff , $0f , $e9 , $f0 , $00 , $0f , $00 , $fb , $4e , $d0 , $0d , $f0 , $df , $60 , $9f , $ff , $ff , $ff , $a1 , $01 , $9f , $ff , $ff , $b2 , $00 , $00 , $5b , $db , $61 , $00 ,\nhere constant symbol-p \n$bc , $00 , $17 , $ce , $d8 , $20 , $00 , $2b , $ff , $ff , $fc , $30 , $0a , $ff , $ff , $ff , $fb , $15 , $fd , $00 , $df , $ff , $f6 , $af , $00 , $00 , $ff , $ff , $cc , $f0 , $ff , $0f , $ff , $fe , $cf , $0f , $f0 , $ff , $ff , $e9 , $f0 , $00 , $00 , $00 , $fb , $4e , $00 , $00 , $00 , $0f , $60 , $9f , $ff , $ff , $ff , $a1 , $01 , $9f , $ff , $ff , $b2 , $00 , $00 , $5b , $db , $61 , $00 ,\nhere constant symbol-b \n$bc , $00 , $17 , $ce , $d8 , $20 , $00 , $2b , $ff , $ff , $fc , $30 , $0a , $ff , $ff , $ff , $fb , $15 , $ff , $ff , $ff , $ff , $f6 , $af , $ff , $ff , $ff , $ff , $cc , $f0 , $00 , $00 , $f0 , $fe , $cf , $00 , $00 , $0f , $0f , $e9 , $ff , $ff , $ff , $ff , $fb , $4e , $ff , $ff , $ff , $ff , $60 , $9f , $ff , $ff , $ff , $a1 , $01 , $9f , $ff , $ff , $b2 , $00 , $00 , $5b , $db , $61 , $00 ,\nhere constant arrow \n$35 , $08 , $03 , $b3 , $8f , $8b , $fb , $ef , $e0 ,\nhere constant larrow \n$35 , $ef , $eb , $fb , $8f , $83 , $b3 , $08 , $0e ,\nhere constant dot \n$44 , $4c , $d5 , $bf , $fd , $bf , $fc , $3b , $b4 ,\nhere constant label-sda \n$810 , $f0 , $00 , $00 , $00 , $f0 , $00 , $00 , $00 , $f0 , $4f , $ff , $f0 , $f0 , $f0 , $f0 , $00 , $f0 , $f0 , $f0 , $00 , $f0 , $4f , $ff , $f0 , $f0 , $00 , $00 , $00 , $f0 , $4f , $ff , $40 , $f0 , $f0 , $00 , $f0 , $f0 , $f0 , $00 , $f0 , $f0 , $ff , $ff , $f0 , $f0 , $00 , $00 , $00 , $f0 , $f0 , $4f , $40 , $f0 , $f0 , $f0 , $f0 , $f0 , $f0 , $f0 , $f0 , $f0 , $4f , $40 , $f0 ,\nhere constant label-scl \n$810 , $f0 , $00 , $00 , $00 , $f0 , $00 , $00 , $00 , $f0 , $00 , $00 , $00 , $f0 , $00 , $00 , $f0 , $f0 , $00 , $00 , $f0 , $f0 , $ff , $ff , $f0 , $f0 , $00 , $00 , $00 , $f0 , $4f , $0f , $40 , $f0 , $f0 , $00 , $f0 , $f0 , $f0 , $00 , $f0 , $f0 , $4f , $ff , $40 , $f0 , $00 , $00 , $00 , $f0 , $f0 , $4f , $40 , $f0 , $f0 , $f0 , $f0 , $f0 , $f0 , $f0 , $f0 , $f0 , $4f , $40 , $f0 ,\n\nHERE constant grad\n$00 , $7 ,\n$10 , $8 ,\n$10 , $8 ,\n$20 , $8 ,\n$20 , $8 ,\n$30 , $8 ,\n$30 , $9 ,\n$30 , $9 ,\n$40 , $9 ,\n$40 , $9 ,\n$40 , $9 ,\n$50 , $9 ,\n$50 , $9 ,\n$50 , $9 ,\n$60 , $9 ,\n$60 , $9 ,\n$60 , $9 ,\n$70 , $9 ,\n$70 , $9 ,\n$70 , $9 ,\n$70 , $9 ,\n$80 , $9 ,\n$80 , $9 ,\n$81 , $9 ,\n$91 , $9 ,\n$91 , $9 ,\n$91 , $8 ,\n$92 , $8 ,\n$a2 , $8 ,\n$a2 , $8 ,\n$a2 , $8 ,\n$a2 , $8 ,\n$b3 , $7 ,\n$b3 , $7 ,\n$b3 , $7 ,\n$b3 , $7 ,\n$b4 , $7 ,\n$c4 , $6 ,\n$c4 , $6 ,\n$c4 , $6 ,\n$c5 , $6 ,\n$c5 , $6 ,\n$d5 , $5 ,\n$d5 , $5 ,\n$d6 , $5 ,\n$d6 , $5 ,\n$d6 , $5 ,\n$d6 , $5 ,\n$d7 , $4 ,\n$e7 , $4 ,\n$e7 , $4 ,\n$e7 , $4 ,\n$e8 , $4 ,\n$e8 , $3 ,\n$e8 , $3 ,\n$e9 , $3 ,\n$e9 , $3 ,\n$e9 , $3 ,\n$e9 , $3 ,\n$ea , $2 ,\n$ea , $2 ,\n$ea , $2 ,\n$eb , $2 ,\n$eb , $2 ,\n$eb , $2 ,\n$ec , $2 ,\n$ec , $2 ,\n$ec , $2 ,\n$ed , $2 ,\n$ed , $2 ,\n$ed , $2 ,\n$ee , $2 ,\n"
  },
  {
    "path": "firmware/fontsize.fs",
    "content": "&1385 constant FONTDATA_SIZE\n"
  },
  {
    "path": "firmware/main.fs",
    "content": "24500000 constant SYSCLK\n\n0 constant CLOSEUP\n\n\\ P0.0  SDA 2K2\n\\ P0.1  SDA 4K3\n\\ P0.2  SDA\n\\ P0.3  SDA 4K7\n\\ P0.4  RX\n\\ P0.5  TX\n\\ P0.6  A.V\n\\ P0.7  A.C\n\n\\ P1.0  RS/DC\n\\ P1.1  DATA\n\\ P1.2  CLOCK\n\\ P1.3  RESET\n\\ P1.4  SCL\n\\ P1.5  SCL 2K2\n\\ P1.6  SCL 4K3\n\n\\ P2.0  SCL 4K7\n\n0 [if]\nThere are 3 threads:\n\n         1000Hz tick. Increments the BCD milliscond timer.\n         Timer 2 interrupt.\n\n         UART/SPI service. Runs the transport.\n         UART and SPI interrupts.\n         [DPTR, R0]\n\n         graphics. renders the main image.\n         Main thread.\n         [DPTR, R0-7]\n         ADC drive. Runs ADC conversions, stores results in adc-.\n         ADC end of conversion interrupt.\n\n[then]\n[ : ,\" '\"' parse dup ] , [\n    bounds do\n        i c@ ] , [\n    loop\n;\n]\n\n:m t3+  %00000100 # TMR3CN #! m;    \\ Timer 3 enable\n:m t3-  %00000000 # TMR3CN #! m;    \\ Timer 3 enable\n:m t3i+ $80 # EIE1 ior! m;  \\ Timer 3 interrupt enable\n:m t3i- $80 ~# EIE1 and! m; \\ Timer 3 interrupt disable\n\n$0090 org\n: 2dup  |over\n: over  |over ;\n: tuck  swap over ;\n:m p>r  [ dpl push dph push ] m;\n: r>p   [ dph pop  dpl pop ] ;  \\ MUST be followed by ;\n: @p    |@p ;\n: @p+   |@p+ ;\n: *     |* ;\n: um*   |um* ;\n:m #+! [ dup add ] #! m;\n: dnegate\n    swap invert swap invert\n: d1+ \n    swap 1 # + swap 0 # +' ;\n: d+\tpush swap push + pop pop +' ;\n:m d2/  clrc 2/' swap 2/' swap m;\n: - negate + ;\n\n: twist ( a b c d -- a c b d )\n    push swap pop ;\n\n:m /uart\n    REN0 set                    \\ Receive enable\n\n    TR1 set\n    $20 # TMOD #!\n    $18 # CKCON #!              \\ Use system clock (T1,T2)\n    [ SYSCLK 2/ 1000000 / negate ] #\n    TH1 #!                      \\ speed\n    ES0 set\nm;\n\n[ : array create , does> @ + ; ]\n\n$10 cpuORG\n\n$09 constant log                    \\ logging ring pointer\n\ncpuHERE constant tempr 2 cpuALLOT   \\ temperature ADC\ncpuHERE constant currr 2 cpuALLOT   \\ current ADC\ncpuHERE constant currd 2 cpuALLOT   \\             decimal\ncpuHERE constant slowc 1 cpuALLOT   \\ slow refresh counter\ncpuHERE constant charc 1 cpuALLOT   \\ character counter\ncpuHERE constant convs 1 cpuALLOT   \\ converter state (2 bit)\ncpuHERE constant other 1 cpuALLOT   \\ context SP save\ncpuHERE    array clock 6 cpuALLOT\n\ncpuHERE $20 <> throw\n\ncpuHERE constant flags  1 cpuALLOT          $00 constant dirty\n                                            $01 constant prev.\n                                            $02 constant talked.\n                                            $03 constant ptalked.\n                                            $04 constant fade.\n                                            $05 constant risen.\n                                            $06 constant modechange.\n                                            $07 constant timeout\ncpuHERE constant ftemp  1 cpuALLOT          $08 constant f.0\n                                            $09 constant f.1\n                                            $0a constant f.2\n                                            $0b constant f.3\n                                            $0c constant f.4\n                                            $0d constant f.5\n                                            $0e constant f.6\n                                            $0f constant f.7\ncpuHERE constant flags2 1 cpuALLOT          $10 constant weighing\n\ncpuHERE constant mode   1 cpuALLOT\ncpuHERE constant tempd  2 cpuALLOT          \\             decimal\ncpuHERE constant vbusr  2 cpuALLOT          \\ voltage ADC\ncpuHERE constant vbusd  2 cpuALLOT          \\             decimal\n\ncpuHERE constant talk0  1 cpuALLOT\ncpuHERE constant talk1  1 cpuALLOT\ncpuHERE constant talker 1 cpuALLOT\ncpuHERE constant ptalker 1 cpuALLOT\ncpuHERE constant slashx 1 cpuALLOT\ncpuHERE constant story  16 cpuALLOT\ncpuHERE constant guard  2  cpuALLOT\n\n[\ncpuHERE constant red 1 cpuALLOT\ncpuHERE constant grn 1 cpuALLOT\ncpuHERE constant blu 1 cpuALLOT\n]\n3 constant x                        \\ graphics x coordinate\n4 constant y                        \\ graphics y coordinate\ncpuHERE constant i2cb 64 cpuALLOT\n\ncr .( RAM used ) cpuHERE . .( bytes )\n\n: swapctx [\n    0 push\n    1 push\n    t push\n    psw push\n    dph push\n    dpl push\n    ]\n    SP (#@)\n    [ other xch ]\n    SP (#!)\n    [\n    dpl pop\n    dph pop\n    psw pop\n    t pop\n    1 pop\n    0 pop\n    ]\n    ;\n\n: 0#    dup [ clra ] ;\n: key   begin TI0 clr RI0 0=while. swapctx repeat RI0 clr SBUF0 #@ ;        \\ XXX compare with spidriver\n: emit  SBUF0 (#!) begin swapctx RI0 clr TI0 until. TI0 clr [ charc dec ]\n: _drop drop ;\n\n:m drop; _drop ; m;\n\n: umax\n    clrc $96 , $26 ,    \\ C set if u>t\n    if' drop; then nip ;\n: umin\n    clrc $96 , $26 ,    \\ C set if u>t\n    0=if' drop; then nip ;\n\n: depth S #@ invert ;\n0 [if]\ninclude debug.fs\n[then]\n: 1ms\n    1 #\n: ms\n    slowc (#!)\n    begin slowc (#@) 0=until drop;\n\n: 5µs\n\t5 #\n: µs\n    1 #for\n        nop nop nop nop\n        nop nop nop nop\n    1 #next\n    ;\n\n\\ ---------------------------------------- DECIMAL\n5 constant d.l          \\ decimal accumulator\n6 constant d.h\n\n: decimal ( u. -- d. )   \\ d is the BCD of u\n    0 # d.l #!\n    0 # d.h #!\n    16 # 7 #for\n        swap 2*' swap 2*'\n        d.l #@ [ d.l addc da ] d.l #!\n        d.h #@ [ d.h addc da ] d.h #!\n    7 #next\n    2drop d.l #@ d.h #@ ;\n\n: 10trunc\n    swap $f0 # and swap ;\n: 5trunc\n    swap\n    dup $f # and 5 # <if\n        0#\n    else\n        5 #\n    then\n    push xor pop + swap ;\n\n: fold  ( d. -- )           \\ Add d to [4 5 6]\n        swap\n        5 #+!\n        [ 6 addc ] 6 #!\n        if' [ 7 inc ] then ;\n\n: (uq*)  ( a. b. -- q.. )\n                            \\ 4     5    6    7\n        4 #2!               \\ bl    bh\n        7 #!                \\                 ah\n        6 (#!)              \\            al\n\n             5 #@ um*       \\ m16 = 5 * 6\n        4 #@ 7 #@ um*       \\ m16 = 4 * 7\n\n        5 #@ 7 #@ um*       \\ hi16\n        4 #@ 6 #@ um*       \\ lo16\n\n                            \\ 4     5    6    7\n                            \\ LSB           MSB\n        5 #! 4 #! 7 #! 6 #!\n        fold fold ;\n\n: uq*   (uq*) 4 #2@\n: 67@   6 #2@ ;\n: h*    (uq*) 67@ ;\n\n\\ ---------------------------------------- Analog thread\n:m /adc\n    AD0EN set\n    BURSTEN set\n    5 # ADC0AC #!               \\ accumulate 64 samples\n    0 # ADC0CN1 #!              \\ common mode buffer disabled\n    %00011100 # REF0CN #!       \\ temp sensor on, 1.65 V ref\n    $40 # ADC0PWR #!\n    \\ $BF # ADC0TK #!\n    m;\n\n:m 1.65v %11111001 # ADC0CF #! m; \\ PGA gain is 1\n:m 3.3v  %11111000 # ADC0CF #! m; \\ PGA gain is 0.5\n:m startconv\n    AD0BUSY set m;\n\n:m 2move [ over 1+ over 1+ mov mov ] m;\n\n\\ Exponential Moving Average, alpha is 1/8\n\n: alpha d2/ d2/ d2/ ;\n\n: ema ( addr -- )\n    (a!) (@+) @\n    2dup alpha dnegate d+\n    ADC0L #2@ alpha d+\n    !- !\n    ;\n\n: converter ( u - u )\n    weighing if.\n        weighing clr\n        $ff (#) ;\n    then\n    -if ; then\n\n    0 # =if\n        currr # ema\n        %10000 # ADC0MX #!          \\ mux temperature\n        1.65v startconv 1+ ; then\n    1 # =if\n        tempr # ema\n        %00110 # ADC0MX #!          \\ mux P0.6\n        3.3v startconv 1+ ; then\n    vbusr # ema\n: /converter\n    %00111 # ADC0MX #!          \\ mux P0.7\n    startconv [ clra ] ;\n\n[\n: converts ( val adc ) $10000 swap */ constant ;\n]\n\n\\ include cal-b3.fs\n\\ include cal-DO00N2O5.fs\n\\ include cal-DO00N1GI.fs\ninclude cal.fs\n\n: conversions\n    vbusr #2@ voltage ## h*\n    decimal vbusd #2!\n    tempr #2@ kel ## h* celsius ## d+\n    decimal tempd #2!\n    currr #2@\n    0current [ 1 max negate ] ## d+ 0=if' 2drop 0 ## then\n    current ## h*\n    decimal 5trunc currd #2!\n;\n\n\\ ---------------------------------------- I2C\n\n2 .p0 constant SDA\n4 .p1 constant SCL\n\n[ 256 SYSCLK 100000 3 * / - ] constant I2C_100\n[ 256 SYSCLK 400000 3 * / - ] constant I2C_400\n\n:m /i2chw %11011000 # SMB0CF #! m; \\ Enable, no slave, use T0, EXTHOLD, SCL timeouts\n:m \\i2chw %00000000 # SMB0CF #! m;\n\n: /i2c\n    $04 # CKCON ior!        \\ T0 use system clock\n    $02 # TMOD ior!         \\ T0 in 8-bit auto-reload\n\n    /i2chw\n    $01 # SMB0ADM #!        \\ EHACK=1\n    $04 # XBR0 ior!\n: 100Khz\n    I2C_100 # TH0 #!\n    TR0 set ;\n: 400Khz\n    I2C_400 # TH0 #!\n    TR0 set ;\n\n:m (>crc) CRC0IN (#!) m;\n\n: hdigit\n    dup\n: (hdigit)\n    [swap]\n: digit\n    $f # and\n    -10 # + -if -39 # + then 97 # + emit ;\n: dd     hdigit digit ;\n\n: >i2c\n    MASTER 0=if. drop; then\n    (>crc)\n    SMB0DAT #!\n: i2c\n    [ SI clr ]\n: (i2c)\n    [ timeout clr ]\n: i2c-wait\n    $01 # EIE1 ior!             \\ ESMB0 \n    t3+\n    begin swapctx SI until.\n    t3-\n    $01 ~# EIE1 and!            \\ ESMB0 \n    ;\n: i2c-start\n    [ STA set ]\n    i2c\n    [ STA clr ] ;\n: i2c-stop\n    [ STO set SI clr ] ;\n: i2c>\n    MASTER 0=if. $ff # ; then\n\ti2c SMB0DAT #@ (>crc) ;\n\n: i2c-leave\n    SMB0CF #@\n    7 .t 0=if. drop; then       \\ already turned off\n    5 .t if.  i2c-stop 10 # µs then\n    \\i2chw\n    $04 ~# XBR0 and! drop;\n\n: setport ( u )     \\ SCL SCL_DIR SDA SDA_DIR\n\n    P0MDOUT ftemp mov\n    2/' f.2 movcb\n    ftemp P0MDOUT mov\n    2/' P0.2 movcb\n    P1MDOUT ftemp mov\n    2/' f.4 movcb\n    ftemp P1MDOUT mov\n    2/' P1.4 movcb ;\n\n: i2c-restore\n    %1010 # setport drop\n    /i2chw\n    $04 # XBR0 ior! ;\n\n: i2c-reset\n    i2c-leave\n\t[ SDA set SCL clr ]\n\t10 # 2 #for\n\t\t[ SCL set ] 5µs\n\t\t[ SCL clr ] 5µs\n\t2 #next\n\t\\ a STOP signal (SDA from low to high while CLK is high)\n\t[ SDA clr ] 5µs\n\t[ SCL set ] 2 # µs\n\t[ SDA set ] 2 # µs\n    i2c-restore\n    STO clr ;\n\n: bitbang\n    i2c-leave\n    begin\n        key\n        '@' # =if drop; then\n        setport\n        \n        2/' if'\n            0#\n            P1.4 movbc 2*'\n            P0.2 movbc 2*'\n            emit\n        then\n        drop\n    again\n\n: doconv\n    startconv\n    begin AD0INT until. AD0INT clr ;\n: measure ( - )    \\\n    doconv\n    ADC0H #@ emit ;\n\n: startweigh ( u )\n    weighing set\n    i2c-leave\n    [ SCL set SDA set ]\n    %00000100 ~# P0MDIN and!\n    %00010000 ~# P1MDIN and!\n: pulldir ( u ) [ \\ Set pullup/down direction (1=up, 0=down)\n    2/' P0.0 movcb\n    2/' P0.1 movcb\n    2/' P0.3 movcb\n    2/' P1.5 movcb\n    2/' P1.6 movcb\n    2/' P2.0 movcb\n    ] drop;\n\n: weigh\n    0# [ weighing movbc ] 2*'          \\ 1=pending, 0=ready\n    dup emit\n    0=if\n        0# µs\n\n        3.3v\n        %0010 # ADC0MX #! measure\n        %1100 # ADC0MX #! measure\n\n        %00000100 # P0MDIN ior!\n        %00010000 # P1MDIN ior!\n\n        dup /converter convs #!\n        %111111 # pulldir\n        i2c-restore\n    then drop;\n\n\\ ---------------------------------------- timer service\n\n: timer2\n    [ psw push t push ]\n    [\n    slowc dec\n    setc\n    clra 0 clock dup addc da (#!)\n    clra 1 clock dup addc da (#!)\n    clra 2 clock dup addc da (#!)\n    clra 3 clock dup addc da (#!)\n    clra 4 clock dup addc da (#!)\n    clra 5 clock dup addc da (#!)\n    ] [ t pop psw pop ] ;\n\n: timer3a\n    \\i2chw\n    timeout set\n    SI set\n    /i2chw\n    [ reti ]\n\n\n\\ ---------------------------------------- CRC16\n:m /crc\n    %1100 # CRC0CN0 #!\n    m;\n\n:m crc16\n    CRC0DAT #@\n    CRC0DAT #@ m;\n\n\\ ---------------------------------------- pullups\n\n\\ P0.0  SDA 2K2\n\\ P0.1  SDA 4K3\n\\ P0.2  SDA\n\\ P0.3  SDA 4K7\n\n\\ P1.4  SCL\n\\ P1.5  SCL 2K2\n\\ P1.6  SCL 4K3\n\n\\ P2.0  SCL 4K7\n\n: SDA_2k2   %00000001 # P0MDOUT ior! ;\n: SDA_4k3   %00000010 # P0MDOUT ior! ;\n: SDA_4k7   %00001000 # P0MDOUT ior! ;\n\n: SCL_2k2   %00100000 # P1MDOUT ior! ;\n: SCL_4k3   %01000000 # P1MDOUT ior! ;\n: SCL_4k7   %00000001 # P2MDOUT ior! ;\n\n\\   5       4       3       2       1       0\n\\   SCL_4k7 SCL_4k3 SCL_2k2 SDA_4k7 SDA_4k3 SDA_2k2\n: pull@ ( - u )\n    0# [\n    P2MDOUT ftemp mov\n    f.0 movbc 2*'\n    P1MDOUT ftemp mov\n    f.6 movbc 2*'\n    f.5 movbc 2*'\n    P0MDOUT ftemp mov\n    f.3 movbc 2*'\n    f.1 movbc 2*'\n    f.0 movbc 2*' ] ;\n: pull! ( u ) [\n    P0MDOUT ftemp mov\n    2/' f.0 movcb\n    2/' f.1 movcb\n    2/' f.3 movcb\n    ftemp P0MDOUT mov\n    P1MDOUT ftemp mov\n    2/' f.5 movcb\n    2/' f.6 movcb\n    ftemp P1MDOUT mov\n    P2MDOUT ftemp mov\n    2/' f.0 movcb\n    ftemp P2MDOUT mov\n    ] drop;\n\n: release\n    %00001011 ~# P0MDOUT and!\n    %01100000 ~# P1MDOUT and!\n    %00000001 ~# P2MDOUT and!\n;\n: weak\n    release\n    %00001000 # P0MDOUT ior!\n    %00000001 # P2MDOUT ior!\n    ;\n    \nhere constant \"devname ,\" i2cdriver1\"\n\n: heatmap ( u - ) \\ heatmap address in x\n    $80 # + dpl #! ;\n\n: ishot ( u )\n    heatmap 72 # !x ;\n\n: snap\n    [ log dpl mov ]\n    story # a!\n    dup\n    16 # 7 #for\n        [ dpl dec ]\n        $7f # dpl and!\n        (@x)\n        (!+)\n    7 #next\n    drop;\n\n: type\n    @p+ 2 #for @p+ emit 2 #next ;\n\n: hdigit\n    dup\n: (hdigit)\n    [swap]\n: digit\n    $f # and\n    -10 # + -if -39 # + then 97 # + emit ;\n: dd     hdigit digit ;\n: dh.    dd\n: h.     dd\n: space\n    32 # emit ;\n: point\n    '.' # emit ;\n: d.d\n    hdigit point digit ;\n\n: .'   \\ print carry\n    [ '0' 2/ ] # 2*'\n: emit_\n    emit space ;\n\n: i2c-speed\n    TH0 #@\n    I2C_400 # =if 4 (#) ; then\n    1 (#) ;\n\n: modechar\n    'I' #\n    SMB0CF ftemp mov\n    f.7 if. ; then\n    'B' (#) ;\n\n: bracket\n    79 # charc #!\n    '[' # emit ;\n: info\n    bracket\n    \"devname ##p! type space\n    \"serial  ##p! type space\n\n    5 clock #@ dd\n    4 clock #@ dd\n    3 clock #@ dd\n    2 clock #@ dd\n    1 clock #@ (hdigit)\n    space\n\n    vbusd #2@ d.d dd space\n    currd #2@ digit dd space\n    tempd #2@ digit d.d space\n\n    modechar emit_\n\n    [ SDA movbc ] .'\n    [ SCL movbc ] .'\n\n    i2c-speed digit $00 # dd space\n\n    pull@ dd space\n\n    crc16 dd dd\n: pad\n    charc #@ begin\n        space 1-\n    0=until\n    drop\n    ']' # emit\n    ;\n\n: introspect\n    bracket\n\n    $93 # h.\n    0 #@ h.\n    SP #@ h.\n    SMB0CF #@ h.\n    SMB0CN #@ h.\n    TMR2L #2@ dh.\n    TMR3L #2@ dh.\n    IE #@ h.\n    EIE1 #@ h.\n\n    P0 #@ h.  P0MDIN #@ h.  P0MDOUT #@ h.\n    P1 #@ h.  P1MDIN #@ h.  P1MDOUT #@ h.\n    P2 #@ h.                P2MDOUT #@ h.\n\n    convs #@ h.\n\n    pad ;\n\n\\ Commands are:\n\\   e       echo next byte\n\\   s       select\n\\   u       unselect\n\\   80-bf   read 1-64 bytes\n\\   c0-ff   write 1-64 bytes\n\n: count ( u -- u)\n    63 # and 1+ ;\n\nCLOSEUP [IF]\n:m acmd                     \\ Copy ACK into T.7 for a command byte\n    [ 7 .t set ] m;\n[ELSE]\n:m acmd                     \\ Copy ACK into T.7 for a command byte\n    [ ACK movbc 7 .t movcb ] m;\n[THEN]\n\n: b>log ( arg - arg )\n    3 # acmd over \n: >log ( cmd arg )\n    [ dirty set ]\n    [ log dpl mov   ]\n    !x+ !x+\n    $7f # dpl and!\n    [ dpl log mov   ]\n    ;\n\n: alert ( u )\n    [ timeout set ]\n    drop 4 # 0 # >log ;\n\n: rdN ( n -- )\n    [ ACK set ]\n    2 #for\n        [ $b8 2 + ] , [ 1 cond ]    \\ Clear ACK on final byte when R2 is 1\n            [ ACK clr ]\n        then\n        i2c>\n        (>crc) b>log emit\n    2 #next ;\n\n: rdNA ( n -- ) \\ don't NACK final byte\n    [ ACK set ]\n    2 #for\n        i2c> b>log emit\n    2 #next ;\n\n: report\n    [ '0' 2/ 2/ 2/ ] #\n    [ ARBLOST movbc ] 2*'\n    [ timeout movbc ] 2*'\n    [ ACK movbc ] 2*' emit ;\n\n: flame ( u - u )\n    dup clrc 2/' ishot ;\n\n: do-start\n    key\n: log-start ( u )\n    SDA 0=if. alert ; then\n    i2c-start\n    dup >i2c\n    timeout if. alert ; then\n    ACK if.\n        flame\n    then\n    2 # acmd\n    swap >log ;\n\n: log-stop\n    1 # 0# >log i2c-stop ;\n\n: i2c-regrd \\ expect (dev, reg, len)\n    key 2* key key push     ( dev reg   R: len )\n    over log-start          \\ S/W\n    b>log >i2c              \\ reg\n    1+ log-start            \\ S/R\n    pop rdN\n    log-stop ;\n\n: dmode\n    'D' #\n: newmode\n    mode #! modechange. set ;\n\nhere constant WIP\n: device-scan\n    8 #\n    112 # 2 #for\n        i2c-start dup 2* >i2c\n        ACK if. dup ishot then\n        report\n        i2c-stop\n        1+\n    2 #next drop ;\n\n: service\n    key\n    -if\n        6 .t if.\n            count dup\n            i2cb # a!  2 #for\n                key\n                b>log\n                !+\n            2 #next\n            i2cb # a!  2 #for\n                @+ >i2c\n            2 #next\n            report\n            ;\n        then\n        count rdN ;\n    then\n    '?' # =if  info     then\n    '1' # =if  100Khz then\n    '4' # =if  400Khz then\n    'a' # =if  key rdNA then\n    'b' # =if  bitbang then\n    'c' # =if  'C' # newmode then\n    'd' # =if  device-scan then\n    'e' # =if  key emit then\n    'f' # =if  fade. set 'X' # emit then\n    '_' # =if  $10 # RSTSRC #! then\n    'i' # =if  i2c-restore then\n    'm' # =if  'M' # newmode then\n    'p' # =if  log-stop then\n    'r' # =if  i2c-regrd then\n    's' # =if  do-start report then\n    'u' # =if  key pull! then\n    'v' # =if  key startweigh then\n    'w' # =if  weigh then\n    'x' # =if\n        i2c-reset\n        [ '0' 2/ 2/ ] #\n        [ SDA movbc ] 2*'\n        [ SCL movbc ] 2*'\n        emit\n        then\n    'J' # =if  introspect then\n    drop ;\n\n: thread2\n    0 # 2 #for\n        0# !x+\n    2 #next\n    \\ '@' # emit\n    begin\n        service\n    again ;\n\nhere constant _cap\n[ : fwd 0 constant ; ]\ninclude capture.fs\n_cap org\n[ : fwd bl word find 0= throw execute 0= throw ; ]\ninclude capture.fs\n\n0 constant Y_V\n29 constant X_V\n80 constant X_MA\n\ninclude st7735.fs\n\n: hdigit dup [swap]\n: digit $f # and '0' # + ch ;\n: dd     hdigit digit ;\n: d3 ( d. )                         \\ 3-digit space padded\n    if digit dd ; then              \\ ###\n    drop blch\n    10 # <if blch digit ; then      \\ __#\n    dd ;                            \\ _##\n: results\n    white\n    X_V  # Y_V # xy! vbusd #2@ hdigit '.' # ch digit hdigit drop\n    X_MA # Y_V # xy! currd #2@ d3 ;\n\n\ncpuHERE $80 max constant STACKS\n\n: go\n    $de # WDTCN #!\n    $ad # WDTCN #!\n\n    $01 # XBR0 #!\n    $00 # XBR1 #!\n    $c0 # XBR2 #!\n\n    $00 # CLKSEL #!\n\n    \\ Clear RAM\n    $08 # a!\n    [ $100 $08 - ] # 7 #for 0 # !+ 7 #next\n\n    $c0 SP! STACKS RP!\n    [ ' thread2 >body @ ] ##p!\n    [\n    dpl push\n    dph push\n    0 push\n    ]\n    [ STACKS 8 + ] # other #!\n\n    $100 SP! $c0 RP!\n\n    %11001011 # P0SKIP #!       \\ TX,RX,SDA\n    %00010000 # P0MDOUT #!      \\ \n    %00111111 # P0MDIN #!       \\ analog P0.6 P0.7\n\n    %11101111 # P1SKIP #!       \\ SCL\n    %00001111 # P1MDOUT #!\n    /uart\n    /adc\n    /crc\n\n    [ ticks/ms negate          ] # TMR2RLL #!\n    [ ticks/ms negate 8 rshift ] # TMR2RLH #!\n\n    dmode\n\n    [ ET2 set ]                 \\ Timer 2 interrupt enable\n    [ TR2 set ]                 \\ Timer 2 enable\n    [ EA set ]\n    t3i+\n\n    release\n    weak\n    \\ SDA_2k2\n    \\ SDA_4k3\n    \\ SDA_4k7\n\n    \\ SCL_2k2\n    \\ SCL_4k3\n    \\ SCL_4k7\n\n    /i2c 100Khz\n\n    [ dirty set ]\n    swapctx\n\n    /st7735 fixed\n    25 # slowc #!\n\n    /converter\n\n    begin\n        conversions\n\n        dirty if.\n            snap\n            [ dirty clr ]\n            waves\n        then\n        AD0INT if.\n            AD0INT clr\n            convs #@ converter convs #!\n        then\n        modechange. if.\n            [ modechange. clr ]\n            drawmode\n            mode #@\n            'C' # =if\n                capture\n                dmode\n            then\n            'M' # =if\n                /monitor\n            then\n            drop\n        then\n\n        mode #@\n        'M' # =if\n            TMR3CN #@ -if\n                $7f # TMR3CN and!\n                cool\n            then drop\n            RI0 if.\n                RI0 clr\n                \\monitor\n                dmode\n            then\n        then\n        drop\n\n        slowc #@                \\ 4 Hz\n        0=if\n            results\n        then\nCLOSEUP [IF]\n        fade. if.\n            cool [ fade. clr ]\n        then\n[ELSE]\n        $1f # and 0=if          \\ 32 Hz\n            cool\n        then\n[THEN]\n        drop\n    again\nhere\n\n\\ Reset\n$000 org go ;\n\n\\ UART interrupt\n$023 org\n    swapctx [ reti ]\n\n\\ Timer 2 overflow\n$02b org [\n    ] timer2 [\n    TF2H clr\n    reti\n]\n\n\\ I2C\n$03b org\n    swapctx [ reti ]\n\n\\ Port mismatch\n$043 org\n    mismatch\n\n\\ Timer 3 overflow\n$073 org\n    FL1 if. timer3 then\n    timer3a ;\n\norg\n"
  },
  {
    "path": "firmware/st7735.fs",
    "content": "$00 constant NOP      $2B constant RASET    $C2 constant PWCTR3\n$01 constant SWRESET  $2C constant RAMWR    $C3 constant PWCTR4\n$04 constant RDDID    $2E constant RAMRD    $C4 constant PWCTR5\n$09 constant RDDST    $30 constant PTLAR    $C5 constant VMCTR1\n$10 constant SLPIN    $36 constant MADCTL   $DA constant RDID1\n$11 constant SLPOUT   $3A constant COLMOD   $DB constant RDID2\n$12 constant PTLON    $B1 constant FRMCTR1  $DC constant RDID3\n$13 constant NORON    $B2 constant FRMCTR2  $DD constant RDID4\n$20 constant INVOFF   $B3 constant FRMCTR3  $E0 constant GMCTRP1\n$21 constant INVON    $B4 constant INVCTR   $E1 constant GMCTRN1\n$28 constant DISPOFF  $B6 constant DISSET5  $FC constant PWCTR6\n$29 constant DISPON   $C0 constant PWCTR1\n$2A constant CASET    $C1 constant PWCTR2\n$80 constant DELAY\n\nhere constant init-table\n    SWRESET       ,   DELAY ,           \\ Software reset, 0 args, w/delay\n      60 ,                             \n    SLPOUT        ,   DELAY ,           \\ Out of sleep mode, 0 args, w/delay\n      60 ,                            \n    FRMCTR1       , 3      ,            \\ Frame rate ctrl - normal mode, 3 args:\n      0x01 , 0x2C , 0x2D ,              \\ Rate = fosc/(1x2+40) * (LINE+2C+2D)\n    FRMCTR2       , 3      ,            \\ Frame rate control - idle mode, 3 args:\n      0x01 , 0x2C , 0x2D ,              \\ Rate = fosc/(1x2+40) * (LINE+2C+2D)\n    FRMCTR3       , 6      ,            \\ Frame rate ctrl - partial mode, 6 args:\n      0x01 , 0x2C , 0x2D ,              \\ Dot inversion mode\n      0x01 , 0x2C , 0x2D ,              \\ Line inversion mode\n    PWCTR1        , 3      ,            \\ Power control, 3 args:\n      0xA2 ,\n      0x02 ,                            \\ -4.6V\n      0x84 ,                            \\ AUTO mode\n    PWCTR2        , 1      ,            \\ Power control, 1 arg:\n      0xC5 ,                            \\ VGH25 = 2.4C VGSEL = -10 VGH = 3 * AVDD\n    PWCTR3        , 2      ,            \\ Power control, 2 args:\n      0x0A ,                            \\ Opamp current small\n      0x00 ,                            \\ Boost frequency\n    PWCTR4        , 2      ,            \\ Power control, 2 args:\n      0x8A ,                            \\ BCLK/2, Opamp current small & Medium low\n      0x2A ,\n    PWCTR5        , 2      ,            \\ Power control, 2 args:\n      0x8A , 0xEE ,\n    VMCTR1        , 1      ,            \\ Power control, 1 arg:\n      0x0E ,\n    MADCTL        , 1      ,            \\ Memory access control (directions), 1 arg:\n      0xC8 ,                            \\ row addr/col addr, bottom to top refresh\n    COLMOD        , 1      ,            \\ set color mode, 1 arg:\n      0x03 ,                            \\ 12-bit color\n    GMCTRP1       , 16      ,           \\ Gamma + polarity Correction Characterstics\n      0x02 , 0x1c , 0x07 , 0x12 ,\n      0x37 , 0x32 , 0x29 , 0x2d ,\n      0x29 , 0x25 , 0x2B , 0x39 ,\n      0x00 , 0x01 , 0x03 , 0x10 ,\n    GMCTRN1       , 16      ,           \\ Gamma - polarity Correction Characterstics\n      0x03 , 0x1d , 0x07 , 0x06 ,\n      0x2E , 0x2C , 0x29 , 0x2D ,\n      0x2E , 0x2E , 0x37 , 0x3F ,\n      0x00 , 0x00 , 0x02 , 0x10 ,\n    NORON         , 0       ,           \\ Normal display on\n    0 ,\n\n:m clk  [ 2 .p1 set 2 .p1 clr ] m;\n:m 1bit 2*' 1 .p1 movcb clk m;\n:m /C/  [ 0 .p1 clr ] m;\n:m /D/  [ 0 .p1 set ] m;\n\n: (>st) 1bit 1bit 1bit 1bit\n: _4    1bit 1bit 1bit 1bit 2*' ;\n: (4>st) 2*' 2*' 2*' 2*' _4 ;\n: 4>st  (4>st) drop ;\n\n: write-cmd  ( b )   /C/\n: 1>st       ( b )   1bit 1bit 1bit 1bit 1bit 1bit 1bit 1bit drop ;\n: write-data ( b )   /D/ 1>st ;\n: data16     ( b )   0# write-data write-data ;\n\n: args\n    begin\n        0=if drop; then\n        @p+ write-data\n        1-\n    again\n\n: coldregs\n    init-table ##p!\n    begin\n        @p+\n        0=if drop; then\n        write-cmd\n        @p+\n        dup $7f # and args\n        -if @p+ ms then\n        drop\n    again\n\nhere [ $1000 > throw ]\n$1000 org\n: dim ( x w )\n    over data16 + 1- data16 ;\n: rect              ( x y w h )\n    twist           ( x w y h )\n    RASET # write-cmd dim\n    CASET # write-cmd dim\n: writing\n    RAMWR # write-cmd\n    /D/ \n;\n\n: full\n    blu #@ (4>st)\n    grn (#@) (4>st) red (#@) 4>st ;\n\n:m |4>st 1bit 1bit 1bit 1bit m;\n\n: half 10 #\n: gray\n    0=if\n        drop\n: dark\n        1 .p1 clr\n        clk clk clk clk\n        clk clk clk clk\n        clk clk clk clk ;\n    then\n    5 (#!) [ blu b mov mul ] $f # + |4>st\n    5 (#@) [ grn b mov mul ] $f # + |4>st\n    5 (#@) [ red b mov mul ] $f # + |4>st drop ;\n\n: ndark\n    7 #for dark 7 #next ;\n\n: cls       ( )\n    0# 0# 128 # 160 #\n    rect\n\n    160 # 6 #for\n        128 # ndark\n    6 #next ;\n\n: /st7735\n    [ 3 .p1 clr ]\n    1 # ms\n    [ 3 .p1 set ]\n    coldregs\n\n    cls\n: white\n    $f #\n: setgray\n    red (#!) grn (#!) blu #! ; \n: black\n    0# setgray ;\n\n$1fff constant TOPMEM\n947 here\ninclude fontsize.fs\n[ TOPMEM FONTDATA_SIZE - ] org\ninclude font.fs\nhere TOPMEM <> throw\norg 947 <> throw\n\n\n:m 4.4r ( - l h )\n    dup clra\n    dup $93 , $a3 , \\ |@p+\n    xchd [swap] m;\n\n: 4.4 ( - h l )\n    4.4r swap ;\n\n: skip\n    4.4 * 1+ clrc 2/'\n: +p\n    [ dpl add ] dpl (#!)\n    [ clra dph addc ] dph (#!)\n    drop;\n\n: seek ( c - ) \\ p points to the data for character c\n    font ##p!\n    begin\n        dup @p+ xor 0=if 2drop ; then\n        drop skip\n    again\n\n: xy!   y #! x #! ;\n: xy@   x #@ y #@ ;\n: adv   x #+! ;            \\ advance cursor\n\n: preloop ( l h - i j )\n    swap if 1u+ then ;\n\n\\ Fill rect with current color\n: wash ( x y w h )\n    2dup um* d1+ d2/ preloop 7 #! 6 #!\n    rect\n    begin begin\n        full full\n    7 #next 6 #next ;\n\n: ch ( c - )\n    p>r\n    seek\n    xy@\n    4.4                     ( w h )\n    over adv\n    2dup * push             ( w h  r: w*h )\n    rect\n    pop 1+ 2/ 7 #for\n        4.4r gray gray\n    7 #next\n    \n    r>p ;\n\n: blch\n    black\n    xy@ 8 # 9 # wash\n    8 # adv white ;\n\n: str\n    @p+ 6 #for\n        @p+\n        ch\n    6 #next ;\n\n: setcolor\n    4.4 grn #! red #! @p+ blu #! ;\n\n: hex1 ( h - )\n    x #@ 3 # + $7f # xor 4 #\n    RASET # write-cmd dim\n\n    RAMWR # write-cmd\n    /D/\n\n    micro ##p!\n    $f # and 10 # b #! [ mul ] +p\n    10 # 7 #for 4.4r gray gray 7 #next\n    5 # x #+! ;\n\n: drawhex ( hh - )\n    y #@ 5 #\n    CASET # write-cmd dim\n\n    dup [swap] hex1 hex1 ;\n\n:m gap [ y inc ] m;\n\n: clip\n    y #@\n: (clip)\n    -if\n        $7f # and negate + ;\n    then\n    drop;\n\n: preblank ( w )\n    dup y #@ + (clip)\n    dup push x #@ -4 # + y #@\n    16 # pop rect\n    6 #for 16 # ndark 6 #next ;\n\n: bitmap\n    0 #\n: +bitmap ( o )\n    x #@ + y #@\n    -if 2drop ; then\n    4.4                     ( w h )\n:  (bitmap)                 ( x y w h )\n    dup y #+!\n    clip\n    2dup * push             ( w h  r: w*h )\n    rect\n    pop 1+ clrc 2/' 7 #for\n        4.4r gray gray\n    7 #next ;\n\n: (hex2)\n    micro ##p!\n    $f # and 10 # * +p\n    y #@ -if drop; then drop\n    x #@ 3 # + y #@\n    5 # 4 #\n    (bitmap) ;\n\n: hex2 ( u - )\n    dup (hex2)\n    gap\n    [swap] (hex2)\n    ;\n\n: acknak\n    0=if'\n        $c # red #!\n        $2 # grn #!\n        $2 # blu #! ;\n    then\n    $2 # red #!\n    $c # grn #!\n    $2 # blu #! ;\n\n: d-byte-ack\n    acknak\n    18 # preblank\n    gap\n    dot ##p!\n    7 # +bitmap\n\n    gap\n\n    white\n    hex2\n    gap gap gap ;\n\n: barpoint ( u - ) \\ update the slash bar bounds\n    -if drop; then\n    dup\n    talk0 #@ umin talk0 #!\n    talk1 #@ umax talk1 #! ;\n\n: slashcolor 8 # setgray ;\n\nhere constant DRAW-SEGMENT  \\ This block must all be in the same 2K segment\n\n: startwave\n    128 # 7 #!\n    0 # 8 # 128 # rect\n    story # a!\n    [\n     SP x mov\n     x dec\n     x dec\n     0 y mov\n    ] ;\n\n: column\n    $df cond\n: bail\n    [\n     x SP mov\n     y 0 mov\n    ] then ;\n\n: hi full dark dark dark dark dark dark dark column ;\n: lo dark dark dark dark dark dark dark full column ;\n: change\n    full full full full full full full full column ;\n: undef\n    half half half half half half half half column ;\n\n: d-stop\n    drop a+\n    0 # red #!\n    7 # grn #!\n    7 # blu #!\n    symbol-p ##p!\n: (d-stop)\n    12 # preblank\n    bitmap ;\n\n:m y; \\ return if y>127\n    $bc , 128 , 0 ,     \\ CJNE R4,#128,+0\n    0=if' ; then m;\n\n: d-direction\n    arrow ##p!\n    if'\n        larrow ##p!\n    then\n    $f # red #!\n    $e # grn #!\n    $2 # blu #!\n    -5 # y #+!\n    bitmap ;\n\n: slashv ( u - ) \\ draw the bottom slash segment\n    $08 # <if drop; then\n    $78 # <if\n        talked. 0=if.\n            talker (#!)\n            talked. set\n        then\n        talker @=if\n            slashcolor\n            x #@ -4 # + y #@ -5 # +\n            dup $7f # xor barpoint\n            6 # 1 # wash\n        then\n    then\n    drop;\n\n: d-start\n    acknak\n    18 # preblank\n    gap\n    dot ##p!\n    7 # +bitmap\n    drop @+ clrc 2/'\n\n    d-direction\n\n    gap\n\n    dup white hex2\n    slashv\n\n    gap gap gap\n    y;\n    $c # red #!\n    $8 # grn #!\n    $0 # blu #!\n    symbol-s ##p!\n    (d-stop) ;\n\n: d-byte\n    drop @+ d-byte-ack ;\n\n: d-bang\n    drop a+\n    15 # red #!\n    0 # grn #!\n    1 # blu #!\n    symbol-b ##p!\n    12 # preblank\n    bitmap ;\n\n: d-quit a+ 128 # y #! drop;\n:m jumptable 2* here [ 4 + ] ##p! $73 , ( JMP @A+DPTR ) m;\n\n: dispatch\n    @+ jumptable\n    ( 0 ) d-quit ;\n    ( 1 ) d-stop ;\n    ( 2 ) d-start ;\n    ( 3 ) d-byte ;\n    ( 4 ) d-bang ;\n\n: l-dispatch\n    begin\n        dispatch\n        y;\n    again\n\n:m pinkwash\n    8 # red #!\n    0 # grn #!\n    8 # blu #!\n    0 # 117 # 128 # 17 #\n    wash m;\n\n: hline ( x y l ) 1 # wash ;\n: vline ( x y l ) 1 # swap wash ;\n\n: addrgrid ( u - ) \\ C set if column 7\n    dup 2/ 2/ 2/ 7 # * 7 # + y #!\n    7 # and dup 17 # * x #!\n    -7 # + drop;\n\n: (slash) ( u - ) \\ from the address, vertical down line\n    addrgrid\n    [ y inc y inc ]\n    0=if'\n        10 # adv\n        xy@ 3 # hline\n        3 # adv\n    else\n        -4 # adv\n        xy@ 3 # hline\n    then\n\n    xy@ 117 # over - vline ;\n\n: slash ( u - )\n    slashcolor (slash)\n    [ x slashx mov ] ;\n\n: unslash ( u - )\n    black (slash) ;\n\n: d-slashbar\n    0# setgray                              \\ undraw\n    0# 117 # 128 # hline\n    slashcolor\n    talked. if.\n        slashx #@ barpoint\n        talk0 #@ talk1 #@ over negate + 1+\n        117 # swap hline\n    then ;\n\n: ingrad ( u - )\n    2* grad ##p! +p setcolor ;\n\n: newtalker\n    white\n: d-addr\n    dup addrgrid drawhex ;\n\n: d-sda-stop\n    5 # 6 #for hi 6 #next\n    change \n    6 # 6 #for lo 6 #next\n    prev. clr\n    a+ drop;\n\n: bar\n    0=if'\n        prev. if. change else lo then lo ;\n    then\n    prev. 0=if. change else hi then hi ;\n\n: d-sda-byte\n    @+\n    cplc\n    9 # 6 #for\n        bar\n        [ prev. movcb ]\n        2/'\n    6 #next\n    drop drop;\n\n: d-sda-start\n    d-sda-byte\n    6 # prev. if. change 1- then\n    6 #for lo 6 #next\n    change \n    5 # 6 #for hi 6 #next\n    prev. set\n    ;\n\n: d-sda-none\n    label-sda [ 1 + ] ##p!\n: (label)\n    16 # 1 #for\n        4 # 6 #for\n            4.4r gray gray\n        6 #next\n        column\n    1 #next\n    begin hi again\n\n: d-sda-bang\n    12 # 6 #for undef 6 #next\n    a+ drop;\n\n: sda-dispatch\n    @+\n    jumptable\n    ( 0 ) d-sda-none ;\n    ( 1 ) d-sda-stop ;\n    ( 2 ) d-sda-start ;\n    ( 3 ) d-sda-byte ;\n    ( 4 ) d-sda-bang ;\n\n: d-sda\n    140 # startwave\n    $4 # red #!\n    $5 # grn #!\n    $f # blu #!\n    begin\n        sda-dispatch\n    again\n\n: 9hi\n    9 # 6 #for hi 6 #next ;\n: 2lo\n    2 # 6 #for lo 6 #next ;\n: d-scl-stop\n    9hi\n    change \n    2lo\n    a+ drop;\n\n: d-scl-byte\n    a+\n    9 # 6 #for\n        lo change\n    6 #next\n    drop;\n: d-scl-start\n    d-scl-byte\n    2lo\n    change \n    9hi\n    ;\n\n: d-scl-none\n    label-scl [ 1 + ] ##p!\n    (label) ;\n\n: scl-dispatch\n    @+ jumptable\n    ( 0 ) d-scl-none ;\n    ( 1 ) d-scl-stop ;\n    ( 2 ) d-scl-start ;\n    ( 3 ) d-scl-byte ;\n    ( 4 ) d-sda-bang ;\n\nhere [ DRAW-SEGMENT xor $f800 and throw ]\n\n: d-scl\n    152 # startwave\n    $c # red #!\n    $b # grn #!\n    $1 # blu #!\n    begin\n        scl-dispatch\n    again\n\n: rtl\n    %10101000 #\n: >madctl\n    MADCTL # write-cmd write-data ;\n: ltr\n    %11001000 # >madctl ;\n\n: drawmode\n    black\n    0# 0# 2dup 10 # 9 # wash\n    white xy! mode #@ ch ;\n\n: fixed\n    rtl\n    3 # setgray\n    $08 #\n    112 # 6 #for\n        dup d-addr\n        1+\n    6 #next\n\n    ltr\n\n    drawmode\n\n    tplan ##p!\n    begin\n        @p+ 0=if drop; then\n        @p+ xy!\n        setcolor\n        str\n    again\n\n:  d-slash\n    talked. if.\n        ptalked. if.\n            ptalker #@ talker @=if drop; then\n            unslash\n        then\n        talker #@ slash ;\n    then\n    ptalker #@ unslash ;\n\n: cool1 ( addr - )\n    \\ talker @=if talked. if. drop; then then\n    dup heatmap @x if  ( addr h )\n        1- (!x) ingrad\n        d-addr ;\n    then\n    2drop ;\n\n: cool\n    rtl\n    $08 #\n    112 # 6 #for\n        dup cool1\n        1+\n    6 #next\n    drop\n    ltr ;\n\n\\ talked. is true when talker is valid\n\\ ptalked. and ptalker hold previous values\n\\ slashx is set to the X of the slash line\n\n: waves\n    \\ pinkwash\n\n    rtl\n\n    122 # 0 # xy!\n\n    $ff # talk0 #!\n    $00 # talk1 #!\n    talked. clr\n\n    story # a!\n    l-dispatch\n\n    d-sda\n    d-scl\n\n    ltr\n\n    d-slash\n    d-slashbar\n\n    talker #@ ptalker #!\n    [ talked. movbc ptalked. movcb ]\n\n    DISPON # write-cmd\n    ;\n"
  },
  {
    "path": "hardware/i2cdriver.brd",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE eagle SYSTEM \"eagle.dtd\">\n<eagle version=\"6.4\">\n<drawing>\n<settings>\n<setting alwaysvectorfont=\"no\"/>\n<setting verticaltext=\"up\"/>\n</settings>\n<grid distance=\"1\" unitdist=\"mil\" unit=\"mil\" style=\"lines\" multiple=\"1\" display=\"yes\" altdistance=\"0.025\" altunitdist=\"inch\" altunit=\"inch\"/>\n<layers>\n<layer number=\"1\" name=\"Top\" color=\"4\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"2\" name=\"Route2\" color=\"1\" fill=\"3\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"3\" name=\"Route3\" color=\"4\" fill=\"3\" visible=\"no\" active=\"yes\"/>\n<layer number=\"4\" name=\"Route4\" color=\"1\" fill=\"4\" visible=\"no\" active=\"yes\"/>\n<layer number=\"5\" name=\"Route5\" color=\"4\" fill=\"4\" visible=\"no\" active=\"yes\"/>\n<layer number=\"6\" name=\"Route6\" color=\"1\" fill=\"8\" visible=\"no\" active=\"yes\"/>\n<layer number=\"7\" name=\"Route7\" color=\"4\" fill=\"8\" visible=\"no\" active=\"yes\"/>\n<layer number=\"8\" name=\"Route8\" color=\"1\" fill=\"2\" visible=\"no\" active=\"yes\"/>\n<layer number=\"9\" name=\"Route9\" color=\"4\" fill=\"2\" visible=\"no\" active=\"yes\"/>\n<layer number=\"10\" name=\"Route10\" color=\"1\" fill=\"7\" visible=\"no\" active=\"yes\"/>\n<layer number=\"11\" name=\"Route11\" color=\"4\" fill=\"7\" visible=\"no\" active=\"yes\"/>\n<layer number=\"12\" name=\"Route12\" color=\"1\" fill=\"5\" visible=\"no\" active=\"yes\"/>\n<layer number=\"13\" name=\"Route13\" color=\"4\" fill=\"5\" visible=\"no\" active=\"yes\"/>\n<layer number=\"14\" name=\"Route14\" color=\"1\" fill=\"6\" visible=\"no\" active=\"yes\"/>\n<layer number=\"15\" name=\"Route15\" color=\"4\" fill=\"6\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"16\" name=\"Bottom\" color=\"1\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"17\" name=\"Pads\" color=\"2\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"18\" name=\"Vias\" color=\"2\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"19\" name=\"Unrouted\" color=\"6\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"20\" name=\"Dimension\" color=\"15\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"21\" name=\"tPlace\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"22\" name=\"bPlace\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"23\" name=\"tOrigins\" color=\"15\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"24\" name=\"bOrigins\" color=\"15\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"25\" name=\"tNames\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"26\" name=\"bNames\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"27\" name=\"tValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"28\" name=\"bValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"29\" name=\"tStop\" color=\"7\" fill=\"3\" visible=\"no\" active=\"yes\"/>\n<layer number=\"30\" name=\"bStop\" color=\"7\" fill=\"6\" visible=\"no\" active=\"yes\"/>\n<layer number=\"31\" name=\"tCream\" color=\"7\" fill=\"4\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"32\" name=\"bCream\" color=\"7\" fill=\"5\" visible=\"no\" active=\"yes\"/>\n<layer number=\"33\" name=\"tFinish\" color=\"6\" fill=\"3\" visible=\"no\" active=\"yes\"/>\n<layer number=\"34\" name=\"bFinish\" color=\"6\" fill=\"6\" visible=\"no\" active=\"yes\"/>\n<layer number=\"35\" name=\"tGlue\" color=\"7\" fill=\"4\" visible=\"no\" active=\"yes\"/>\n<layer number=\"36\" name=\"bGlue\" color=\"7\" fill=\"5\" visible=\"no\" active=\"yes\"/>\n<layer number=\"37\" name=\"tTest\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"38\" name=\"bTest\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"39\" name=\"tKeepout\" color=\"4\" fill=\"11\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"40\" name=\"bKeepout\" color=\"1\" fill=\"11\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"41\" name=\"tRestrict\" color=\"4\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"42\" name=\"bRestrict\" color=\"1\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"43\" name=\"vRestrict\" color=\"2\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"44\" name=\"Drills\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"45\" name=\"Holes\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"46\" name=\"Milling\" color=\"3\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"47\" name=\"Measures\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"48\" name=\"Document\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"49\" name=\"Reference\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"50\" name=\"dxf\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"51\" name=\"tDocu\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"52\" name=\"bDocu\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"53\" name=\"tGND_GNDA\" color=\"7\" fill=\"9\" visible=\"no\" active=\"no\"/>\n<layer number=\"54\" name=\"bGND_GNDA\" color=\"1\" fill=\"9\" visible=\"no\" active=\"no\"/>\n<layer number=\"56\" name=\"wert\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"57\" name=\"tCAD\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"58\" name=\"bCAD\" color=\"11\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"59\" name=\"tCarbon\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"60\" name=\"bCarbon\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"90\" name=\"Modules\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"91\" name=\"Nets\" color=\"2\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"92\" name=\"Busses\" color=\"1\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"93\" name=\"Pins\" color=\"2\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"94\" name=\"Symbols\" color=\"4\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"95\" name=\"Names\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"96\" name=\"Values\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"97\" name=\"Info\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"98\" name=\"Guide\" color=\"6\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"99\" name=\"SpiceOrder\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"100\" name=\"Muster\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"101\" name=\"Patch_Top\" color=\"12\" fill=\"4\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"102\" name=\"Vscore\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"103\" name=\"fp3\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"104\" name=\"Name\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"105\" name=\"Beschreib\" color=\"9\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"106\" name=\"BGA-Top\" color=\"4\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"107\" name=\"BD-Top\" color=\"5\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"108\" name=\"fp8\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"109\" name=\"fp9\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"110\" name=\"fp0\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"111\" name=\"111\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"112\" name=\"tSilk\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"113\" name=\"ReferenceLS\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"114\" name=\"Route14\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"115\" name=\"115bmp\" color=\"1\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"116\" name=\"Patch_BOT\" color=\"9\" fill=\"4\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"117\" name=\"mPads\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"118\" name=\"Rect_Pads\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"119\" name=\"mUnrouted\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"120\" name=\"mDimension\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"121\" name=\"_tsilk\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"122\" name=\"_bsilk\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"123\" name=\"tTestmark\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"124\" name=\"bTestmark\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"125\" name=\"_tNames\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"126\" name=\"_bNames\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"127\" name=\"_tValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"128\" name=\"_bValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"129\" name=\"Mask\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"130\" name=\"mbStop\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"131\" name=\"tAdjust\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"132\" name=\"bAdjust\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"133\" name=\"mtFinish\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"134\" name=\"mbFinish\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"135\" name=\"mtGlue\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"136\" name=\"mbGlue\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"137\" name=\"mtTest\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"138\" name=\"mbTest\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"139\" name=\"mtKeepout\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"140\" name=\"mbKeepout\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"141\" name=\"mtRestrict\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"142\" name=\"mbRestrict\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"143\" name=\"mvRestrict\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"144\" name=\"Drill_legend\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"145\" name=\"mHoles\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"146\" name=\"mMilling\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"147\" name=\"mMeasures\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"148\" name=\"mDocument\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"149\" name=\"mReference\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"150\" name=\"Notes\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"151\" name=\"HeatSink\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"152\" name=\"_bDocu\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"153\" name=\"FabDoc1\" color=\"6\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"154\" name=\"FabDoc2\" color=\"2\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"155\" name=\"FabDoc3\" color=\"7\" fill=\"15\" visible=\"no\" active=\"no\"/>\n<layer number=\"191\" name=\"mNets\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"192\" name=\"mBusses\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"193\" name=\"mPins\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"194\" name=\"mSymbols\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"195\" name=\"mNames\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"196\" name=\"mValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"199\" name=\"Contour\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"200\" name=\"200bmp\" color=\"1\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"201\" name=\"201bmp\" color=\"2\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"202\" name=\"202bmp\" color=\"3\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"203\" name=\"203bmp\" color=\"4\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"204\" name=\"204bmp\" color=\"5\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"205\" name=\"205bmp\" color=\"6\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"206\" name=\"206bmp\" color=\"7\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"207\" name=\"207bmp\" color=\"8\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"208\" name=\"208bmp\" color=\"9\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"209\" name=\"209bmp\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"210\" name=\"210bmp\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"211\" name=\"211bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"212\" name=\"212bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"213\" name=\"213bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"214\" name=\"214bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"215\" name=\"215bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"216\" name=\"216bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"217\" name=\"217bmp\" color=\"18\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"218\" name=\"218bmp\" color=\"19\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"219\" name=\"219bmp\" color=\"20\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"220\" name=\"220bmp\" color=\"21\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"221\" name=\"221bmp\" color=\"22\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"222\" name=\"222bmp\" color=\"23\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"223\" name=\"223bmp\" color=\"24\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"224\" name=\"224bmp\" color=\"25\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"225\" name=\"225bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"226\" name=\"226bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"227\" name=\"227bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"228\" name=\"228bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"229\" name=\"229bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"230\" name=\"230bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"231\" name=\"Eagle3D_PG1\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"232\" name=\"Eagle3D_PG2\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"233\" name=\"Eagle3D_PG3\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"248\" name=\"Housing\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"249\" name=\"Edge\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"250\" name=\"Descript\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"251\" name=\"SMDround\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"254\" name=\"cooling\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"255\" name=\"routoute\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n</layers>\n<board>\n<plain>\n<wire x1=\"10.6\" y1=\"15.7\" x2=\"72.35\" y2=\"15.7\" width=\"0.4064\" layer=\"20\"/>\n<wire x1=\"72.35\" y1=\"15.7\" x2=\"72.35\" y2=\"64.2\" width=\"0.4064\" layer=\"20\"/>\n<wire x1=\"72.35\" y1=\"64.2\" x2=\"10.6\" y2=\"64.2\" width=\"0.4064\" layer=\"20\"/>\n<wire x1=\"10.6\" y1=\"64.2\" x2=\"10.6\" y2=\"15.7\" width=\"0.4064\" layer=\"20\"/>\n<rectangle x1=\"11.67256875\" y1=\"47.5653125\" x2=\"11.771625\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.47445\" y1=\"47.5653125\" x2=\"12.0357875\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.3753875\" y1=\"47.565309375\" x2=\"12.2008875\" y2=\"47.598328125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.061696875\" y1=\"52.0065\" x2=\"12.580615625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.32585625\" y1=\"47.581821875\" x2=\"12.31645625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.50011875\" y1=\"37.5767625\" x2=\"20.14219375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.09471875\" y1=\"52.0065\" x2=\"12.6136375\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.292840625\" y1=\"47.581821875\" x2=\"12.415515625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.533140625\" y1=\"37.5767625\" x2=\"20.175215625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.1277375\" y1=\"52.0065\" x2=\"12.64665625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.25981875\" y1=\"47.581821875\" x2=\"12.514575\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.566159375\" y1=\"37.5767625\" x2=\"20.208234375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.160759375\" y1=\"52.0065\" x2=\"12.679678125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2268\" y1=\"47.581821875\" x2=\"12.6136375\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.59918125\" y1=\"37.5767625\" x2=\"20.24125625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.193778125\" y1=\"52.0065\" x2=\"12.712696875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2268\" y1=\"47.581821875\" x2=\"12.679675\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.6322\" y1=\"37.5767625\" x2=\"20.274275\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.226796875\" y1=\"52.0065\" x2=\"12.745715625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.226796875\" y1=\"47.581821875\" x2=\"12.745715625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.66521875\" y1=\"37.5767625\" x2=\"20.30729375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.25981875\" y1=\"52.0065\" x2=\"12.7787375\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2268\" y1=\"47.581821875\" x2=\"12.81175625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.698240625\" y1=\"37.5767625\" x2=\"20.340315625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2928375\" y1=\"52.0065\" x2=\"12.81175625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2102875\" y1=\"47.59833125\" x2=\"12.89430625\" y2=\"47.63135\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.731259375\" y1=\"37.5767625\" x2=\"20.373334375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.325859375\" y1=\"52.0065\" x2=\"12.844778125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2268\" y1=\"47.581821875\" x2=\"12.9438375\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.76428125\" y1=\"37.5767625\" x2=\"20.40635625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.358878125\" y1=\"52.0065\" x2=\"12.877796875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2102875\" y1=\"47.59833125\" x2=\"13.0263875\" y2=\"47.63135\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.7973\" y1=\"37.5767625\" x2=\"20.439375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.391896875\" y1=\"52.0065\" x2=\"12.910815625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.226796875\" y1=\"47.581821875\" x2=\"13.075915625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.83031875\" y1=\"37.5767625\" x2=\"20.47239375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.42491875\" y1=\"52.0065\" x2=\"12.9438375\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2268\" y1=\"47.581821875\" x2=\"13.14195625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.863340625\" y1=\"37.5767625\" x2=\"20.505415625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.4579375\" y1=\"52.0065\" x2=\"12.97685625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.226796875\" y1=\"47.581821875\" x2=\"13.207996875\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.896359375\" y1=\"37.5767625\" x2=\"20.538434375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.490959375\" y1=\"52.0065\" x2=\"13.009878125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.243309375\" y1=\"47.59833125\" x2=\"13.257528125\" y2=\"47.63135\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.92938125\" y1=\"37.5767625\" x2=\"20.57145625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.523978125\" y1=\"52.0065\" x2=\"13.042896875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.25981875\" y1=\"47.581821875\" x2=\"13.30705625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.9624\" y1=\"37.5767625\" x2=\"20.604475\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.556996875\" y1=\"52.0065\" x2=\"13.075915625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.25981875\" y1=\"47.581821875\" x2=\"13.37309375\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"3.99541875\" y1=\"37.5767625\" x2=\"20.63749375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.59001875\" y1=\"52.0065\" x2=\"13.1089375\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.276328125\" y1=\"47.59833125\" x2=\"13.422628125\" y2=\"47.63135\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"4.028440625\" y1=\"37.5767625\" x2=\"20.670515625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.6230375\" y1=\"52.0065\" x2=\"13.14195625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.2928375\" y1=\"47.581821875\" x2=\"13.47215625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"4.061459375\" y1=\"37.5767625\" x2=\"20.703534375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.656059375\" y1=\"52.0065\" x2=\"13.174978125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.30935\" y1=\"47.59833125\" x2=\"13.5216875\" y2=\"47.63135\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"4.09448125\" y1=\"37.5767625\" x2=\"20.73655625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.689078125\" y1=\"52.0065\" x2=\"13.207996875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.325859375\" y1=\"47.581821875\" x2=\"13.571215625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"4.1275\" y1=\"37.5767625\" x2=\"20.769575\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.722096875\" y1=\"52.0065\" x2=\"13.241015625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.342365625\" y1=\"47.59833125\" x2=\"13.620746875\" y2=\"47.63135\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"4.16051875\" y1=\"37.5767625\" x2=\"20.80259375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.151359375\" y1=\"52.006503125\" x2=\"12.877796875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"11.358878125\" y1=\"47.581821875\" x2=\"13.670278125\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.184378125\" y1=\"52.006503125\" x2=\"12.910815625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.019278125\" y1=\"48.242221875\" x2=\"13.075915625\" y2=\"48.275240625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.052296875\" y1=\"46.921421875\" x2=\"13.042896875\" y2=\"46.954440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2174\" y1=\"52.006503125\" x2=\"12.9438375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.101828125\" y1=\"48.29175\" x2=\"13.059409375\" y2=\"48.32476875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.118340625\" y1=\"46.85538125\" x2=\"13.042896875\" y2=\"46.8884\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.25041875\" y1=\"52.006503125\" x2=\"12.97685625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.16786875\" y1=\"48.324771875\" x2=\"13.05940625\" y2=\"48.357790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.184378125\" y1=\"46.8223625\" x2=\"13.042896875\" y2=\"46.85538125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2834375\" y1=\"52.006503125\" x2=\"13.009875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2008875\" y1=\"48.357790625\" x2=\"13.092425\" y2=\"48.390809375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.217396875\" y1=\"46.789340625\" x2=\"13.075915625\" y2=\"46.822359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.316459375\" y1=\"52.006503125\" x2=\"13.042896875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.266928125\" y1=\"48.390809375\" x2=\"13.092428125\" y2=\"48.423828125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.266928125\" y1=\"46.77283125\" x2=\"13.092428125\" y2=\"46.80585\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.349478125\" y1=\"52.006503125\" x2=\"13.075915625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2834375\" y1=\"48.407321875\" x2=\"13.14195625\" y2=\"48.440340625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.33296875\" y1=\"46.7398125\" x2=\"13.092425\" y2=\"46.77283125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.3825\" y1=\"52.006503125\" x2=\"13.1089375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.33296875\" y1=\"48.42383125\" x2=\"13.15846875\" y2=\"48.45685\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.3825\" y1=\"46.756321875\" x2=\"13.1089375\" y2=\"46.789340625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.41551875\" y1=\"52.006503125\" x2=\"13.14195625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.382496875\" y1=\"48.440340625\" x2=\"13.174978125\" y2=\"48.473359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.4485375\" y1=\"46.756321875\" x2=\"13.1089375\" y2=\"46.789340625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.4485375\" y1=\"52.006503125\" x2=\"13.174975\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.41551875\" y1=\"48.4733625\" x2=\"13.20799375\" y2=\"48.50638125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.5310875\" y1=\"46.77283125\" x2=\"13.092425\" y2=\"46.80585\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.481559375\" y1=\"52.006503125\" x2=\"13.207996875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.448540625\" y1=\"48.4733625\" x2=\"13.241015625\" y2=\"48.50638125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.58061875\" y1=\"46.789340625\" x2=\"13.1089375\" y2=\"46.822359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.514578125\" y1=\"52.006503125\" x2=\"13.241015625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.49806875\" y1=\"48.489871875\" x2=\"13.257525\" y2=\"48.522890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.64665625\" y1=\"46.789340625\" x2=\"13.1089375\" y2=\"46.822359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.5476\" y1=\"52.006503125\" x2=\"13.2740375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.514578125\" y1=\"48.50638125\" x2=\"13.307059375\" y2=\"48.5394\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.729209375\" y1=\"46.80585\" x2=\"13.092428125\" y2=\"46.83886875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.58061875\" y1=\"52.006503125\" x2=\"13.30705625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.56410625\" y1=\"48.522890625\" x2=\"13.32356875\" y2=\"48.555909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"46.822359375\" x2=\"13.1089375\" y2=\"46.855378125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.6136375\" y1=\"52.006503125\" x2=\"13.340075\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.597125\" y1=\"48.522890625\" x2=\"13.3565875\" y2=\"48.555909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.82826875\" y1=\"46.838871875\" x2=\"13.12544375\" y2=\"46.871890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.646659375\" y1=\"52.006503125\" x2=\"13.373096875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.646659375\" y1=\"48.539403125\" x2=\"13.373096875\" y2=\"48.572421875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.91081875\" y1=\"46.85538125\" x2=\"13.1089375\" y2=\"46.8884\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.679678125\" y1=\"52.006503125\" x2=\"13.406115625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.679678125\" y1=\"48.539403125\" x2=\"13.406115625\" y2=\"48.572421875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.960346875\" y1=\"46.871890625\" x2=\"13.125446875\" y2=\"46.904909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7127\" y1=\"52.006503125\" x2=\"13.4391375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7127\" y1=\"48.539403125\" x2=\"13.4391375\" y2=\"48.572421875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.0263875\" y1=\"46.871890625\" x2=\"13.12545\" y2=\"46.904909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"52.006503125\" x2=\"13.47215625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.729209375\" y1=\"48.5559125\" x2=\"13.488665625\" y2=\"48.58893125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.092428125\" y1=\"46.9049125\" x2=\"13.125446875\" y2=\"46.93793125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.33296875\" y1=\"45.0888125\" x2=\"13.88490625\" y2=\"45.12183125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.762228125\" y1=\"42.31513125\" x2=\"13.455646875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.712696875\" y1=\"40.515540625\" x2=\"13.505178125\" y2=\"40.548559375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.33296875\" y1=\"38.914071875\" x2=\"13.88490625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7127\" y1=\"36.4210625\" x2=\"13.505175\" y2=\"36.45408125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.00276875\" y1=\"33.465771875\" x2=\"14.21510625\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"31.402021875\" x2=\"13.47215625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.712696875\" y1=\"29.618940625\" x2=\"13.505178125\" y2=\"29.651959375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"52.006503125\" x2=\"13.505175\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"48.572421875\" x2=\"13.505175\" y2=\"48.605440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.266928125\" y1=\"44.989753125\" x2=\"14.016984375\" y2=\"45.022771875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.795246875\" y1=\"42.31513125\" x2=\"13.488665625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"40.5485625\" x2=\"13.53819375\" y2=\"40.58158125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.3659875\" y1=\"38.914071875\" x2=\"13.917925\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.712696875\" y1=\"36.4210625\" x2=\"13.571215625\" y2=\"36.45408125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.0357875\" y1=\"33.465771875\" x2=\"14.248125\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"31.402021875\" x2=\"13.505175\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"29.6519625\" x2=\"13.53819375\" y2=\"29.68498125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.811759375\" y1=\"52.006503125\" x2=\"13.538196875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.811759375\" y1=\"48.572421875\" x2=\"13.538196875\" y2=\"48.605440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2174\" y1=\"44.907203125\" x2=\"14.13255625\" y2=\"44.940221875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.82826875\" y1=\"42.31513125\" x2=\"13.5216875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"40.58158125\" x2=\"13.57121875\" y2=\"40.6146\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.399009375\" y1=\"38.914071875\" x2=\"13.950946875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.729209375\" y1=\"36.437571875\" x2=\"13.620746875\" y2=\"36.470590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.068809375\" y1=\"33.465771875\" x2=\"14.281146875\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.811759375\" y1=\"31.402021875\" x2=\"13.538196875\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"29.68498125\" x2=\"13.57121875\" y2=\"29.718\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.844778125\" y1=\"52.006503125\" x2=\"13.571215625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.844778125\" y1=\"48.572421875\" x2=\"13.571215625\" y2=\"48.605440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2008875\" y1=\"44.857671875\" x2=\"14.21510625\" y2=\"44.890690625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.8612875\" y1=\"42.31513125\" x2=\"13.55470625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.81175625\" y1=\"40.6146\" x2=\"13.6042375\" y2=\"40.64761875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.432028125\" y1=\"38.914071875\" x2=\"13.983965625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"36.4210625\" x2=\"13.670275\" y2=\"36.45408125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.101828125\" y1=\"33.465771875\" x2=\"14.314165625\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.844778125\" y1=\"31.402021875\" x2=\"13.571215625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.81175625\" y1=\"29.718\" x2=\"13.6042375\" y2=\"29.75101875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.8778\" y1=\"52.006503125\" x2=\"13.6042375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.8778\" y1=\"48.572421875\" x2=\"13.6042375\" y2=\"48.605440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.184378125\" y1=\"44.808140625\" x2=\"14.297659375\" y2=\"44.841159375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.894309375\" y1=\"42.31513125\" x2=\"13.587728125\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.84478125\" y1=\"40.647621875\" x2=\"13.63725625\" y2=\"40.680640625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.46505\" y1=\"38.914071875\" x2=\"14.0169875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"36.421059375\" x2=\"13.73631875\" y2=\"36.454078125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.13485\" y1=\"33.465771875\" x2=\"14.3471875\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.8778\" y1=\"31.402021875\" x2=\"13.6042375\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.861290625\" y1=\"29.7345125\" x2=\"13.620746875\" y2=\"29.76753125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.91081875\" y1=\"52.006503125\" x2=\"13.63725625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.91081875\" y1=\"48.605440625\" x2=\"13.63725625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.184378125\" y1=\"44.775121875\" x2=\"14.363696875\" y2=\"44.808140625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.927328125\" y1=\"42.31513125\" x2=\"13.620746875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.877796875\" y1=\"40.680640625\" x2=\"13.670278125\" y2=\"40.713659375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.49806875\" y1=\"38.914071875\" x2=\"14.05000625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"36.421059375\" x2=\"13.7693375\" y2=\"36.454078125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.16786875\" y1=\"33.465771875\" x2=\"14.38020625\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.91081875\" y1=\"31.402021875\" x2=\"13.63725625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.894309375\" y1=\"29.76753125\" x2=\"13.653765625\" y2=\"29.80055\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.9438375\" y1=\"52.006503125\" x2=\"13.670275\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.9438375\" y1=\"48.605440625\" x2=\"13.670275\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.184378125\" y1=\"44.742103125\" x2=\"14.429734375\" y2=\"44.775121875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.960346875\" y1=\"42.31513125\" x2=\"13.653765625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.91081875\" y1=\"40.7136625\" x2=\"13.70329375\" y2=\"40.74668125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.5310875\" y1=\"38.914071875\" x2=\"14.083025\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"36.4210625\" x2=\"13.835375\" y2=\"36.45408125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2008875\" y1=\"33.465771875\" x2=\"14.413225\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.9438375\" y1=\"31.402021875\" x2=\"13.670275\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.927328125\" y1=\"29.800553125\" x2=\"13.686784375\" y2=\"29.833571875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.976859375\" y1=\"52.006503125\" x2=\"13.703296875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.976859375\" y1=\"48.605440625\" x2=\"13.703296875\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2008875\" y1=\"44.725590625\" x2=\"14.47926875\" y2=\"44.758609375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.99336875\" y1=\"42.31513125\" x2=\"13.6867875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.9438375\" y1=\"40.74668125\" x2=\"13.73631875\" y2=\"40.7797\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.564109375\" y1=\"38.914071875\" x2=\"14.116046875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.778740625\" y1=\"36.4210625\" x2=\"13.901415625\" y2=\"36.45408125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.233909375\" y1=\"33.465771875\" x2=\"14.446246875\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.976859375\" y1=\"31.402021875\" x2=\"13.703296875\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.96035\" y1=\"29.833571875\" x2=\"13.71980625\" y2=\"29.866590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.009878125\" y1=\"52.006503125\" x2=\"13.736315625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.009878125\" y1=\"48.605440625\" x2=\"13.736315625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2008875\" y1=\"44.692571875\" x2=\"14.54530625\" y2=\"44.725590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.0263875\" y1=\"42.31513125\" x2=\"13.71980625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.97685625\" y1=\"40.7797\" x2=\"13.7693375\" y2=\"40.81271875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.6136375\" y1=\"38.8975625\" x2=\"14.13255625\" y2=\"38.93058125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.811759375\" y1=\"36.4210625\" x2=\"13.934434375\" y2=\"36.45408125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.266928125\" y1=\"33.465771875\" x2=\"14.479265625\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.009878125\" y1=\"31.402021875\" x2=\"13.736315625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.993365625\" y1=\"29.866590625\" x2=\"13.752828125\" y2=\"29.899609375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.0429\" y1=\"52.006503125\" x2=\"13.7693375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.0429\" y1=\"48.605440625\" x2=\"13.7693375\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.2174\" y1=\"44.6760625\" x2=\"14.5948375\" y2=\"44.70908125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.059409375\" y1=\"42.31513125\" x2=\"13.752828125\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.026390625\" y1=\"40.7962125\" x2=\"13.785846875\" y2=\"40.82923125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.059409375\" y1=\"38.914071875\" x2=\"13.752828125\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.811759375\" y1=\"36.4210625\" x2=\"14.000478125\" y2=\"36.45408125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.29995\" y1=\"33.465771875\" x2=\"14.5122875\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.0429\" y1=\"31.402021875\" x2=\"13.7693375\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.026390625\" y1=\"29.8996125\" x2=\"13.785846875\" y2=\"29.93263125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.07591875\" y1=\"52.006503125\" x2=\"13.80235625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.07591875\" y1=\"48.605440625\" x2=\"13.80235625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.092428125\" y1=\"45.518071875\" x2=\"13.785846875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.99336875\" y1=\"43.900090625\" x2=\"13.88490625\" y2=\"43.933109375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.092428125\" y1=\"42.31513125\" x2=\"13.785846875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.059409375\" y1=\"40.82923125\" x2=\"13.818865625\" y2=\"40.86225\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.092428125\" y1=\"38.914071875\" x2=\"13.785846875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.811759375\" y1=\"36.4210625\" x2=\"14.066515625\" y2=\"36.45408125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.07591875\" y1=\"34.208721875\" x2=\"13.80235625\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.07591875\" y1=\"31.402021875\" x2=\"13.80235625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.059409375\" y1=\"29.93263125\" x2=\"13.818865625\" y2=\"29.96565\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.1089375\" y1=\"52.006503125\" x2=\"13.835375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.1089375\" y1=\"48.605440625\" x2=\"13.835375\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.125446875\" y1=\"45.518071875\" x2=\"13.818865625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.05940625\" y1=\"43.83405\" x2=\"13.88490625\" y2=\"43.86706875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.125446875\" y1=\"42.31513125\" x2=\"13.818865625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.092428125\" y1=\"40.862253125\" x2=\"13.851884375\" y2=\"40.895271875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.125446875\" y1=\"38.914071875\" x2=\"13.818865625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.158465625\" y1=\"36.73475\" x2=\"13.785846875\" y2=\"36.76776875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.174978125\" y1=\"36.0908625\" x2=\"13.769334375\" y2=\"36.12388125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.1089375\" y1=\"34.208721875\" x2=\"13.835375\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.1089375\" y1=\"31.402021875\" x2=\"13.835375\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.092428125\" y1=\"29.965653125\" x2=\"13.851884375\" y2=\"29.998671875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.141959375\" y1=\"52.006503125\" x2=\"13.868396875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.141959375\" y1=\"48.605440625\" x2=\"13.868396875\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.15846875\" y1=\"45.518071875\" x2=\"13.8518875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.108940625\" y1=\"43.784521875\" x2=\"13.901415625\" y2=\"43.817540625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.15846875\" y1=\"42.31513125\" x2=\"13.8518875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.12545\" y1=\"40.895271875\" x2=\"13.88490625\" y2=\"40.928290625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.15846875\" y1=\"38.914071875\" x2=\"13.8518875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.191490625\" y1=\"36.767771875\" x2=\"13.818865625\" y2=\"36.800790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.207996875\" y1=\"36.057840625\" x2=\"13.802359375\" y2=\"36.090859375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.141959375\" y1=\"34.208721875\" x2=\"13.868396875\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.141959375\" y1=\"31.402021875\" x2=\"13.868396875\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.12545\" y1=\"29.998671875\" x2=\"13.88490625\" y2=\"30.031690625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.174978125\" y1=\"52.006503125\" x2=\"13.901415625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.174978125\" y1=\"48.605440625\" x2=\"13.901415625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.1914875\" y1=\"45.518071875\" x2=\"13.88490625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.158465625\" y1=\"43.734990625\" x2=\"13.917928125\" y2=\"43.768009375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.1914875\" y1=\"42.31513125\" x2=\"13.88490625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.158465625\" y1=\"40.928290625\" x2=\"13.917928125\" y2=\"40.961309375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.1914875\" y1=\"38.914071875\" x2=\"13.88490625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.224509375\" y1=\"36.767771875\" x2=\"13.851884375\" y2=\"36.800790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.22450625\" y1=\"36.04133125\" x2=\"13.8518875\" y2=\"36.07435\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.174978125\" y1=\"34.208721875\" x2=\"13.901415625\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.174978125\" y1=\"31.402021875\" x2=\"13.901415625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.158465625\" y1=\"30.031690625\" x2=\"13.917928125\" y2=\"30.064709375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.208\" y1=\"52.006503125\" x2=\"13.9344375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.208\" y1=\"48.605440625\" x2=\"13.9344375\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.224509375\" y1=\"45.518071875\" x2=\"13.917928125\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.208\" y1=\"43.71848125\" x2=\"13.9344375\" y2=\"43.7515\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.224509375\" y1=\"42.31513125\" x2=\"13.917928125\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.191490625\" y1=\"40.9613125\" x2=\"13.950946875\" y2=\"40.99433125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.224509375\" y1=\"38.914071875\" x2=\"13.917928125\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.257528125\" y1=\"36.800790625\" x2=\"13.884909375\" y2=\"36.833809375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.274040625\" y1=\"36.024821875\" x2=\"13.868396875\" y2=\"36.057840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.208\" y1=\"34.208721875\" x2=\"13.9344375\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.208\" y1=\"31.402021875\" x2=\"13.9344375\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.191490625\" y1=\"30.0647125\" x2=\"13.950946875\" y2=\"30.09773125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.24101875\" y1=\"52.006503125\" x2=\"13.96745625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.24101875\" y1=\"48.605440625\" x2=\"13.96745625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.257528125\" y1=\"45.518071875\" x2=\"13.950946875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.24101875\" y1=\"43.6854625\" x2=\"13.96745625\" y2=\"43.71848125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.257528125\" y1=\"42.31513125\" x2=\"13.950946875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.224509375\" y1=\"40.99433125\" x2=\"13.983965625\" y2=\"41.02735\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.257528125\" y1=\"38.914071875\" x2=\"13.950946875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.2740375\" y1=\"36.8173\" x2=\"13.9344375\" y2=\"36.85031875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.29055\" y1=\"36.0083125\" x2=\"13.917925\" y2=\"36.04133125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.24101875\" y1=\"34.208721875\" x2=\"13.96745625\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.24101875\" y1=\"31.402021875\" x2=\"13.96745625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.224509375\" y1=\"30.09773125\" x2=\"13.983965625\" y2=\"30.13075\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.2740375\" y1=\"52.006503125\" x2=\"14.000475\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.2740375\" y1=\"48.605440625\" x2=\"14.000475\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.290546875\" y1=\"45.518071875\" x2=\"13.983965625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.290546875\" y1=\"43.66895\" x2=\"13.983965625\" y2=\"43.70196875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.290546875\" y1=\"42.31513125\" x2=\"13.983965625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.257528125\" y1=\"41.027353125\" x2=\"14.016984375\" y2=\"41.060371875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.290546875\" y1=\"38.914071875\" x2=\"13.983965625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.32356875\" y1=\"36.8338125\" x2=\"13.95094375\" y2=\"36.86683125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.340078125\" y1=\"35.991803125\" x2=\"13.934434375\" y2=\"36.024821875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.2740375\" y1=\"34.208721875\" x2=\"14.000475\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.2740375\" y1=\"31.402021875\" x2=\"14.000475\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.257528125\" y1=\"30.130753125\" x2=\"14.016984375\" y2=\"30.163771875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.307059375\" y1=\"52.006503125\" x2=\"14.033496875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.307059375\" y1=\"48.605440625\" x2=\"14.033496875\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.32356875\" y1=\"45.518071875\" x2=\"14.0169875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.307059375\" y1=\"43.652440625\" x2=\"14.033496875\" y2=\"43.685459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.32356875\" y1=\"42.31513125\" x2=\"14.0169875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.29055\" y1=\"41.060371875\" x2=\"14.05000625\" y2=\"41.093390625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.32356875\" y1=\"38.914071875\" x2=\"14.0169875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.340078125\" y1=\"36.850321875\" x2=\"14.000478125\" y2=\"36.883340625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3565875\" y1=\"35.975290625\" x2=\"13.98396875\" y2=\"36.008309375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.307059375\" y1=\"34.208721875\" x2=\"14.033496875\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.307059375\" y1=\"31.402021875\" x2=\"14.033496875\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.29055\" y1=\"30.163771875\" x2=\"14.05000625\" y2=\"30.196790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.340078125\" y1=\"52.006503125\" x2=\"14.066515625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.340078125\" y1=\"48.605440625\" x2=\"14.066515625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3565875\" y1=\"45.518071875\" x2=\"14.05000625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.340078125\" y1=\"43.652440625\" x2=\"14.066515625\" y2=\"43.685459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.72920625\" y1=\"41.68775\" x2=\"14.6773875\" y2=\"41.72076875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3565875\" y1=\"38.914071875\" x2=\"14.05000625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.373096875\" y1=\"36.883340625\" x2=\"14.033496875\" y2=\"36.916359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.389609375\" y1=\"35.942271875\" x2=\"14.016984375\" y2=\"35.975290625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.340078125\" y1=\"34.208721875\" x2=\"14.066515625\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.72920625\" y1=\"30.79115\" x2=\"14.6773875\" y2=\"30.82416875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3731\" y1=\"52.006503125\" x2=\"14.0995375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3731\" y1=\"48.605440625\" x2=\"14.0995375\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.389609375\" y1=\"45.518071875\" x2=\"14.083028125\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3731\" y1=\"43.652440625\" x2=\"14.0995375\" y2=\"43.685459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.778740625\" y1=\"41.7042625\" x2=\"14.693896875\" y2=\"41.73728125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.389609375\" y1=\"38.914071875\" x2=\"14.083028125\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.40611875\" y1=\"36.883340625\" x2=\"14.06651875\" y2=\"36.916359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.42263125\" y1=\"35.942271875\" x2=\"14.05000625\" y2=\"35.975290625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3731\" y1=\"34.208721875\" x2=\"14.0995375\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.762228125\" y1=\"30.79115\" x2=\"14.710409375\" y2=\"30.82416875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.40611875\" y1=\"52.006503125\" x2=\"14.13255625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.40611875\" y1=\"48.605440625\" x2=\"14.13255625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.422628125\" y1=\"45.518071875\" x2=\"14.116046875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.40611875\" y1=\"43.619421875\" x2=\"14.13255625\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"41.638221875\" x2=\"14.79295625\" y2=\"41.671240625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.422628125\" y1=\"38.914071875\" x2=\"14.116046875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.4391375\" y1=\"36.916359375\" x2=\"14.0995375\" y2=\"36.949378125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.455646875\" y1=\"35.90925\" x2=\"14.083028125\" y2=\"35.94226875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7787375\" y1=\"33.581340625\" x2=\"14.7599375\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.729209375\" y1=\"30.7251125\" x2=\"14.809465625\" y2=\"30.75813125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.4391375\" y1=\"52.006503125\" x2=\"14.165575\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.4391375\" y1=\"48.605440625\" x2=\"14.165575\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.455646875\" y1=\"45.518071875\" x2=\"14.149065625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.4391375\" y1=\"43.619421875\" x2=\"14.165575\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.72920625\" y1=\"41.588690625\" x2=\"14.87550625\" y2=\"41.621709375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.455646875\" y1=\"38.914071875\" x2=\"14.149065625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.455646875\" y1=\"36.932871875\" x2=\"14.149065625\" y2=\"36.965890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.47215625\" y1=\"35.892740625\" x2=\"14.13255625\" y2=\"35.925759375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.81175625\" y1=\"33.581340625\" x2=\"14.79295625\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.72920625\" y1=\"30.692090625\" x2=\"14.87550625\" y2=\"30.725109375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.472159375\" y1=\"52.006503125\" x2=\"14.198596875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.472159375\" y1=\"48.605440625\" x2=\"14.198596875\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.48866875\" y1=\"45.518071875\" x2=\"14.1820875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.472159375\" y1=\"43.619421875\" x2=\"14.198596875\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.729209375\" y1=\"41.555671875\" x2=\"14.941546875\" y2=\"41.588690625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.48866875\" y1=\"38.914071875\" x2=\"14.1820875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.505178125\" y1=\"36.94938125\" x2=\"14.165578125\" y2=\"36.9824\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5216875\" y1=\"35.87623125\" x2=\"14.14906875\" y2=\"35.90925\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.844778125\" y1=\"33.581340625\" x2=\"14.825978125\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.7127\" y1=\"30.6425625\" x2=\"14.95805625\" y2=\"30.67558125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.505178125\" y1=\"52.006503125\" x2=\"14.231615625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.505178125\" y1=\"48.605440625\" x2=\"14.231615625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5216875\" y1=\"45.518071875\" x2=\"14.21510625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.505178125\" y1=\"43.619421875\" x2=\"14.231615625\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.72920625\" y1=\"41.52265\" x2=\"15.0075875\" y2=\"41.55566875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5216875\" y1=\"38.914071875\" x2=\"14.21510625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5216875\" y1=\"36.965890625\" x2=\"14.21510625\" y2=\"36.998909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.538196875\" y1=\"35.859721875\" x2=\"14.198596875\" y2=\"35.892740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.877796875\" y1=\"33.581340625\" x2=\"14.858996875\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.72920625\" y1=\"30.62605\" x2=\"15.0075875\" y2=\"30.65906875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5382\" y1=\"52.006503125\" x2=\"14.2646375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5382\" y1=\"48.605440625\" x2=\"14.2646375\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.554709375\" y1=\"45.518071875\" x2=\"14.248128125\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5382\" y1=\"43.619421875\" x2=\"14.2646375\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.729209375\" y1=\"41.48963125\" x2=\"15.073628125\" y2=\"41.52265\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.554709375\" y1=\"38.914071875\" x2=\"14.248128125\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.57121875\" y1=\"36.9824\" x2=\"14.23161875\" y2=\"37.01541875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.58773125\" y1=\"35.8432125\" x2=\"14.21510625\" y2=\"35.87623125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.91081875\" y1=\"33.581340625\" x2=\"14.89201875\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.729209375\" y1=\"30.59303125\" x2=\"15.073628125\" y2=\"30.62605\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.57121875\" y1=\"52.006503125\" x2=\"14.29765625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.57121875\" y1=\"48.605440625\" x2=\"14.29765625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.587728125\" y1=\"45.518071875\" x2=\"14.281146875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.57121875\" y1=\"43.619421875\" x2=\"14.29765625\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"41.473121875\" x2=\"15.12315625\" y2=\"41.506140625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.587728125\" y1=\"38.914071875\" x2=\"14.281146875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.587728125\" y1=\"36.9989125\" x2=\"14.281146875\" y2=\"37.03193125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6042375\" y1=\"35.8267\" x2=\"14.2646375\" y2=\"35.85971875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.9438375\" y1=\"33.581340625\" x2=\"14.9250375\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.74571875\" y1=\"30.576521875\" x2=\"15.12315625\" y2=\"30.609540625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6042375\" y1=\"52.006503125\" x2=\"14.330675\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6042375\" y1=\"48.605440625\" x2=\"14.330675\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.620746875\" y1=\"45.518071875\" x2=\"14.314165625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6042375\" y1=\"43.619421875\" x2=\"14.330675\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.762228125\" y1=\"41.4566125\" x2=\"15.172684375\" y2=\"41.48963125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.620746875\" y1=\"38.914071875\" x2=\"14.314165625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.620746875\" y1=\"37.03193125\" x2=\"14.314165625\" y2=\"37.06495\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.63725625\" y1=\"35.79368125\" x2=\"14.29765625\" y2=\"35.8267\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.97685625\" y1=\"33.581340625\" x2=\"14.95805625\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"12.762228125\" y1=\"30.5600125\" x2=\"15.172684375\" y2=\"30.59303125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.637259375\" y1=\"52.006503125\" x2=\"14.363696875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.637259375\" y1=\"48.605440625\" x2=\"14.363696875\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.65376875\" y1=\"45.518071875\" x2=\"14.3471875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.637259375\" y1=\"43.619421875\" x2=\"14.363696875\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.637259375\" y1=\"42.298621875\" x2=\"14.363696875\" y2=\"42.331640625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.505178125\" y1=\"40.713659375\" x2=\"14.495778125\" y2=\"40.746678125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.65376875\" y1=\"38.914071875\" x2=\"14.3471875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.65376875\" y1=\"37.03193125\" x2=\"14.3471875\" y2=\"37.06495\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.670278125\" y1=\"35.79368125\" x2=\"14.330678125\" y2=\"35.8267\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.009878125\" y1=\"33.581340625\" x2=\"14.991078125\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.637259375\" y1=\"31.402021875\" x2=\"14.363696875\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5216875\" y1=\"29.80055\" x2=\"14.47926875\" y2=\"29.83356875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.670278125\" y1=\"52.006503125\" x2=\"14.396715625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.670278125\" y1=\"48.605440625\" x2=\"14.396715625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6867875\" y1=\"45.518071875\" x2=\"14.38020625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.670278125\" y1=\"43.619421875\" x2=\"14.396715625\" y2=\"43.652440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6867875\" y1=\"42.31513125\" x2=\"14.38020625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.653765625\" y1=\"40.598090625\" x2=\"14.413228125\" y2=\"40.631109375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6867875\" y1=\"38.914071875\" x2=\"14.38020625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6867875\" y1=\"37.06495\" x2=\"14.38020625\" y2=\"37.09796875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.703296875\" y1=\"35.760659375\" x2=\"14.363696875\" y2=\"35.793678125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.042896875\" y1=\"33.581340625\" x2=\"15.024096875\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.670278125\" y1=\"31.402021875\" x2=\"14.396715625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.653765625\" y1=\"29.701490625\" x2=\"14.413228125\" y2=\"29.734509375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7033\" y1=\"52.006503125\" x2=\"14.4297375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7033\" y1=\"48.605440625\" x2=\"14.4297375\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.719809375\" y1=\"45.518071875\" x2=\"14.413228125\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.686790625\" y1=\"43.63593125\" x2=\"14.446246875\" y2=\"43.66895\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.719809375\" y1=\"42.31513125\" x2=\"14.413228125\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.686790625\" y1=\"40.565071875\" x2=\"14.446246875\" y2=\"40.598090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.719809375\" y1=\"38.914071875\" x2=\"14.413228125\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7033\" y1=\"37.0814625\" x2=\"14.4297375\" y2=\"37.11448125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.719809375\" y1=\"35.74415\" x2=\"14.413228125\" y2=\"35.77716875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.07591875\" y1=\"33.581340625\" x2=\"15.05711875\" y2=\"33.614359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7033\" y1=\"31.402021875\" x2=\"14.4297375\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.686790625\" y1=\"29.668471875\" x2=\"14.446246875\" y2=\"29.701490625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.73631875\" y1=\"52.006503125\" x2=\"14.46275625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.73631875\" y1=\"48.605440625\" x2=\"14.46275625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.752828125\" y1=\"45.518071875\" x2=\"14.446246875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.73631875\" y1=\"43.652440625\" x2=\"14.46275625\" y2=\"43.685459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.752828125\" y1=\"42.31513125\" x2=\"14.446246875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.73631875\" y1=\"40.5485625\" x2=\"14.46275625\" y2=\"40.58158125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.752828125\" y1=\"38.914071875\" x2=\"14.446246875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.752828125\" y1=\"37.097971875\" x2=\"14.446246875\" y2=\"37.130990625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7693375\" y1=\"35.727640625\" x2=\"14.4297375\" y2=\"35.760659375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.73631875\" y1=\"34.208721875\" x2=\"14.46275625\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.73631875\" y1=\"31.402021875\" x2=\"14.46275625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.752828125\" y1=\"29.63545\" x2=\"14.446246875\" y2=\"29.66846875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7693375\" y1=\"52.006503125\" x2=\"14.495775\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7693375\" y1=\"48.605440625\" x2=\"14.495775\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.785846875\" y1=\"45.518071875\" x2=\"14.479265625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7693375\" y1=\"43.652440625\" x2=\"14.495775\" y2=\"43.685459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.785846875\" y1=\"42.31513125\" x2=\"14.479265625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.785846875\" y1=\"40.53205\" x2=\"14.479265625\" y2=\"40.56506875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.785846875\" y1=\"38.914071875\" x2=\"14.479265625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.785846875\" y1=\"37.130990625\" x2=\"14.479265625\" y2=\"37.164009375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.80235625\" y1=\"35.694621875\" x2=\"14.46275625\" y2=\"35.727640625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7693375\" y1=\"34.208721875\" x2=\"14.495775\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7693375\" y1=\"31.402021875\" x2=\"14.495775\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.7693375\" y1=\"29.618940625\" x2=\"14.495775\" y2=\"29.651959375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.802359375\" y1=\"52.006503125\" x2=\"14.528796875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.422628125\" y1=\"50.10785\" x2=\"14.908528125\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.802359375\" y1=\"48.605440625\" x2=\"14.528796875\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.81886875\" y1=\"45.518071875\" x2=\"14.5122875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.802359375\" y1=\"43.652440625\" x2=\"14.528796875\" y2=\"43.685459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.81886875\" y1=\"42.31513125\" x2=\"14.5122875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.802359375\" y1=\"40.515540625\" x2=\"14.528796875\" y2=\"40.548559375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.81886875\" y1=\"38.914071875\" x2=\"14.5122875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.802359375\" y1=\"37.147503125\" x2=\"14.528796875\" y2=\"37.180521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.81886875\" y1=\"35.6781125\" x2=\"14.5122875\" y2=\"35.71113125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.802359375\" y1=\"34.208721875\" x2=\"14.528796875\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.802359375\" y1=\"31.402021875\" x2=\"14.528796875\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.802359375\" y1=\"29.618940625\" x2=\"14.528796875\" y2=\"29.651959375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.835378125\" y1=\"52.006503125\" x2=\"14.561815625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.455646875\" y1=\"50.10785\" x2=\"14.941546875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.835378125\" y1=\"48.605440625\" x2=\"14.561815625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8518875\" y1=\"45.518071875\" x2=\"14.54530625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.835378125\" y1=\"43.6854625\" x2=\"14.561815625\" y2=\"43.71848125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8518875\" y1=\"42.31513125\" x2=\"14.54530625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.835378125\" y1=\"40.515540625\" x2=\"14.561815625\" y2=\"40.548559375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8518875\" y1=\"38.914071875\" x2=\"14.54530625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8518875\" y1=\"37.1640125\" x2=\"14.54530625\" y2=\"37.19703125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.868396875\" y1=\"35.6616\" x2=\"14.528796875\" y2=\"35.69461875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.835378125\" y1=\"34.208721875\" x2=\"14.561815625\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.835378125\" y1=\"31.402021875\" x2=\"14.561815625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.835378125\" y1=\"29.618940625\" x2=\"14.561815625\" y2=\"29.651959375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8684\" y1=\"52.006503125\" x2=\"14.5948375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.48866875\" y1=\"50.10785\" x2=\"14.97456875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8684\" y1=\"48.605440625\" x2=\"14.5948375\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.884909375\" y1=\"45.518071875\" x2=\"14.578328125\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8684\" y1=\"43.6854625\" x2=\"14.5948375\" y2=\"43.71848125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.884909375\" y1=\"42.31513125\" x2=\"14.578328125\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8684\" y1=\"40.515540625\" x2=\"14.5948375\" y2=\"40.548559375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.884909375\" y1=\"38.914071875\" x2=\"14.578328125\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.884909375\" y1=\"37.19703125\" x2=\"14.578328125\" y2=\"37.23005\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.884909375\" y1=\"35.645090625\" x2=\"14.578328125\" y2=\"35.678109375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8684\" y1=\"34.208721875\" x2=\"14.5948375\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8684\" y1=\"31.402021875\" x2=\"14.5948375\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8684\" y1=\"29.618940625\" x2=\"14.5948375\" y2=\"29.651959375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.90141875\" y1=\"52.006503125\" x2=\"14.62785625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5216875\" y1=\"50.10785\" x2=\"15.0075875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.90141875\" y1=\"48.605440625\" x2=\"14.62785625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.917928125\" y1=\"45.518071875\" x2=\"14.611346875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.90141875\" y1=\"43.71848125\" x2=\"14.62785625\" y2=\"43.7515\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.917928125\" y1=\"42.31513125\" x2=\"14.611346875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.90141875\" y1=\"40.515540625\" x2=\"14.62785625\" y2=\"40.548559375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.917928125\" y1=\"38.914071875\" x2=\"14.611346875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.917928125\" y1=\"37.19703125\" x2=\"14.611346875\" y2=\"37.23005\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.917928125\" y1=\"35.612071875\" x2=\"14.611346875\" y2=\"35.645090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.90141875\" y1=\"34.208721875\" x2=\"14.62785625\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.90141875\" y1=\"31.402021875\" x2=\"14.62785625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.90141875\" y1=\"29.618940625\" x2=\"14.62785625\" y2=\"29.651959375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.9344375\" y1=\"52.006503125\" x2=\"14.660875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.55470625\" y1=\"50.10785\" x2=\"15.04060625\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.9344375\" y1=\"48.605440625\" x2=\"14.660875\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.950946875\" y1=\"45.518071875\" x2=\"14.644365625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.901415625\" y1=\"43.7515\" x2=\"14.693896875\" y2=\"43.78451875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.950946875\" y1=\"42.31513125\" x2=\"14.644365625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.950946875\" y1=\"40.53205\" x2=\"14.644365625\" y2=\"40.56506875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.950946875\" y1=\"38.914071875\" x2=\"14.644365625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.950946875\" y1=\"37.23005\" x2=\"14.644365625\" y2=\"37.26306875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.96745625\" y1=\"35.595559375\" x2=\"14.62785625\" y2=\"35.628578125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.9344375\" y1=\"34.208721875\" x2=\"14.660875\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.9344375\" y1=\"31.402021875\" x2=\"14.660875\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.9344375\" y1=\"29.618940625\" x2=\"14.660875\" y2=\"29.651959375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.967459375\" y1=\"52.006503125\" x2=\"14.693896875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.587728125\" y1=\"50.10785\" x2=\"15.073628125\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.967459375\" y1=\"48.605440625\" x2=\"14.693896875\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.98396875\" y1=\"45.518071875\" x2=\"14.6773875\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.934440625\" y1=\"43.784521875\" x2=\"14.726915625\" y2=\"43.817540625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.98396875\" y1=\"42.31513125\" x2=\"14.6773875\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.967459375\" y1=\"40.5485625\" x2=\"14.693896875\" y2=\"40.58158125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.98396875\" y1=\"38.914071875\" x2=\"14.6773875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.967459375\" y1=\"37.2465625\" x2=\"14.693896875\" y2=\"37.27958125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.98396875\" y1=\"35.57905\" x2=\"14.6773875\" y2=\"35.61206875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.967459375\" y1=\"34.208721875\" x2=\"14.693896875\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.967459375\" y1=\"31.402021875\" x2=\"14.693896875\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.967459375\" y1=\"29.6519625\" x2=\"14.693896875\" y2=\"29.68498125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.000478125\" y1=\"52.006503125\" x2=\"14.726915625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.620746875\" y1=\"50.10785\" x2=\"15.106646875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.000478125\" y1=\"48.605440625\" x2=\"14.726915625\" y2=\"48.638459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0169875\" y1=\"45.518071875\" x2=\"14.71040625\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.9344375\" y1=\"43.8505625\" x2=\"14.79295625\" y2=\"43.88358125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0169875\" y1=\"42.31513125\" x2=\"14.71040625\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.98396875\" y1=\"40.565071875\" x2=\"14.743425\" y2=\"40.598090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0169875\" y1=\"38.914071875\" x2=\"14.71040625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0169875\" y1=\"37.263071875\" x2=\"14.71040625\" y2=\"37.296090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.033496875\" y1=\"35.562540625\" x2=\"14.693896875\" y2=\"35.595559375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.000478125\" y1=\"34.208721875\" x2=\"14.726915625\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.000478125\" y1=\"31.402021875\" x2=\"14.726915625\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.98396875\" y1=\"29.668471875\" x2=\"14.743425\" y2=\"29.701490625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0335\" y1=\"52.006503125\" x2=\"14.7599375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.65376875\" y1=\"50.10785\" x2=\"15.13966875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.050009375\" y1=\"48.58893125\" x2=\"14.743428125\" y2=\"48.62195\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.050009375\" y1=\"45.518071875\" x2=\"14.743428125\" y2=\"45.551090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.934440625\" y1=\"43.916603125\" x2=\"14.858996875\" y2=\"43.949621875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.050009375\" y1=\"42.31513125\" x2=\"14.743428125\" y2=\"42.34815\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.000478125\" y1=\"40.6146\" x2=\"14.792959375\" y2=\"40.64761875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.050009375\" y1=\"38.914071875\" x2=\"14.743428125\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.050009375\" y1=\"37.296090625\" x2=\"14.743428125\" y2=\"37.329109375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.06651875\" y1=\"35.529521875\" x2=\"14.72691875\" y2=\"35.562540625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0335\" y1=\"34.208721875\" x2=\"14.7599375\" y2=\"34.241740625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0335\" y1=\"31.402021875\" x2=\"14.7599375\" y2=\"31.435040625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.000478125\" y1=\"29.718\" x2=\"14.792959375\" y2=\"29.75101875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.06651875\" y1=\"52.006503125\" x2=\"14.79295625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6867875\" y1=\"50.10785\" x2=\"15.1726875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.083028125\" y1=\"48.58893125\" x2=\"14.776446875\" y2=\"48.62195\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.24101875\" y1=\"44.6760625\" x2=\"15.61845625\" y2=\"44.70908125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.224509375\" y1=\"41.4566125\" x2=\"15.634965625\" y2=\"41.48963125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.083028125\" y1=\"38.914071875\" x2=\"14.776446875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.06651875\" y1=\"37.312603125\" x2=\"14.79295625\" y2=\"37.345621875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.083028125\" y1=\"35.5130125\" x2=\"14.776446875\" y2=\"35.54603125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.32356875\" y1=\"33.465771875\" x2=\"15.53590625\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.207996875\" y1=\"30.5435\" x2=\"15.651478125\" y2=\"30.57651875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0995375\" y1=\"52.006503125\" x2=\"14.825975\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.71980625\" y1=\"50.10785\" x2=\"15.20570625\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.0995375\" y1=\"48.572421875\" x2=\"14.825975\" y2=\"48.605440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.290546875\" y1=\"44.692571875\" x2=\"15.634965625\" y2=\"44.725590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.257528125\" y1=\"41.4566125\" x2=\"15.667984375\" y2=\"41.48963125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.6867875\" y1=\"38.914071875\" x2=\"15.238725\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.116046875\" y1=\"37.3291125\" x2=\"14.809465625\" y2=\"37.36213125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.13255625\" y1=\"35.4965\" x2=\"14.79295625\" y2=\"35.52951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3565875\" y1=\"33.465771875\" x2=\"15.568925\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.257528125\" y1=\"30.5600125\" x2=\"15.667984375\" y2=\"30.59303125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.132559375\" y1=\"52.006503125\" x2=\"14.858996875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.752828125\" y1=\"50.10785\" x2=\"15.238728125\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.132559375\" y1=\"48.572421875\" x2=\"14.858996875\" y2=\"48.605440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3565875\" y1=\"44.725590625\" x2=\"15.63496875\" y2=\"44.758609375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.307059375\" y1=\"41.473121875\" x2=\"15.684496875\" y2=\"41.506140625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.719809375\" y1=\"38.914071875\" x2=\"15.271746875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.132559375\" y1=\"37.345621875\" x2=\"14.858996875\" y2=\"37.378640625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.14906875\" y1=\"35.479990625\" x2=\"14.8424875\" y2=\"35.513009375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.389609375\" y1=\"33.465771875\" x2=\"15.601946875\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.307059375\" y1=\"30.576521875\" x2=\"15.684496875\" y2=\"30.609540625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.165578125\" y1=\"52.006503125\" x2=\"14.892015625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.785846875\" y1=\"50.10785\" x2=\"15.271746875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.165578125\" y1=\"48.572421875\" x2=\"14.892015625\" y2=\"48.605440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.40611875\" y1=\"44.742103125\" x2=\"15.651475\" y2=\"44.775121875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3565875\" y1=\"41.48963125\" x2=\"15.70100625\" y2=\"41.52265\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.752828125\" y1=\"38.914071875\" x2=\"15.304765625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.1820875\" y1=\"37.36213125\" x2=\"14.87550625\" y2=\"37.39515\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.1820875\" y1=\"35.446971875\" x2=\"14.87550625\" y2=\"35.479990625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.422628125\" y1=\"33.465771875\" x2=\"15.634965625\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.3565875\" y1=\"30.59303125\" x2=\"15.70100625\" y2=\"30.62605\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.1986\" y1=\"52.006503125\" x2=\"14.9250375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.81886875\" y1=\"50.10785\" x2=\"15.30476875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.1986\" y1=\"48.572421875\" x2=\"14.9250375\" y2=\"48.605440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.48866875\" y1=\"44.79163125\" x2=\"15.63496875\" y2=\"44.82465\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.422628125\" y1=\"41.52265\" x2=\"15.701009375\" y2=\"41.55566875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.78585\" y1=\"38.914071875\" x2=\"15.3377875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.215109375\" y1=\"37.39515\" x2=\"14.908528125\" y2=\"37.42816875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.23161875\" y1=\"35.430459375\" x2=\"14.89201875\" y2=\"35.463478125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.45565\" y1=\"33.465771875\" x2=\"15.6679875\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.422628125\" y1=\"30.62605\" x2=\"15.701009375\" y2=\"30.65906875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.23161875\" y1=\"52.006503125\" x2=\"14.95805625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8518875\" y1=\"50.10785\" x2=\"15.3377875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.248128125\" y1=\"48.5559125\" x2=\"14.941546875\" y2=\"48.58893125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.554709375\" y1=\"44.824653125\" x2=\"15.634965625\" y2=\"44.857671875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.472159375\" y1=\"41.5391625\" x2=\"15.717515625\" y2=\"41.57218125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.81886875\" y1=\"38.914071875\" x2=\"15.37080625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.23161875\" y1=\"37.4116625\" x2=\"14.95805625\" y2=\"37.44468125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.248128125\" y1=\"35.41395\" x2=\"14.941546875\" y2=\"35.44696875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.48866875\" y1=\"33.465771875\" x2=\"15.70100625\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.472159375\" y1=\"30.6425625\" x2=\"15.717515625\" y2=\"30.67558125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.2646375\" y1=\"52.006503125\" x2=\"14.991075\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.88490625\" y1=\"50.10785\" x2=\"15.37080625\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.2646375\" y1=\"48.539403125\" x2=\"14.991075\" y2=\"48.572421875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.63725625\" y1=\"44.87418125\" x2=\"15.61845625\" y2=\"44.9072\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.55470625\" y1=\"41.588690625\" x2=\"15.70100625\" y2=\"41.621709375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8518875\" y1=\"38.914071875\" x2=\"15.403825\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.281146875\" y1=\"37.428171875\" x2=\"14.974565625\" y2=\"37.461190625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.281146875\" y1=\"35.38093125\" x2=\"14.974565625\" y2=\"35.41395\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.5216875\" y1=\"33.465771875\" x2=\"15.734025\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.55470625\" y1=\"30.692090625\" x2=\"15.70100625\" y2=\"30.725109375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.297659375\" y1=\"52.006503125\" x2=\"15.024096875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.39671875\" y1=\"50.586640625\" x2=\"14.9250375\" y2=\"50.619659375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.297659375\" y1=\"48.539403125\" x2=\"15.024096875\" y2=\"48.572421875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.61135\" y1=\"46.93793125\" x2=\"14.71040625\" y2=\"46.97095\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.719809375\" y1=\"44.9237125\" x2=\"15.601946875\" y2=\"44.95673125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.62075\" y1=\"41.6217125\" x2=\"15.70100625\" y2=\"41.65473125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.884909375\" y1=\"38.914071875\" x2=\"15.436846875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.297659375\" y1=\"37.44468125\" x2=\"15.024096875\" y2=\"37.4777\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.31416875\" y1=\"35.38093125\" x2=\"15.0075875\" y2=\"35.41395\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.554709375\" y1=\"33.465771875\" x2=\"15.767046875\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.62075\" y1=\"30.7251125\" x2=\"15.70100625\" y2=\"30.75813125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.330678125\" y1=\"52.006503125\" x2=\"15.057115625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.4297375\" y1=\"50.553621875\" x2=\"14.95805625\" y2=\"50.586640625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.330678125\" y1=\"48.539403125\" x2=\"15.057115625\" y2=\"48.572421875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.627859375\" y1=\"46.921421875\" x2=\"14.759934375\" y2=\"46.954440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.8518875\" y1=\"45.022771875\" x2=\"15.53590625\" y2=\"45.055790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.71980625\" y1=\"41.68775\" x2=\"15.6679875\" y2=\"41.72076875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.917928125\" y1=\"38.914071875\" x2=\"15.469865625\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.330678125\" y1=\"37.477703125\" x2=\"15.057115625\" y2=\"37.510721875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.3471875\" y1=\"35.3479125\" x2=\"15.04060625\" y2=\"35.38093125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.587728125\" y1=\"33.465771875\" x2=\"15.800065625\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.71980625\" y1=\"30.79115\" x2=\"15.6679875\" y2=\"30.82416875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.3637\" y1=\"52.006503125\" x2=\"15.0901375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.44625\" y1=\"50.5371125\" x2=\"15.0075875\" y2=\"50.57013125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.3471875\" y1=\"48.522890625\" x2=\"15.10665\" y2=\"48.555909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.627859375\" y1=\"46.8884\" x2=\"14.825978125\" y2=\"46.92141875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.000478125\" y1=\"45.138340625\" x2=\"15.453359375\" y2=\"45.171359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.851890625\" y1=\"41.7868125\" x2=\"15.601946875\" y2=\"41.81983125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.95095\" y1=\"38.914071875\" x2=\"15.5028875\" y2=\"38.947090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.380209375\" y1=\"37.4942125\" x2=\"15.073628125\" y2=\"37.52723125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.39671875\" y1=\"35.3314\" x2=\"15.05711875\" y2=\"35.36441875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.62075\" y1=\"33.465771875\" x2=\"15.8330875\" y2=\"33.498790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"13.851890625\" y1=\"30.8902125\" x2=\"15.601946875\" y2=\"30.92323125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.39671875\" y1=\"52.006503125\" x2=\"15.12315625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.47926875\" y1=\"50.504090625\" x2=\"15.04060625\" y2=\"50.537109375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.39671875\" y1=\"48.50638125\" x2=\"15.12315625\" y2=\"48.5394\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.64436875\" y1=\"46.871890625\" x2=\"14.87550625\" y2=\"46.904909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.4297375\" y1=\"52.006503125\" x2=\"15.156175\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.5122875\" y1=\"50.471071875\" x2=\"15.073625\" y2=\"50.504090625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.4297375\" y1=\"48.50638125\" x2=\"15.156175\" y2=\"48.5394\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.62785625\" y1=\"46.85538125\" x2=\"14.95805625\" y2=\"46.8884\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.462759375\" y1=\"52.006503125\" x2=\"15.189196875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.545309375\" y1=\"50.438053125\" x2=\"15.106646875\" y2=\"50.471071875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.44625\" y1=\"48.489871875\" x2=\"15.20570625\" y2=\"48.522890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.64436875\" y1=\"46.838871875\" x2=\"15.0075875\" y2=\"46.871890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.495778125\" y1=\"52.006503125\" x2=\"15.222215625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.578328125\" y1=\"50.40503125\" x2=\"15.139665625\" y2=\"50.43805\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.47926875\" y1=\"48.489871875\" x2=\"15.238725\" y2=\"48.522890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.627859375\" y1=\"46.8223625\" x2=\"15.090134375\" y2=\"46.85538125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.5288\" y1=\"52.006503125\" x2=\"15.2552375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.61135\" y1=\"50.3720125\" x2=\"15.1726875\" y2=\"50.40503125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.512290625\" y1=\"48.456853125\" x2=\"15.271746875\" y2=\"48.489871875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.64436875\" y1=\"46.80585\" x2=\"15.13966875\" y2=\"46.83886875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.56181875\" y1=\"52.006503125\" x2=\"15.28825625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.64436875\" y1=\"50.338990625\" x2=\"15.20570625\" y2=\"50.372009375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.528796875\" y1=\"48.440340625\" x2=\"15.321278125\" y2=\"48.473359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.62785625\" y1=\"46.789340625\" x2=\"15.22221875\" y2=\"46.822359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.5948375\" y1=\"52.006503125\" x2=\"15.321275\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.6773875\" y1=\"50.305971875\" x2=\"15.238725\" y2=\"50.338990625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.561815625\" y1=\"48.440340625\" x2=\"15.354296875\" y2=\"48.473359375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.644365625\" y1=\"46.77283125\" x2=\"15.271746875\" y2=\"46.80585\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.627859375\" y1=\"52.006503125\" x2=\"15.354296875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.710409375\" y1=\"50.272953125\" x2=\"15.271746875\" y2=\"50.305971875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.594840625\" y1=\"48.407321875\" x2=\"15.387315625\" y2=\"48.440340625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.627859375\" y1=\"46.756321875\" x2=\"15.354296875\" y2=\"46.789340625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.660878125\" y1=\"52.006503125\" x2=\"15.387315625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.726915625\" y1=\"50.256440625\" x2=\"15.321278125\" y2=\"50.289459375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.611346875\" y1=\"48.390809375\" x2=\"15.436846875\" y2=\"48.423828125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.627859375\" y1=\"46.756321875\" x2=\"15.420334375\" y2=\"46.789340625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.6939\" y1=\"52.006503125\" x2=\"15.4203375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.759940625\" y1=\"50.223421875\" x2=\"15.354296875\" y2=\"50.256440625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.627859375\" y1=\"48.3743\" x2=\"15.486378125\" y2=\"48.40731875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.64436875\" y1=\"46.77283125\" x2=\"15.46986875\" y2=\"46.80585\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.72691875\" y1=\"52.006503125\" x2=\"15.45335625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.792959375\" y1=\"50.190403125\" x2=\"15.387315625\" y2=\"50.223421875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.64436875\" y1=\"48.324771875\" x2=\"15.53590625\" y2=\"48.357790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.6773875\" y1=\"46.80585\" x2=\"15.5028875\" y2=\"46.83886875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.7599375\" y1=\"52.006503125\" x2=\"15.486375\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.8424875\" y1=\"50.173890625\" x2=\"15.403825\" y2=\"50.206909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.660878125\" y1=\"48.3082625\" x2=\"15.585434375\" y2=\"48.34128125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.6773875\" y1=\"46.838871875\" x2=\"15.568925\" y2=\"46.871890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.792959375\" y1=\"52.006503125\" x2=\"15.519396875\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.875509375\" y1=\"50.140871875\" x2=\"15.436846875\" y2=\"50.173890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.660878125\" y1=\"48.242221875\" x2=\"15.651478125\" y2=\"48.275240625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.6773875\" y1=\"46.871890625\" x2=\"15.63496875\" y2=\"46.904909375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.825978125\" y1=\"52.006503125\" x2=\"15.552415625\" y2=\"52.039521875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.908528125\" y1=\"50.107853125\" x2=\"15.469865625\" y2=\"50.140871875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.62785625\" y1=\"48.17618125\" x2=\"15.7505375\" y2=\"48.2092\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.6773875\" y1=\"46.93793125\" x2=\"15.70100625\" y2=\"46.97095\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.462759375\" y1=\"52.0065\" x2=\"15.981678125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.94155\" y1=\"50.07483125\" x2=\"15.5028875\" y2=\"50.10785\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.08303125\" y1=\"47.5653125\" x2=\"16.36140625\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.495778125\" y1=\"52.0065\" x2=\"16.014696875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.97456875\" y1=\"50.0418125\" x2=\"15.53590625\" y2=\"50.07483125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.132559375\" y1=\"47.581821875\" x2=\"16.377915625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"6.9342\" y1=\"37.5767625\" x2=\"23.576275\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.528796875\" y1=\"52.0065\" x2=\"16.047715625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.0075875\" y1=\"50.008790625\" x2=\"15.568925\" y2=\"50.041809375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.165578125\" y1=\"47.581821875\" x2=\"16.410934375\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"6.96721875\" y1=\"37.5767625\" x2=\"23.60929375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.56181875\" y1=\"52.0065\" x2=\"16.0807375\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.040609375\" y1=\"49.975771875\" x2=\"15.601946875\" y2=\"50.008790625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.23161875\" y1=\"47.581821875\" x2=\"16.4109375\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.000240625\" y1=\"37.5767625\" x2=\"23.642315625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.5948375\" y1=\"52.0065\" x2=\"16.11375625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.073628125\" y1=\"49.942753125\" x2=\"15.634965625\" y2=\"49.975771875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.281146875\" y1=\"47.565309375\" x2=\"16.427446875\" y2=\"47.598328125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.033259375\" y1=\"37.5767625\" x2=\"23.675334375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.627859375\" y1=\"52.0065\" x2=\"16.146778125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.0901375\" y1=\"49.926240625\" x2=\"15.6845\" y2=\"49.959259375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.33068125\" y1=\"47.581821875\" x2=\"16.44395625\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.06628125\" y1=\"37.5767625\" x2=\"23.70835625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.660878125\" y1=\"52.0065\" x2=\"16.179796875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.13966875\" y1=\"49.90973125\" x2=\"15.70100625\" y2=\"49.94275\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.380209375\" y1=\"47.5653125\" x2=\"16.460465625\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.0993\" y1=\"37.5767625\" x2=\"23.741375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.693896875\" y1=\"52.0065\" x2=\"16.212815625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.1726875\" y1=\"49.8767125\" x2=\"15.734025\" y2=\"49.90973125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.446246875\" y1=\"47.5653125\" x2=\"16.460465625\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.13231875\" y1=\"37.5767625\" x2=\"23.77439375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.72691875\" y1=\"52.0065\" x2=\"16.2458375\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.205709375\" y1=\"49.843690625\" x2=\"15.767046875\" y2=\"49.876709375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.495778125\" y1=\"47.581821875\" x2=\"16.476978125\" y2=\"47.614840625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.165340625\" y1=\"37.5767625\" x2=\"23.807415625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.7599375\" y1=\"52.0065\" x2=\"16.27885625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.2552375\" y1=\"49.82718125\" x2=\"15.78355625\" y2=\"49.8602\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.545309375\" y1=\"47.5653125\" x2=\"16.493484375\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.198359375\" y1=\"37.5767625\" x2=\"23.840434375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.792959375\" y1=\"52.0065\" x2=\"16.311878125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.288259375\" y1=\"49.7941625\" x2=\"15.816578125\" y2=\"49.82718125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.61135\" y1=\"47.5653125\" x2=\"16.4934875\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.23138125\" y1=\"37.5767625\" x2=\"23.87345625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.825978125\" y1=\"52.0065\" x2=\"16.344896875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.3377875\" y1=\"49.77765\" x2=\"15.8330875\" y2=\"49.81066875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.6773875\" y1=\"47.565309375\" x2=\"16.4934875\" y2=\"47.598328125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.2644\" y1=\"37.5767625\" x2=\"23.906475\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.858996875\" y1=\"52.0065\" x2=\"16.377915625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.354296875\" y1=\"49.761140625\" x2=\"15.882615625\" y2=\"49.794159375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.743428125\" y1=\"47.5653125\" x2=\"16.493484375\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.29741875\" y1=\"37.5767625\" x2=\"23.93949375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.89201875\" y1=\"52.0065\" x2=\"16.4109375\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.403828125\" y1=\"49.74463125\" x2=\"15.899128125\" y2=\"49.77765\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.80946875\" y1=\"47.5653125\" x2=\"16.4934875\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.330440625\" y1=\"37.5767625\" x2=\"23.972515625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.9250375\" y1=\"52.0065\" x2=\"16.44395625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.4203375\" y1=\"49.728121875\" x2=\"15.94865625\" y2=\"49.761140625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.875509375\" y1=\"47.5653125\" x2=\"16.493484375\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.363459375\" y1=\"37.5767625\" x2=\"24.005534375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.958059375\" y1=\"52.0065\" x2=\"16.476978125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.46986875\" y1=\"49.711609375\" x2=\"15.96516875\" y2=\"49.744628125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.94155\" y1=\"47.5653125\" x2=\"16.4934875\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.39648125\" y1=\"37.5767625\" x2=\"24.03855625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"14.991078125\" y1=\"52.0065\" x2=\"16.509996875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.5028875\" y1=\"49.711609375\" x2=\"15.9981875\" y2=\"49.744628125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.0075875\" y1=\"47.565309375\" x2=\"16.4934875\" y2=\"47.598328125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.4295\" y1=\"37.5767625\" x2=\"24.071575\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.024096875\" y1=\"52.0065\" x2=\"16.543015625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.53590625\" y1=\"49.678590625\" x2=\"16.03120625\" y2=\"49.711609375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.073628125\" y1=\"47.5653125\" x2=\"16.493484375\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.46251875\" y1=\"37.5767625\" x2=\"24.10459375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.05711875\" y1=\"52.0065\" x2=\"16.5760375\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.568928125\" y1=\"49.678590625\" x2=\"16.064228125\" y2=\"49.711609375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.172690625\" y1=\"47.5653125\" x2=\"16.460465625\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.495540625\" y1=\"37.5767625\" x2=\"24.137615625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.0901375\" y1=\"52.0065\" x2=\"16.60905625\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.61845625\" y1=\"49.66208125\" x2=\"16.0807375\" y2=\"49.6951\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.2552375\" y1=\"47.5488\" x2=\"16.44395625\" y2=\"47.58181875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.528559375\" y1=\"37.5767625\" x2=\"24.170634375\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.123159375\" y1=\"52.0065\" x2=\"16.642078125\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.651478125\" y1=\"49.66208125\" x2=\"16.113759375\" y2=\"49.6951\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.3543\" y1=\"47.548803125\" x2=\"16.4109375\" y2=\"47.581821875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.56158125\" y1=\"37.5767625\" x2=\"24.20365625\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.156178125\" y1=\"52.0065\" x2=\"16.675096875\" y2=\"52.03951875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.684496875\" y1=\"49.66208125\" x2=\"16.146778125\" y2=\"49.6951\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.453359375\" y1=\"47.548803125\" x2=\"16.377915625\" y2=\"47.581821875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"7.5946\" y1=\"37.5767625\" x2=\"24.236675\" y2=\"37.60978125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.70100625\" y1=\"49.645571875\" x2=\"16.19630625\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.601946875\" y1=\"47.5653125\" x2=\"16.295365625\" y2=\"47.59833125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.734028125\" y1=\"49.645571875\" x2=\"16.229328125\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.783559375\" y1=\"47.548803125\" x2=\"16.179796875\" y2=\"47.581821875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.767046875\" y1=\"49.645571875\" x2=\"16.262346875\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.0147\" y1=\"50.520603125\" x2=\"16.0807375\" y2=\"50.553621875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.80006875\" y1=\"49.645571875\" x2=\"16.29536875\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.9981875\" y1=\"50.57013125\" x2=\"16.1632875\" y2=\"50.60315\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.8330875\" y1=\"49.645571875\" x2=\"16.3283875\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.9981875\" y1=\"50.57013125\" x2=\"16.229325\" y2=\"50.60315\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.86610625\" y1=\"49.645571875\" x2=\"16.36140625\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.981678125\" y1=\"50.619659375\" x2=\"16.311878125\" y2=\"50.652678125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.899128125\" y1=\"49.645571875\" x2=\"16.394428125\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.9981875\" y1=\"50.636171875\" x2=\"16.36140625\" y2=\"50.669190625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.932146875\" y1=\"49.645571875\" x2=\"16.427446875\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.981678125\" y1=\"50.65268125\" x2=\"16.443959375\" y2=\"50.6857\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.96516875\" y1=\"49.645571875\" x2=\"16.46046875\" y2=\"49.678590625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.014696875\" y1=\"50.65268125\" x2=\"16.476978125\" y2=\"50.6857\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.9981875\" y1=\"49.678590625\" x2=\"16.4934875\" y2=\"49.711609375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.03120625\" y1=\"50.636171875\" x2=\"16.52650625\" y2=\"50.669190625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.014696875\" y1=\"49.6951\" x2=\"16.543015625\" y2=\"49.72811875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.064228125\" y1=\"50.60315\" x2=\"16.559528125\" y2=\"50.63616875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.04771875\" y1=\"49.6951\" x2=\"16.5760375\" y2=\"49.72811875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.0807375\" y1=\"50.586640625\" x2=\"16.60905625\" y2=\"50.619659375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.04771875\" y1=\"49.728121875\" x2=\"16.642075\" y2=\"49.761140625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.09725\" y1=\"50.5371125\" x2=\"16.6585875\" y2=\"50.57013125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.04771875\" y1=\"49.761140625\" x2=\"16.70811875\" y2=\"49.794159375\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.734028125\" y1=\"50.140871875\" x2=\"17.087846875\" y2=\"50.173890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.767046875\" y1=\"50.140871875\" x2=\"17.120865625\" y2=\"50.173890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.833090625\" y1=\"50.140871875\" x2=\"17.120865625\" y2=\"50.173890625\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.88261875\" y1=\"50.1243625\" x2=\"17.137375\" y2=\"50.15738125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.915640625\" y1=\"50.1243625\" x2=\"17.170396875\" y2=\"50.15738125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"15.981678125\" y1=\"50.1243625\" x2=\"17.170396875\" y2=\"50.15738125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.04771875\" y1=\"50.1243625\" x2=\"17.17039375\" y2=\"50.15738125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.080740625\" y1=\"50.1243625\" x2=\"17.203415625\" y2=\"50.15738125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.146778125\" y1=\"50.1243625\" x2=\"17.203415625\" y2=\"50.15738125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.21281875\" y1=\"50.124359375\" x2=\"17.20341875\" y2=\"50.157378125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.29536875\" y1=\"50.107853125\" x2=\"17.18690625\" y2=\"50.140871875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.37791875\" y1=\"50.1243625\" x2=\"17.17039375\" y2=\"50.15738125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.46046875\" y1=\"50.10785\" x2=\"17.1538875\" y2=\"50.14086875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.559528125\" y1=\"50.107853125\" x2=\"17.120865625\" y2=\"50.140871875\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"16.70811875\" y1=\"50.124359375\" x2=\"17.03831875\" y2=\"50.157378125\" layer=\"200\" rot=\"R270\"/>\n<rectangle x1=\"65.6971\" y1=\"26.6827\" x2=\"72.1741\" y2=\"26.7081\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"26.7081\" x2=\"72.1741\" y2=\"26.7335\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"26.7335\" x2=\"72.1741\" y2=\"26.7589\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"26.7589\" x2=\"72.1741\" y2=\"26.7843\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"26.7843\" x2=\"72.1741\" y2=\"26.8097\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"27.3177\" x2=\"68.0847\" y2=\"27.3431\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"27.3177\" x2=\"69.3547\" y2=\"27.3431\" layer=\"200\"/>\n<rectangle x1=\"67.7291\" y1=\"27.3431\" x2=\"68.1863\" y2=\"27.3685\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"27.3431\" x2=\"69.4563\" y2=\"27.3685\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.3431\" x2=\"70.7009\" y2=\"27.3685\" layer=\"200\"/>\n<rectangle x1=\"67.6529\" y1=\"27.3685\" x2=\"68.2371\" y2=\"27.3939\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"27.3685\" x2=\"69.5071\" y2=\"27.3939\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.3685\" x2=\"70.7009\" y2=\"27.3939\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"27.3939\" x2=\"68.2879\" y2=\"27.4193\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"27.3939\" x2=\"69.5579\" y2=\"27.4193\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.3939\" x2=\"70.7009\" y2=\"27.4193\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"27.4193\" x2=\"68.3133\" y2=\"27.4447\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"27.4193\" x2=\"69.5833\" y2=\"27.4447\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.4193\" x2=\"70.7009\" y2=\"27.4447\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"27.4447\" x2=\"68.3387\" y2=\"27.4701\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"27.4447\" x2=\"69.6087\" y2=\"27.4701\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.4447\" x2=\"70.7009\" y2=\"27.4701\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"27.4701\" x2=\"68.3641\" y2=\"27.4955\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"27.4701\" x2=\"69.6341\" y2=\"27.4955\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.4701\" x2=\"70.7009\" y2=\"27.4955\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"27.4955\" x2=\"68.3895\" y2=\"27.5209\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"27.4955\" x2=\"69.6595\" y2=\"27.5209\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.4955\" x2=\"70.7009\" y2=\"27.5209\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"27.5209\" x2=\"68.4149\" y2=\"27.5463\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"27.5209\" x2=\"69.6595\" y2=\"27.5463\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.5209\" x2=\"70.7009\" y2=\"27.5463\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"27.5463\" x2=\"68.4149\" y2=\"27.5717\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"27.5463\" x2=\"69.6849\" y2=\"27.5717\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.5463\" x2=\"70.7009\" y2=\"27.5717\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"27.5717\" x2=\"67.8815\" y2=\"27.5971\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"27.5717\" x2=\"68.4403\" y2=\"27.5971\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"27.5717\" x2=\"69.1515\" y2=\"27.5971\" layer=\"200\"/>\n<rectangle x1=\"69.3293\" y1=\"27.5717\" x2=\"69.7103\" y2=\"27.5971\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.5717\" x2=\"70.7009\" y2=\"27.5971\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"27.5971\" x2=\"67.8053\" y2=\"27.6225\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"27.5971\" x2=\"68.4403\" y2=\"27.6225\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"27.5971\" x2=\"69.1007\" y2=\"27.6225\" layer=\"200\"/>\n<rectangle x1=\"69.3801\" y1=\"27.5971\" x2=\"69.7103\" y2=\"27.6225\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.5971\" x2=\"70.2183\" y2=\"27.6225\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"27.6225\" x2=\"67.7545\" y2=\"27.6479\" layer=\"200\"/>\n<rectangle x1=\"68.1609\" y1=\"27.6225\" x2=\"68.4403\" y2=\"27.6479\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"27.6225\" x2=\"69.0753\" y2=\"27.6479\" layer=\"200\"/>\n<rectangle x1=\"69.4055\" y1=\"27.6225\" x2=\"69.7103\" y2=\"27.6479\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.6225\" x2=\"70.2183\" y2=\"27.6479\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"27.6479\" x2=\"67.7037\" y2=\"27.6733\" layer=\"200\"/>\n<rectangle x1=\"68.1609\" y1=\"27.6479\" x2=\"68.4657\" y2=\"27.6733\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"27.6479\" x2=\"69.0499\" y2=\"27.6733\" layer=\"200\"/>\n<rectangle x1=\"69.4309\" y1=\"27.6479\" x2=\"69.6849\" y2=\"27.6733\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.6479\" x2=\"70.2183\" y2=\"27.6733\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"27.6733\" x2=\"67.6783\" y2=\"27.6987\" layer=\"200\"/>\n<rectangle x1=\"68.1863\" y1=\"27.6733\" x2=\"68.4657\" y2=\"27.6987\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"27.6733\" x2=\"69.0245\" y2=\"27.6987\" layer=\"200\"/>\n<rectangle x1=\"69.4563\" y1=\"27.6733\" x2=\"69.6341\" y2=\"27.6987\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.6733\" x2=\"70.2183\" y2=\"27.6987\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"27.6987\" x2=\"67.6529\" y2=\"27.7241\" layer=\"200\"/>\n<rectangle x1=\"68.1863\" y1=\"27.6987\" x2=\"68.4657\" y2=\"27.7241\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"27.6987\" x2=\"69.0245\" y2=\"27.7241\" layer=\"200\"/>\n<rectangle x1=\"69.4817\" y1=\"27.6987\" x2=\"69.6087\" y2=\"27.7241\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.6987\" x2=\"70.2183\" y2=\"27.7241\" layer=\"200\"/>\n<rectangle x1=\"68.1863\" y1=\"27.7241\" x2=\"68.4657\" y2=\"27.7495\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"27.7241\" x2=\"68.9991\" y2=\"27.7495\" layer=\"200\"/>\n<rectangle x1=\"69.4817\" y1=\"27.7241\" x2=\"69.5579\" y2=\"27.7495\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.7241\" x2=\"70.2183\" y2=\"27.7495\" layer=\"200\"/>\n<rectangle x1=\"68.1863\" y1=\"27.7495\" x2=\"68.4657\" y2=\"27.7749\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"27.7495\" x2=\"68.9991\" y2=\"27.7749\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.7495\" x2=\"70.2183\" y2=\"27.7749\" layer=\"200\"/>\n<rectangle x1=\"68.1863\" y1=\"27.7749\" x2=\"68.4657\" y2=\"27.8003\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"27.7749\" x2=\"68.9737\" y2=\"27.8003\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.7749\" x2=\"70.2183\" y2=\"27.8003\" layer=\"200\"/>\n<rectangle x1=\"68.1609\" y1=\"27.8003\" x2=\"68.4657\" y2=\"27.8257\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"27.8003\" x2=\"68.9737\" y2=\"27.8257\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.8003\" x2=\"70.2183\" y2=\"27.8257\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"27.8257\" x2=\"68.4657\" y2=\"27.8511\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"27.8257\" x2=\"68.9737\" y2=\"27.8511\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.8257\" x2=\"70.2183\" y2=\"27.8511\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"27.8511\" x2=\"68.4403\" y2=\"27.8765\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"27.8511\" x2=\"68.9737\" y2=\"27.8765\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.8511\" x2=\"70.2183\" y2=\"27.8765\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"27.8765\" x2=\"68.4403\" y2=\"27.9019\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"27.8765\" x2=\"68.9737\" y2=\"27.9019\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.8765\" x2=\"70.2183\" y2=\"27.9019\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"27.9019\" x2=\"68.4403\" y2=\"27.9273\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"27.9019\" x2=\"68.9737\" y2=\"27.9273\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.9019\" x2=\"70.2183\" y2=\"27.9273\" layer=\"200\"/>\n<rectangle x1=\"67.7291\" y1=\"27.9273\" x2=\"68.4149\" y2=\"27.9527\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"27.9273\" x2=\"68.9737\" y2=\"27.9527\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.9273\" x2=\"70.2183\" y2=\"27.9527\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"27.9527\" x2=\"68.4149\" y2=\"27.9781\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"27.9527\" x2=\"68.9737\" y2=\"27.9781\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.9527\" x2=\"70.2183\" y2=\"27.9781\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"27.9781\" x2=\"68.3895\" y2=\"28.0035\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"27.9781\" x2=\"68.9737\" y2=\"28.0035\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"27.9781\" x2=\"70.2183\" y2=\"28.0035\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"28.0035\" x2=\"68.3641\" y2=\"28.0289\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"28.0035\" x2=\"68.9737\" y2=\"28.0289\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.0035\" x2=\"70.2183\" y2=\"28.0289\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"28.0289\" x2=\"68.3387\" y2=\"28.0543\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"28.0289\" x2=\"68.9737\" y2=\"28.0543\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.0289\" x2=\"70.2183\" y2=\"28.0543\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"28.0543\" x2=\"68.2879\" y2=\"28.0797\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"28.0543\" x2=\"68.9737\" y2=\"28.0797\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.0543\" x2=\"70.2183\" y2=\"28.0797\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"28.0797\" x2=\"68.2371\" y2=\"28.1051\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"28.0797\" x2=\"68.9737\" y2=\"28.1051\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.0797\" x2=\"70.2183\" y2=\"28.1051\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"28.1051\" x2=\"68.1863\" y2=\"28.1305\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"28.1051\" x2=\"68.9737\" y2=\"28.1305\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.1051\" x2=\"70.2183\" y2=\"28.1305\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"28.1305\" x2=\"68.0593\" y2=\"28.1559\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"28.1305\" x2=\"68.9737\" y2=\"28.1559\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.1305\" x2=\"70.2183\" y2=\"28.1559\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"28.1559\" x2=\"67.9069\" y2=\"28.1813\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"28.1559\" x2=\"68.9737\" y2=\"28.1813\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.1559\" x2=\"70.2183\" y2=\"28.1813\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"28.1813\" x2=\"67.8307\" y2=\"28.2067\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"28.1813\" x2=\"68.9737\" y2=\"28.2067\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.1813\" x2=\"70.2183\" y2=\"28.2067\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"28.2067\" x2=\"67.8053\" y2=\"28.2321\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"28.2067\" x2=\"68.9991\" y2=\"28.2321\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.2067\" x2=\"70.2183\" y2=\"28.2321\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"28.2321\" x2=\"67.7799\" y2=\"28.2575\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"28.2321\" x2=\"68.9991\" y2=\"28.2575\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.2321\" x2=\"70.2183\" y2=\"28.2575\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"28.2575\" x2=\"67.7799\" y2=\"28.2829\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"28.2575\" x2=\"68.9991\" y2=\"28.2829\" layer=\"200\"/>\n<rectangle x1=\"69.4817\" y1=\"28.2575\" x2=\"69.5325\" y2=\"28.2829\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.2575\" x2=\"70.2183\" y2=\"28.2829\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"28.2829\" x2=\"67.7799\" y2=\"28.3083\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"28.2829\" x2=\"69.0245\" y2=\"28.3083\" layer=\"200\"/>\n<rectangle x1=\"69.4563\" y1=\"28.2829\" x2=\"69.5833\" y2=\"28.3083\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.2829\" x2=\"70.2183\" y2=\"28.3083\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"28.3083\" x2=\"67.7799\" y2=\"28.3337\" layer=\"200\"/>\n<rectangle x1=\"68.2371\" y1=\"28.3083\" x2=\"68.2625\" y2=\"28.3337\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"28.3083\" x2=\"69.0245\" y2=\"28.3337\" layer=\"200\"/>\n<rectangle x1=\"69.4563\" y1=\"28.3083\" x2=\"69.6087\" y2=\"28.3337\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.3083\" x2=\"70.2183\" y2=\"28.3337\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"28.3337\" x2=\"67.7799\" y2=\"28.3591\" layer=\"200\"/>\n<rectangle x1=\"68.2117\" y1=\"28.3337\" x2=\"68.2879\" y2=\"28.3591\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"28.3337\" x2=\"69.0499\" y2=\"28.3591\" layer=\"200\"/>\n<rectangle x1=\"69.4309\" y1=\"28.3337\" x2=\"69.6595\" y2=\"28.3591\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.3337\" x2=\"70.2183\" y2=\"28.3591\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"28.3591\" x2=\"67.8053\" y2=\"28.3845\" layer=\"200\"/>\n<rectangle x1=\"68.1863\" y1=\"28.3591\" x2=\"68.3133\" y2=\"28.3845\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"28.3591\" x2=\"69.0753\" y2=\"28.3845\" layer=\"200\"/>\n<rectangle x1=\"69.4055\" y1=\"28.3591\" x2=\"69.7103\" y2=\"28.3845\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.3591\" x2=\"70.2183\" y2=\"28.3845\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"28.3845\" x2=\"67.8307\" y2=\"28.4099\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"28.3845\" x2=\"68.3387\" y2=\"28.4099\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"28.3845\" x2=\"69.1007\" y2=\"28.4099\" layer=\"200\"/>\n<rectangle x1=\"69.3801\" y1=\"28.3845\" x2=\"69.7103\" y2=\"28.4099\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.3845\" x2=\"70.2183\" y2=\"28.4099\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"28.4099\" x2=\"67.8815\" y2=\"28.4353\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"28.4099\" x2=\"68.3641\" y2=\"28.4353\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"28.4099\" x2=\"69.1515\" y2=\"28.4353\" layer=\"200\"/>\n<rectangle x1=\"69.3293\" y1=\"28.4099\" x2=\"69.7103\" y2=\"28.4353\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.4099\" x2=\"70.2183\" y2=\"28.4353\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"28.4353\" x2=\"68.3895\" y2=\"28.4607\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"28.4353\" x2=\"69.6849\" y2=\"28.4607\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.4353\" x2=\"70.2183\" y2=\"28.4607\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"28.4607\" x2=\"68.4149\" y2=\"28.4861\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"28.4607\" x2=\"69.6849\" y2=\"28.4861\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.4607\" x2=\"70.2183\" y2=\"28.4861\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"28.4861\" x2=\"68.4403\" y2=\"28.5115\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"28.4861\" x2=\"69.6595\" y2=\"28.5115\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.4861\" x2=\"70.2183\" y2=\"28.5115\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"28.5115\" x2=\"68.4149\" y2=\"28.5369\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"28.5115\" x2=\"69.6341\" y2=\"28.5369\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.5115\" x2=\"70.2183\" y2=\"28.5369\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"28.5369\" x2=\"68.3895\" y2=\"28.5623\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"28.5369\" x2=\"69.6087\" y2=\"28.5623\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.5369\" x2=\"70.2183\" y2=\"28.5623\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"28.5623\" x2=\"68.3641\" y2=\"28.5877\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"28.5623\" x2=\"69.5833\" y2=\"28.5877\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.5623\" x2=\"70.2183\" y2=\"28.5877\" layer=\"200\"/>\n<rectangle x1=\"67.6529\" y1=\"28.5877\" x2=\"68.3387\" y2=\"28.6131\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"28.5877\" x2=\"69.5579\" y2=\"28.6131\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.5877\" x2=\"70.2183\" y2=\"28.6131\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"28.6131\" x2=\"68.2879\" y2=\"28.6385\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"28.6131\" x2=\"69.5071\" y2=\"28.6385\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.6131\" x2=\"70.2183\" y2=\"28.6385\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"28.6385\" x2=\"68.2117\" y2=\"28.6639\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"28.6385\" x2=\"69.4563\" y2=\"28.6639\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"28.6385\" x2=\"70.2183\" y2=\"28.6639\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"28.6639\" x2=\"68.1355\" y2=\"28.6893\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"28.6639\" x2=\"69.3801\" y2=\"28.6893\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"29.2227\" x2=\"72.1741\" y2=\"29.2481\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"29.2481\" x2=\"72.1741\" y2=\"29.2735\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"29.2735\" x2=\"72.1741\" y2=\"29.2989\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"29.2989\" x2=\"72.1741\" y2=\"29.3243\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"29.3243\" x2=\"72.1741\" y2=\"29.3497\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"29.8831\" x2=\"67.9323\" y2=\"29.9085\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"29.9085\" x2=\"68.0339\" y2=\"29.9339\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"29.9085\" x2=\"69.1769\" y2=\"29.9339\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"29.9085\" x2=\"69.9643\" y2=\"29.9339\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"29.9085\" x2=\"70.8787\" y2=\"29.9339\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"29.9339\" x2=\"68.0847\" y2=\"29.9593\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"29.9339\" x2=\"69.2531\" y2=\"29.9593\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"29.9339\" x2=\"69.9897\" y2=\"29.9593\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"29.9339\" x2=\"70.8787\" y2=\"29.9593\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"29.9593\" x2=\"68.1355\" y2=\"29.9847\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"29.9593\" x2=\"69.3293\" y2=\"29.9847\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"29.9593\" x2=\"69.9897\" y2=\"29.9847\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"29.9593\" x2=\"70.8533\" y2=\"29.9847\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"29.9847\" x2=\"68.1609\" y2=\"30.0101\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"29.9847\" x2=\"69.3547\" y2=\"30.0101\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"29.9847\" x2=\"69.9897\" y2=\"30.0101\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"29.9847\" x2=\"70.8533\" y2=\"30.0101\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"30.0101\" x2=\"68.1863\" y2=\"30.0355\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.0101\" x2=\"69.4055\" y2=\"30.0355\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"30.0101\" x2=\"70.0151\" y2=\"30.0355\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"30.0101\" x2=\"70.8533\" y2=\"30.0355\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.0355\" x2=\"68.2117\" y2=\"30.0609\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.0355\" x2=\"69.4309\" y2=\"30.0609\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"30.0355\" x2=\"70.0151\" y2=\"30.0609\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"30.0355\" x2=\"70.8279\" y2=\"30.0609\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"30.0609\" x2=\"68.2371\" y2=\"30.0863\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.0609\" x2=\"69.4563\" y2=\"30.0863\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"30.0609\" x2=\"70.0151\" y2=\"30.0863\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"30.0609\" x2=\"70.8279\" y2=\"30.0863\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"30.0863\" x2=\"68.2625\" y2=\"30.1117\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.0863\" x2=\"69.4817\" y2=\"30.1117\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"30.0863\" x2=\"70.0151\" y2=\"30.1117\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"30.0863\" x2=\"70.8279\" y2=\"30.1117\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"30.1117\" x2=\"68.2625\" y2=\"30.1371\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.1117\" x2=\"69.4817\" y2=\"30.1371\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"30.1117\" x2=\"70.0405\" y2=\"30.1371\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"30.1117\" x2=\"70.8025\" y2=\"30.1371\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.1371\" x2=\"67.7291\" y2=\"30.1625\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"30.1371\" x2=\"68.2879\" y2=\"30.1625\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.1371\" x2=\"69.5071\" y2=\"30.1625\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"30.1371\" x2=\"70.0405\" y2=\"30.1625\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"30.1371\" x2=\"70.8025\" y2=\"30.1625\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"30.1625\" x2=\"67.6529\" y2=\"30.1879\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"30.1625\" x2=\"68.2879\" y2=\"30.1879\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.1625\" x2=\"68.8467\" y2=\"30.1879\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"30.1625\" x2=\"69.5325\" y2=\"30.1879\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"30.1625\" x2=\"70.0405\" y2=\"30.1879\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"30.1625\" x2=\"70.8025\" y2=\"30.1879\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"30.1879\" x2=\"67.6021\" y2=\"30.2133\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"30.1879\" x2=\"68.2879\" y2=\"30.2133\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.1879\" x2=\"68.8467\" y2=\"30.2133\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"30.1879\" x2=\"69.5325\" y2=\"30.2133\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"30.1879\" x2=\"70.0659\" y2=\"30.2133\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"30.1879\" x2=\"70.7771\" y2=\"30.2133\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"30.2133\" x2=\"67.5513\" y2=\"30.2387\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"30.2133\" x2=\"68.3133\" y2=\"30.2387\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.2133\" x2=\"68.8467\" y2=\"30.2387\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"30.2133\" x2=\"69.5325\" y2=\"30.2387\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"30.2133\" x2=\"70.7771\" y2=\"30.2387\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"30.2387\" x2=\"67.5259\" y2=\"30.2641\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"30.2387\" x2=\"68.3133\" y2=\"30.2641\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.2387\" x2=\"68.8467\" y2=\"30.2641\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"30.2387\" x2=\"69.5579\" y2=\"30.2641\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"30.2387\" x2=\"70.7771\" y2=\"30.2641\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"30.2641\" x2=\"67.5005\" y2=\"30.2895\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"30.2641\" x2=\"68.3133\" y2=\"30.2895\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.2641\" x2=\"68.8467\" y2=\"30.2895\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"30.2641\" x2=\"69.5579\" y2=\"30.2895\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"30.2641\" x2=\"70.7517\" y2=\"30.2895\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"30.2895\" x2=\"68.3133\" y2=\"30.3149\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.2895\" x2=\"68.8467\" y2=\"30.3149\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"30.2895\" x2=\"69.5833\" y2=\"30.3149\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"30.2895\" x2=\"70.7517\" y2=\"30.3149\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"30.3149\" x2=\"68.3133\" y2=\"30.3403\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.3149\" x2=\"68.8467\" y2=\"30.3403\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"30.3149\" x2=\"69.5833\" y2=\"30.3403\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"30.3149\" x2=\"70.7517\" y2=\"30.3403\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"30.3403\" x2=\"68.3133\" y2=\"30.3657\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.3403\" x2=\"68.8467\" y2=\"30.3657\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"30.3403\" x2=\"69.5833\" y2=\"30.3657\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"30.3403\" x2=\"70.7263\" y2=\"30.3657\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"30.3657\" x2=\"68.3133\" y2=\"30.3911\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.3657\" x2=\"68.8467\" y2=\"30.3911\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.3657\" x2=\"69.5833\" y2=\"30.3911\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"30.3657\" x2=\"70.7263\" y2=\"30.3911\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"30.3911\" x2=\"68.3133\" y2=\"30.4165\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.3911\" x2=\"68.8467\" y2=\"30.4165\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.3911\" x2=\"69.5833\" y2=\"30.4165\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"30.3911\" x2=\"70.7263\" y2=\"30.4165\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"30.4165\" x2=\"68.2879\" y2=\"30.4419\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.4165\" x2=\"68.8467\" y2=\"30.4419\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.4165\" x2=\"69.6087\" y2=\"30.4419\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"30.4165\" x2=\"70.7009\" y2=\"30.4419\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"30.4419\" x2=\"68.2879\" y2=\"30.4673\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.4419\" x2=\"68.8467\" y2=\"30.4673\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.4419\" x2=\"69.6087\" y2=\"30.4673\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"30.4419\" x2=\"70.7009\" y2=\"30.4673\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"30.4673\" x2=\"68.2879\" y2=\"30.4927\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.4673\" x2=\"68.8467\" y2=\"30.4927\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.4673\" x2=\"69.6087\" y2=\"30.4927\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"30.4673\" x2=\"70.1421\" y2=\"30.4927\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"30.4673\" x2=\"70.7009\" y2=\"30.4927\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"30.4927\" x2=\"68.2625\" y2=\"30.5181\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.4927\" x2=\"68.8467\" y2=\"30.5181\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.4927\" x2=\"69.6087\" y2=\"30.5181\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"30.4927\" x2=\"70.1421\" y2=\"30.5181\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"30.4927\" x2=\"70.7009\" y2=\"30.5181\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"30.5181\" x2=\"68.2625\" y2=\"30.5435\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.5181\" x2=\"68.8467\" y2=\"30.5435\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.5181\" x2=\"69.6087\" y2=\"30.5435\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"30.5181\" x2=\"70.1421\" y2=\"30.5435\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"30.5181\" x2=\"70.6755\" y2=\"30.5435\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"30.5435\" x2=\"68.2371\" y2=\"30.5689\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.5435\" x2=\"68.8467\" y2=\"30.5689\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.5435\" x2=\"69.6087\" y2=\"30.5689\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"30.5435\" x2=\"70.1421\" y2=\"30.5689\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"30.5435\" x2=\"70.6755\" y2=\"30.5689\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"30.5689\" x2=\"68.2117\" y2=\"30.5943\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.5689\" x2=\"68.8467\" y2=\"30.5943\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.5689\" x2=\"69.6087\" y2=\"30.5943\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"30.5689\" x2=\"70.1675\" y2=\"30.5943\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"30.5689\" x2=\"70.6755\" y2=\"30.5943\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"30.5943\" x2=\"68.1863\" y2=\"30.6197\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.5943\" x2=\"68.8467\" y2=\"30.6197\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.5943\" x2=\"69.6087\" y2=\"30.6197\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"30.5943\" x2=\"70.1675\" y2=\"30.6197\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"30.5943\" x2=\"70.6501\" y2=\"30.6197\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"30.6197\" x2=\"68.1355\" y2=\"30.6451\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.6197\" x2=\"68.8467\" y2=\"30.6451\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.6197\" x2=\"69.6087\" y2=\"30.6451\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"30.6197\" x2=\"70.1675\" y2=\"30.6451\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"30.6197\" x2=\"70.6501\" y2=\"30.6451\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"30.6451\" x2=\"68.0847\" y2=\"30.6705\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.6451\" x2=\"68.8467\" y2=\"30.6705\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.6451\" x2=\"69.6087\" y2=\"30.6705\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"30.6451\" x2=\"70.1929\" y2=\"30.6705\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"30.6451\" x2=\"70.6501\" y2=\"30.6705\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"30.6705\" x2=\"68.0339\" y2=\"30.6959\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.6705\" x2=\"68.8467\" y2=\"30.6959\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.6705\" x2=\"69.6087\" y2=\"30.6959\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"30.6705\" x2=\"70.1929\" y2=\"30.6959\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"30.6705\" x2=\"70.6247\" y2=\"30.6959\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"30.6959\" x2=\"67.9069\" y2=\"30.7213\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.6959\" x2=\"68.8467\" y2=\"30.7213\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.6959\" x2=\"69.6087\" y2=\"30.7213\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"30.6959\" x2=\"70.1929\" y2=\"30.7213\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"30.6959\" x2=\"70.6247\" y2=\"30.7213\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"30.7213\" x2=\"67.7545\" y2=\"30.7467\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.7213\" x2=\"68.8467\" y2=\"30.7467\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.7213\" x2=\"69.5833\" y2=\"30.7467\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"30.7213\" x2=\"70.1929\" y2=\"30.7467\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"30.7213\" x2=\"70.6247\" y2=\"30.7467\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.7467\" x2=\"67.6783\" y2=\"30.7721\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.7467\" x2=\"68.8467\" y2=\"30.7721\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"30.7467\" x2=\"69.5833\" y2=\"30.7721\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"30.7467\" x2=\"70.2183\" y2=\"30.7721\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"30.7467\" x2=\"70.5993\" y2=\"30.7721\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.7721\" x2=\"67.6529\" y2=\"30.7975\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.7721\" x2=\"68.8467\" y2=\"30.7975\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"30.7721\" x2=\"69.5833\" y2=\"30.7975\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"30.7721\" x2=\"70.2183\" y2=\"30.7975\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"30.7721\" x2=\"70.5993\" y2=\"30.7975\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.7975\" x2=\"67.6275\" y2=\"30.8229\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.7975\" x2=\"68.8467\" y2=\"30.8229\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"30.7975\" x2=\"69.5833\" y2=\"30.8229\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"30.7975\" x2=\"70.2183\" y2=\"30.8229\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"30.7975\" x2=\"70.5993\" y2=\"30.8229\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.8229\" x2=\"67.6275\" y2=\"30.8483\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.8229\" x2=\"68.8467\" y2=\"30.8483\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"30.8229\" x2=\"69.5833\" y2=\"30.8483\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"30.8229\" x2=\"70.2437\" y2=\"30.8483\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"30.8229\" x2=\"70.5739\" y2=\"30.8483\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.8483\" x2=\"67.6275\" y2=\"30.8737\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.8483\" x2=\"68.8467\" y2=\"30.8737\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"30.8483\" x2=\"69.5579\" y2=\"30.8737\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"30.8483\" x2=\"70.2437\" y2=\"30.8737\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"30.8483\" x2=\"70.5739\" y2=\"30.8737\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.8737\" x2=\"67.6275\" y2=\"30.8991\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"30.8737\" x2=\"68.1101\" y2=\"30.8991\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.8737\" x2=\"68.8467\" y2=\"30.8991\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"30.8737\" x2=\"69.5579\" y2=\"30.8991\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"30.8737\" x2=\"70.2437\" y2=\"30.8991\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"30.8737\" x2=\"70.5739\" y2=\"30.8991\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.8991\" x2=\"67.6275\" y2=\"30.9245\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"30.8991\" x2=\"68.1355\" y2=\"30.9245\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.8991\" x2=\"68.8467\" y2=\"30.9245\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"30.8991\" x2=\"69.5325\" y2=\"30.9245\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"30.8991\" x2=\"70.2437\" y2=\"30.9245\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"30.8991\" x2=\"70.5485\" y2=\"30.9245\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"30.9245\" x2=\"67.6529\" y2=\"30.9499\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"30.9245\" x2=\"68.1609\" y2=\"30.9499\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.9245\" x2=\"68.8467\" y2=\"30.9499\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"30.9245\" x2=\"69.5325\" y2=\"30.9499\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"30.9245\" x2=\"70.2691\" y2=\"30.9499\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"30.9245\" x2=\"70.5485\" y2=\"30.9499\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"30.9499\" x2=\"67.6783\" y2=\"30.9753\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"30.9499\" x2=\"68.1863\" y2=\"30.9753\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.9499\" x2=\"68.8467\" y2=\"30.9753\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"30.9499\" x2=\"69.5325\" y2=\"30.9753\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"30.9499\" x2=\"70.5485\" y2=\"30.9753\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"30.9753\" x2=\"67.7291\" y2=\"31.0007\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"30.9753\" x2=\"68.2117\" y2=\"31.0007\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"30.9753\" x2=\"69.5071\" y2=\"31.0007\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"30.9753\" x2=\"70.5231\" y2=\"31.0007\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"31.0007\" x2=\"68.2371\" y2=\"31.0261\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.0007\" x2=\"69.4817\" y2=\"31.0261\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"31.0007\" x2=\"70.5231\" y2=\"31.0261\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"31.0261\" x2=\"68.2625\" y2=\"31.0515\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.0261\" x2=\"69.4817\" y2=\"31.0515\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"31.0261\" x2=\"70.5231\" y2=\"31.0515\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"31.0515\" x2=\"68.2879\" y2=\"31.0769\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.0515\" x2=\"69.4563\" y2=\"31.0769\" layer=\"200\"/>\n<rectangle x1=\"70.0659\" y1=\"31.0515\" x2=\"70.5231\" y2=\"31.0769\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"31.0769\" x2=\"68.2625\" y2=\"31.1023\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.0769\" x2=\"69.4309\" y2=\"31.1023\" layer=\"200\"/>\n<rectangle x1=\"70.0659\" y1=\"31.0769\" x2=\"70.4977\" y2=\"31.1023\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"31.1023\" x2=\"68.2371\" y2=\"31.1277\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.1023\" x2=\"69.4055\" y2=\"31.1277\" layer=\"200\"/>\n<rectangle x1=\"70.0659\" y1=\"31.1023\" x2=\"70.4977\" y2=\"31.1277\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"31.1277\" x2=\"68.2117\" y2=\"31.1531\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.1277\" x2=\"69.3547\" y2=\"31.1531\" layer=\"200\"/>\n<rectangle x1=\"70.0913\" y1=\"31.1277\" x2=\"70.4977\" y2=\"31.1531\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"31.1531\" x2=\"68.1863\" y2=\"31.1785\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.1531\" x2=\"69.3293\" y2=\"31.1785\" layer=\"200\"/>\n<rectangle x1=\"70.0913\" y1=\"31.1531\" x2=\"70.4723\" y2=\"31.1785\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"31.1785\" x2=\"68.1355\" y2=\"31.2039\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.1785\" x2=\"69.2531\" y2=\"31.2039\" layer=\"200\"/>\n<rectangle x1=\"70.0913\" y1=\"31.1785\" x2=\"70.4723\" y2=\"31.2039\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"31.2039\" x2=\"68.0593\" y2=\"31.2293\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"31.2039\" x2=\"69.1769\" y2=\"31.2293\" layer=\"200\"/>\n<rectangle x1=\"70.1167\" y1=\"31.2039\" x2=\"70.4723\" y2=\"31.2293\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"31.2293\" x2=\"67.9831\" y2=\"31.2547\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"31.7627\" x2=\"72.1741\" y2=\"31.7881\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"31.7881\" x2=\"72.1741\" y2=\"31.8135\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"31.8135\" x2=\"72.1741\" y2=\"31.8389\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"31.8389\" x2=\"72.1741\" y2=\"31.8643\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"31.8643\" x2=\"72.1741\" y2=\"31.8897\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"32.3723\" x2=\"69.1515\" y2=\"32.3977\" layer=\"200\"/>\n<rectangle x1=\"70.0913\" y1=\"32.3723\" x2=\"70.3453\" y2=\"32.3977\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"32.3977\" x2=\"67.9577\" y2=\"32.4231\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"32.3977\" x2=\"69.2531\" y2=\"32.4231\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"32.3977\" x2=\"70.4469\" y2=\"32.4231\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"32.4231\" x2=\"67.9577\" y2=\"32.4485\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"32.4231\" x2=\"69.3039\" y2=\"32.4485\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"32.4231\" x2=\"70.4977\" y2=\"32.4485\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"32.4485\" x2=\"67.9577\" y2=\"32.4739\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"32.4485\" x2=\"69.3547\" y2=\"32.4739\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"32.4485\" x2=\"70.5485\" y2=\"32.4739\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"32.4739\" x2=\"67.9831\" y2=\"32.4993\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"32.4739\" x2=\"69.3801\" y2=\"32.4993\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"32.4739\" x2=\"70.5739\" y2=\"32.4993\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"32.4993\" x2=\"67.9831\" y2=\"32.5247\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"32.4993\" x2=\"69.4055\" y2=\"32.5247\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"32.4993\" x2=\"70.5993\" y2=\"32.5247\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"32.5247\" x2=\"67.9831\" y2=\"32.5501\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"32.5247\" x2=\"69.4309\" y2=\"32.5501\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"32.5247\" x2=\"70.6247\" y2=\"32.5501\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"32.5501\" x2=\"68.0085\" y2=\"32.5755\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"32.5501\" x2=\"69.4563\" y2=\"32.5755\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"32.5501\" x2=\"70.6501\" y2=\"32.5755\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"32.5755\" x2=\"68.0085\" y2=\"32.6009\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"32.5755\" x2=\"69.4563\" y2=\"32.6009\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"32.5755\" x2=\"70.6501\" y2=\"32.6009\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"32.6009\" x2=\"68.0085\" y2=\"32.6263\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"32.6009\" x2=\"69.4817\" y2=\"32.6263\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"32.6009\" x2=\"70.6755\" y2=\"32.6263\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"32.6263\" x2=\"68.0339\" y2=\"32.6517\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"32.6263\" x2=\"68.9483\" y2=\"32.6517\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"32.6263\" x2=\"69.5071\" y2=\"32.6517\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"32.6263\" x2=\"70.1421\" y2=\"32.6517\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"32.6263\" x2=\"70.7009\" y2=\"32.6517\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"32.6517\" x2=\"68.0339\" y2=\"32.6771\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"32.6517\" x2=\"68.8975\" y2=\"32.6771\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"32.6517\" x2=\"69.5071\" y2=\"32.6771\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"32.6517\" x2=\"70.0913\" y2=\"32.6771\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"32.6517\" x2=\"70.7009\" y2=\"32.6771\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"32.6771\" x2=\"67.7799\" y2=\"32.7025\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"32.6771\" x2=\"68.0339\" y2=\"32.7025\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"32.6771\" x2=\"68.8721\" y2=\"32.7025\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"32.6771\" x2=\"69.5071\" y2=\"32.7025\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"32.6771\" x2=\"70.0659\" y2=\"32.7025\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"32.6771\" x2=\"70.7009\" y2=\"32.7025\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"32.7025\" x2=\"67.7799\" y2=\"32.7279\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"32.7025\" x2=\"68.0593\" y2=\"32.7279\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"32.7025\" x2=\"68.8467\" y2=\"32.7279\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"32.7025\" x2=\"69.4817\" y2=\"32.7279\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"32.7025\" x2=\"70.0405\" y2=\"32.7279\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"32.7025\" x2=\"70.6755\" y2=\"32.7279\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"32.7279\" x2=\"67.7799\" y2=\"32.7533\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"32.7279\" x2=\"68.0593\" y2=\"32.7533\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"32.7279\" x2=\"68.8213\" y2=\"32.7533\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"32.7279\" x2=\"69.4309\" y2=\"32.7533\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"32.7279\" x2=\"70.0151\" y2=\"32.7533\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"32.7279\" x2=\"70.6247\" y2=\"32.7533\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"32.7533\" x2=\"67.7799\" y2=\"32.7787\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"32.7533\" x2=\"68.0593\" y2=\"32.7787\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"32.7533\" x2=\"68.8213\" y2=\"32.7787\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"32.7533\" x2=\"69.4055\" y2=\"32.7787\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"32.7533\" x2=\"70.0151\" y2=\"32.7787\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"32.7533\" x2=\"70.5993\" y2=\"32.7787\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"32.7787\" x2=\"67.7545\" y2=\"32.8041\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"32.7787\" x2=\"68.0593\" y2=\"32.8041\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"32.7787\" x2=\"68.7959\" y2=\"32.8041\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"32.7787\" x2=\"69.3547\" y2=\"32.8041\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"32.7787\" x2=\"69.9897\" y2=\"32.8041\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"32.7787\" x2=\"70.5485\" y2=\"32.8041\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"32.8041\" x2=\"67.7545\" y2=\"32.8295\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"32.8041\" x2=\"68.0847\" y2=\"32.8295\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"32.8041\" x2=\"68.7959\" y2=\"32.8295\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"32.8041\" x2=\"69.9897\" y2=\"32.8295\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"32.8295\" x2=\"67.7545\" y2=\"32.8549\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"32.8295\" x2=\"68.0847\" y2=\"32.8549\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"32.8295\" x2=\"68.7705\" y2=\"32.8549\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"32.8295\" x2=\"69.9643\" y2=\"32.8549\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"32.8549\" x2=\"67.7545\" y2=\"32.8803\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"32.8549\" x2=\"68.0847\" y2=\"32.8803\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"32.8549\" x2=\"68.7705\" y2=\"32.8803\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"32.8549\" x2=\"69.9643\" y2=\"32.8803\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"32.8803\" x2=\"67.7545\" y2=\"32.9057\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"32.8803\" x2=\"68.1101\" y2=\"32.9057\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"32.8803\" x2=\"68.7705\" y2=\"32.9057\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"32.8803\" x2=\"69.9643\" y2=\"32.9057\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"32.9057\" x2=\"67.7291\" y2=\"32.9311\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"32.9057\" x2=\"68.1101\" y2=\"32.9311\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"32.9057\" x2=\"68.7705\" y2=\"32.9311\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"32.9057\" x2=\"69.9643\" y2=\"32.9311\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"32.9311\" x2=\"67.7291\" y2=\"32.9565\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"32.9311\" x2=\"68.1101\" y2=\"32.9565\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"32.9311\" x2=\"68.7705\" y2=\"32.9565\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"32.9311\" x2=\"69.9643\" y2=\"32.9565\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"32.9565\" x2=\"67.7291\" y2=\"32.9819\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"32.9565\" x2=\"68.1355\" y2=\"32.9819\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"32.9565\" x2=\"68.7705\" y2=\"32.9819\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"32.9565\" x2=\"69.9643\" y2=\"32.9819\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"32.9819\" x2=\"67.7291\" y2=\"33.0073\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"32.9819\" x2=\"68.1355\" y2=\"33.0073\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"32.9819\" x2=\"68.7705\" y2=\"33.0073\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"32.9819\" x2=\"69.9643\" y2=\"33.0073\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"33.0073\" x2=\"67.7037\" y2=\"33.0327\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"33.0073\" x2=\"68.1355\" y2=\"33.0327\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"33.0073\" x2=\"68.7705\" y2=\"33.0327\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"33.0073\" x2=\"69.9643\" y2=\"33.0327\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"33.0327\" x2=\"67.7037\" y2=\"33.0581\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"33.0327\" x2=\"68.1609\" y2=\"33.0581\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"33.0327\" x2=\"68.7705\" y2=\"33.0581\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"33.0327\" x2=\"69.9643\" y2=\"33.0581\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"33.0581\" x2=\"67.7037\" y2=\"33.0835\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"33.0581\" x2=\"68.1609\" y2=\"33.0835\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"33.0581\" x2=\"68.7705\" y2=\"33.0835\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"33.0581\" x2=\"69.9643\" y2=\"33.0835\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"33.0835\" x2=\"67.7037\" y2=\"33.1089\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"33.0835\" x2=\"68.1609\" y2=\"33.1089\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"33.0835\" x2=\"68.7705\" y2=\"33.1089\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"33.0835\" x2=\"69.9643\" y2=\"33.1089\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"33.1089\" x2=\"67.6783\" y2=\"33.1343\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"33.1089\" x2=\"68.1863\" y2=\"33.1343\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"33.1089\" x2=\"68.7705\" y2=\"33.1343\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"33.1089\" x2=\"69.9643\" y2=\"33.1343\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"33.1343\" x2=\"67.6783\" y2=\"33.1597\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"33.1343\" x2=\"68.1863\" y2=\"33.1597\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"33.1343\" x2=\"68.7705\" y2=\"33.1597\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"33.1343\" x2=\"69.9643\" y2=\"33.1597\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"33.1597\" x2=\"67.6783\" y2=\"33.1851\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"33.1597\" x2=\"68.1863\" y2=\"33.1851\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"33.1597\" x2=\"68.7705\" y2=\"33.1851\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"33.1597\" x2=\"69.9643\" y2=\"33.1851\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"33.1851\" x2=\"67.6529\" y2=\"33.2105\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"33.1851\" x2=\"68.2117\" y2=\"33.2105\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"33.1851\" x2=\"68.7705\" y2=\"33.2105\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"33.1851\" x2=\"69.9643\" y2=\"33.2105\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"33.2105\" x2=\"67.6529\" y2=\"33.2359\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"33.2105\" x2=\"68.2117\" y2=\"33.2359\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"33.2105\" x2=\"68.7705\" y2=\"33.2359\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"33.2105\" x2=\"69.9643\" y2=\"33.2359\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"33.2359\" x2=\"67.6529\" y2=\"33.2613\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"33.2359\" x2=\"68.2117\" y2=\"33.2613\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"33.2359\" x2=\"68.7705\" y2=\"33.2613\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"33.2359\" x2=\"69.9643\" y2=\"33.2613\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"33.2613\" x2=\"67.6275\" y2=\"33.2867\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"33.2613\" x2=\"68.2117\" y2=\"33.2867\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"33.2613\" x2=\"68.7959\" y2=\"33.2867\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"33.2613\" x2=\"69.9897\" y2=\"33.2867\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"33.2867\" x2=\"67.6275\" y2=\"33.3121\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"33.2867\" x2=\"68.2371\" y2=\"33.3121\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"33.2867\" x2=\"68.7959\" y2=\"33.3121\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"33.2867\" x2=\"69.9897\" y2=\"33.3121\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"33.3121\" x2=\"67.6275\" y2=\"33.3375\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"33.3121\" x2=\"68.2371\" y2=\"33.3375\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"33.3121\" x2=\"68.7959\" y2=\"33.3375\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"33.3121\" x2=\"69.3293\" y2=\"33.3375\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"33.3121\" x2=\"69.9897\" y2=\"33.3375\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"33.3121\" x2=\"70.5231\" y2=\"33.3375\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"33.3375\" x2=\"67.6275\" y2=\"33.3629\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"33.3375\" x2=\"68.2371\" y2=\"33.3629\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"33.3375\" x2=\"68.8213\" y2=\"33.3629\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"33.3375\" x2=\"69.3801\" y2=\"33.3629\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"33.3375\" x2=\"70.0151\" y2=\"33.3629\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"33.3375\" x2=\"70.5739\" y2=\"33.3629\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"33.3629\" x2=\"67.6021\" y2=\"33.3883\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"33.3629\" x2=\"68.2625\" y2=\"33.3883\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"33.3629\" x2=\"68.8213\" y2=\"33.3883\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"33.3629\" x2=\"69.4055\" y2=\"33.3883\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"33.3629\" x2=\"70.0151\" y2=\"33.3883\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"33.3629\" x2=\"70.5993\" y2=\"33.3883\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"33.3883\" x2=\"67.6021\" y2=\"33.4137\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"33.3883\" x2=\"68.2625\" y2=\"33.4137\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"33.3883\" x2=\"68.8467\" y2=\"33.4137\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"33.3883\" x2=\"69.4563\" y2=\"33.4137\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"33.3883\" x2=\"70.0405\" y2=\"33.4137\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"33.3883\" x2=\"70.6501\" y2=\"33.4137\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"33.4137\" x2=\"67.6021\" y2=\"33.4391\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"33.4137\" x2=\"68.2625\" y2=\"33.4391\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"33.4137\" x2=\"68.8721\" y2=\"33.4391\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"33.4137\" x2=\"69.5071\" y2=\"33.4391\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"33.4137\" x2=\"70.0659\" y2=\"33.4391\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"33.4137\" x2=\"70.7009\" y2=\"33.4391\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"33.4391\" x2=\"67.5767\" y2=\"33.4645\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"33.4391\" x2=\"68.2879\" y2=\"33.4645\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"33.4391\" x2=\"68.8975\" y2=\"33.4645\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"33.4391\" x2=\"69.5071\" y2=\"33.4645\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"33.4391\" x2=\"70.0913\" y2=\"33.4645\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"33.4391\" x2=\"70.7009\" y2=\"33.4645\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"33.4645\" x2=\"67.5767\" y2=\"33.4899\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"33.4645\" x2=\"68.2879\" y2=\"33.4899\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"33.4645\" x2=\"68.9483\" y2=\"33.4899\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"33.4645\" x2=\"69.5071\" y2=\"33.4899\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"33.4645\" x2=\"70.1421\" y2=\"33.4899\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"33.4645\" x2=\"70.7009\" y2=\"33.4899\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"33.4899\" x2=\"67.5767\" y2=\"33.5153\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"33.4899\" x2=\"68.2879\" y2=\"33.5153\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"33.4899\" x2=\"69.4817\" y2=\"33.5153\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"33.4899\" x2=\"70.6755\" y2=\"33.5153\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"33.5153\" x2=\"67.5513\" y2=\"33.5407\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"33.5153\" x2=\"68.3133\" y2=\"33.5407\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"33.5153\" x2=\"69.4817\" y2=\"33.5407\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"33.5153\" x2=\"70.6755\" y2=\"33.5407\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"33.5407\" x2=\"67.5513\" y2=\"33.5661\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"33.5407\" x2=\"68.3133\" y2=\"33.5661\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"33.5407\" x2=\"69.4563\" y2=\"33.5661\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"33.5407\" x2=\"70.6501\" y2=\"33.5661\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"33.5661\" x2=\"67.5513\" y2=\"33.5915\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"33.5661\" x2=\"68.3133\" y2=\"33.5915\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"33.5661\" x2=\"69.4309\" y2=\"33.5915\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"33.5661\" x2=\"70.6247\" y2=\"33.5915\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"33.5915\" x2=\"67.5259\" y2=\"33.6169\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"33.5915\" x2=\"68.3387\" y2=\"33.6169\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"33.5915\" x2=\"69.4055\" y2=\"33.6169\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"33.5915\" x2=\"70.5993\" y2=\"33.6169\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"33.6169\" x2=\"67.5259\" y2=\"33.6423\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"33.6169\" x2=\"68.3387\" y2=\"33.6423\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"33.6169\" x2=\"69.3801\" y2=\"33.6423\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"33.6169\" x2=\"70.5739\" y2=\"33.6423\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"33.6423\" x2=\"67.5259\" y2=\"33.6677\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"33.6423\" x2=\"68.3387\" y2=\"33.6677\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"33.6423\" x2=\"69.3547\" y2=\"33.6677\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"33.6423\" x2=\"70.5485\" y2=\"33.6677\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"33.6677\" x2=\"67.5259\" y2=\"33.6931\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"33.6677\" x2=\"68.3641\" y2=\"33.6931\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"33.6677\" x2=\"69.3039\" y2=\"33.6931\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"33.6677\" x2=\"70.4977\" y2=\"33.6931\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"33.6931\" x2=\"67.5005\" y2=\"33.7185\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"33.6931\" x2=\"68.3641\" y2=\"33.7185\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"33.6931\" x2=\"69.2531\" y2=\"33.7185\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"33.6931\" x2=\"70.4469\" y2=\"33.7185\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"33.7185\" x2=\"69.1769\" y2=\"33.7439\" layer=\"200\"/>\n<rectangle x1=\"70.1167\" y1=\"33.7185\" x2=\"70.3707\" y2=\"33.7439\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"34.3027\" x2=\"72.1741\" y2=\"34.3281\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"34.3281\" x2=\"72.1741\" y2=\"34.3535\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"34.3535\" x2=\"72.1741\" y2=\"34.3789\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"34.3789\" x2=\"72.1741\" y2=\"34.4043\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"34.4043\" x2=\"72.1741\" y2=\"34.4297\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"34.9631\" x2=\"67.8053\" y2=\"34.9885\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"34.9885\" x2=\"67.8561\" y2=\"35.0139\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"34.9885\" x2=\"68.2625\" y2=\"35.0139\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"34.9885\" x2=\"68.8467\" y2=\"35.0139\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"34.9885\" x2=\"69.6341\" y2=\"35.0139\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"34.9885\" x2=\"70.5485\" y2=\"35.0139\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"35.0139\" x2=\"67.9069\" y2=\"35.0393\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"35.0139\" x2=\"68.2625\" y2=\"35.0393\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.0139\" x2=\"68.8467\" y2=\"35.0393\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"35.0139\" x2=\"69.6341\" y2=\"35.0393\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.0139\" x2=\"70.6247\" y2=\"35.0393\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"35.0393\" x2=\"67.9323\" y2=\"35.0647\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"35.0393\" x2=\"68.2625\" y2=\"35.0647\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.0393\" x2=\"68.8467\" y2=\"35.0647\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"35.0393\" x2=\"69.6341\" y2=\"35.0647\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.0393\" x2=\"70.7009\" y2=\"35.0647\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"35.0647\" x2=\"67.9577\" y2=\"35.0901\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"35.0647\" x2=\"68.2625\" y2=\"35.0901\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.0647\" x2=\"68.8467\" y2=\"35.0901\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"35.0647\" x2=\"69.6341\" y2=\"35.0901\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.0647\" x2=\"70.7263\" y2=\"35.0901\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"35.0901\" x2=\"67.9831\" y2=\"35.1155\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"35.0901\" x2=\"68.2625\" y2=\"35.1155\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.0901\" x2=\"68.8467\" y2=\"35.1155\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"35.0901\" x2=\"69.6341\" y2=\"35.1155\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.0901\" x2=\"70.7771\" y2=\"35.1155\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"35.1155\" x2=\"67.9831\" y2=\"35.1409\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"35.1155\" x2=\"68.2625\" y2=\"35.1409\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.1155\" x2=\"68.8467\" y2=\"35.1409\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"35.1155\" x2=\"69.6341\" y2=\"35.1409\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.1155\" x2=\"70.8025\" y2=\"35.1409\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"35.1409\" x2=\"68.2625\" y2=\"35.1663\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.1409\" x2=\"68.8467\" y2=\"35.1663\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"35.1409\" x2=\"69.6341\" y2=\"35.1663\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.1409\" x2=\"70.8279\" y2=\"35.1663\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"35.1663\" x2=\"68.2625\" y2=\"35.1917\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.1663\" x2=\"68.8467\" y2=\"35.1917\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"35.1663\" x2=\"69.6341\" y2=\"35.1917\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.1663\" x2=\"70.8533\" y2=\"35.1917\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"35.1917\" x2=\"68.2625\" y2=\"35.2171\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.1917\" x2=\"68.8467\" y2=\"35.2171\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"35.1917\" x2=\"69.6341\" y2=\"35.2171\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.1917\" x2=\"70.8533\" y2=\"35.2171\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"35.2171\" x2=\"67.6529\" y2=\"35.2425\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"35.2171\" x2=\"68.2625\" y2=\"35.2425\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.2171\" x2=\"68.8467\" y2=\"35.2425\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"35.2171\" x2=\"69.6341\" y2=\"35.2425\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.2171\" x2=\"70.8787\" y2=\"35.2425\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"35.2425\" x2=\"67.6021\" y2=\"35.2679\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"35.2425\" x2=\"68.2625\" y2=\"35.2679\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.2425\" x2=\"68.8467\" y2=\"35.2679\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"35.2425\" x2=\"69.6341\" y2=\"35.2679\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.2425\" x2=\"70.2183\" y2=\"35.2679\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"35.2425\" x2=\"70.9041\" y2=\"35.2679\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"35.2679\" x2=\"67.5513\" y2=\"35.2933\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"35.2679\" x2=\"68.2625\" y2=\"35.2933\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.2679\" x2=\"68.8467\" y2=\"35.2933\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"35.2679\" x2=\"69.6341\" y2=\"35.2933\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.2679\" x2=\"70.2183\" y2=\"35.2933\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"35.2679\" x2=\"70.9041\" y2=\"35.2933\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"35.2933\" x2=\"67.5513\" y2=\"35.3187\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"35.2933\" x2=\"68.2625\" y2=\"35.3187\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.2933\" x2=\"68.8467\" y2=\"35.3187\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"35.2933\" x2=\"69.6341\" y2=\"35.3187\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.2933\" x2=\"70.2183\" y2=\"35.3187\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"35.2933\" x2=\"70.9041\" y2=\"35.3187\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"35.3187\" x2=\"67.5259\" y2=\"35.3441\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"35.3187\" x2=\"68.2625\" y2=\"35.3441\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.3187\" x2=\"68.8467\" y2=\"35.3441\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"35.3187\" x2=\"69.6341\" y2=\"35.3441\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.3187\" x2=\"70.2183\" y2=\"35.3441\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"35.3187\" x2=\"70.9295\" y2=\"35.3441\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.3441\" x2=\"67.5005\" y2=\"35.3695\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"35.3441\" x2=\"68.2625\" y2=\"35.3695\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.3441\" x2=\"68.8467\" y2=\"35.3695\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"35.3441\" x2=\"69.6341\" y2=\"35.3695\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.3441\" x2=\"70.2183\" y2=\"35.3695\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"35.3441\" x2=\"70.9295\" y2=\"35.3695\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.3695\" x2=\"67.5005\" y2=\"35.3949\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"35.3695\" x2=\"68.2625\" y2=\"35.3949\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.3695\" x2=\"68.8467\" y2=\"35.3949\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"35.3695\" x2=\"69.6341\" y2=\"35.3949\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.3695\" x2=\"70.2183\" y2=\"35.3949\" layer=\"200\"/>\n<rectangle x1=\"70.6501\" y1=\"35.3695\" x2=\"70.9549\" y2=\"35.3949\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.3949\" x2=\"67.5005\" y2=\"35.4203\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"35.3949\" x2=\"68.2625\" y2=\"35.4203\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.3949\" x2=\"68.8467\" y2=\"35.4203\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"35.3949\" x2=\"69.6341\" y2=\"35.4203\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.3949\" x2=\"70.2183\" y2=\"35.4203\" layer=\"200\"/>\n<rectangle x1=\"70.6501\" y1=\"35.3949\" x2=\"70.9549\" y2=\"35.4203\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.4203\" x2=\"67.4751\" y2=\"35.4457\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"35.4203\" x2=\"68.2625\" y2=\"35.4457\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.4203\" x2=\"68.8467\" y2=\"35.4457\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"35.4203\" x2=\"69.6341\" y2=\"35.4457\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.4203\" x2=\"70.2183\" y2=\"35.4457\" layer=\"200\"/>\n<rectangle x1=\"70.6501\" y1=\"35.4203\" x2=\"70.9549\" y2=\"35.4457\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.4457\" x2=\"67.4751\" y2=\"35.4711\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"35.4457\" x2=\"68.2625\" y2=\"35.4711\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.4457\" x2=\"68.8467\" y2=\"35.4711\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"35.4457\" x2=\"69.3293\" y2=\"35.4711\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.4457\" x2=\"69.6341\" y2=\"35.4711\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.4457\" x2=\"70.2183\" y2=\"35.4711\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.4457\" x2=\"70.9549\" y2=\"35.4711\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.4711\" x2=\"67.4751\" y2=\"35.4965\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.4711\" x2=\"68.2625\" y2=\"35.4965\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.4711\" x2=\"68.8467\" y2=\"35.4965\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"35.4711\" x2=\"69.3293\" y2=\"35.4965\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.4711\" x2=\"69.6341\" y2=\"35.4965\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.4711\" x2=\"70.2183\" y2=\"35.4965\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.4711\" x2=\"70.9549\" y2=\"35.4965\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.4965\" x2=\"67.4751\" y2=\"35.5219\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.4965\" x2=\"68.2625\" y2=\"35.5219\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.4965\" x2=\"68.8467\" y2=\"35.5219\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"35.4965\" x2=\"69.3039\" y2=\"35.5219\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.4965\" x2=\"69.6341\" y2=\"35.5219\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.4965\" x2=\"70.2183\" y2=\"35.5219\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.4965\" x2=\"70.9803\" y2=\"35.5219\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.5219\" x2=\"67.4751\" y2=\"35.5473\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.5219\" x2=\"68.2625\" y2=\"35.5473\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.5219\" x2=\"68.8467\" y2=\"35.5473\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"35.5219\" x2=\"69.3039\" y2=\"35.5473\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.5219\" x2=\"69.6341\" y2=\"35.5473\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.5219\" x2=\"70.2183\" y2=\"35.5473\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.5219\" x2=\"70.9803\" y2=\"35.5473\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.5473\" x2=\"67.4751\" y2=\"35.5727\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.5473\" x2=\"68.2625\" y2=\"35.5727\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.5473\" x2=\"68.8467\" y2=\"35.5727\" layer=\"200\"/>\n<rectangle x1=\"68.9991\" y1=\"35.5473\" x2=\"69.2785\" y2=\"35.5727\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.5473\" x2=\"69.6341\" y2=\"35.5727\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.5473\" x2=\"70.2183\" y2=\"35.5727\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.5473\" x2=\"70.9803\" y2=\"35.5727\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.5727\" x2=\"67.4751\" y2=\"35.5981\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.5727\" x2=\"68.2625\" y2=\"35.5981\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.5727\" x2=\"68.8467\" y2=\"35.5981\" layer=\"200\"/>\n<rectangle x1=\"68.9991\" y1=\"35.5727\" x2=\"69.2785\" y2=\"35.5981\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.5727\" x2=\"69.6341\" y2=\"35.5981\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.5727\" x2=\"70.2183\" y2=\"35.5981\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.5727\" x2=\"70.9803\" y2=\"35.5981\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.5981\" x2=\"67.4751\" y2=\"35.6235\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.5981\" x2=\"68.2625\" y2=\"35.6235\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.5981\" x2=\"68.8467\" y2=\"35.6235\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"35.5981\" x2=\"69.2531\" y2=\"35.6235\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.5981\" x2=\"69.6341\" y2=\"35.6235\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.5981\" x2=\"70.2183\" y2=\"35.6235\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.5981\" x2=\"70.9803\" y2=\"35.6235\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.6235\" x2=\"67.4751\" y2=\"35.6489\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.6235\" x2=\"68.2625\" y2=\"35.6489\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.6235\" x2=\"68.8467\" y2=\"35.6489\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"35.6235\" x2=\"69.2531\" y2=\"35.6489\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.6235\" x2=\"69.6341\" y2=\"35.6489\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.6235\" x2=\"70.2183\" y2=\"35.6489\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.6235\" x2=\"70.9803\" y2=\"35.6489\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.6489\" x2=\"67.4751\" y2=\"35.6743\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.6489\" x2=\"68.2625\" y2=\"35.6743\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.6489\" x2=\"68.8467\" y2=\"35.6743\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"35.6489\" x2=\"69.2277\" y2=\"35.6743\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.6489\" x2=\"69.6341\" y2=\"35.6743\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.6489\" x2=\"70.2183\" y2=\"35.6743\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.6489\" x2=\"70.9803\" y2=\"35.6743\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.6743\" x2=\"67.4751\" y2=\"35.6997\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"35.6743\" x2=\"68.2625\" y2=\"35.6997\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.6743\" x2=\"68.8467\" y2=\"35.6997\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"35.6743\" x2=\"69.2277\" y2=\"35.6997\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.6743\" x2=\"69.6341\" y2=\"35.6997\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.6743\" x2=\"70.2183\" y2=\"35.6997\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.6743\" x2=\"70.9803\" y2=\"35.6997\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.6997\" x2=\"67.4751\" y2=\"35.7251\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.6997\" x2=\"68.8467\" y2=\"35.7251\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"35.6997\" x2=\"69.2023\" y2=\"35.7251\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.6997\" x2=\"69.6341\" y2=\"35.7251\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.6997\" x2=\"70.2183\" y2=\"35.7251\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.6997\" x2=\"70.9803\" y2=\"35.7251\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.7251\" x2=\"67.4751\" y2=\"35.7505\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.7251\" x2=\"68.8467\" y2=\"35.7505\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"35.7251\" x2=\"69.2023\" y2=\"35.7505\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.7251\" x2=\"69.6341\" y2=\"35.7505\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.7251\" x2=\"70.2183\" y2=\"35.7505\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.7251\" x2=\"70.9803\" y2=\"35.7505\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.7505\" x2=\"67.4751\" y2=\"35.7759\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.7505\" x2=\"68.8467\" y2=\"35.7759\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"35.7505\" x2=\"69.1769\" y2=\"35.7759\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.7505\" x2=\"69.6341\" y2=\"35.7759\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.7505\" x2=\"70.2183\" y2=\"35.7759\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.7505\" x2=\"70.9803\" y2=\"35.7759\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"35.7759\" x2=\"67.4751\" y2=\"35.8013\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.7759\" x2=\"68.8467\" y2=\"35.8013\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"35.7759\" x2=\"69.1769\" y2=\"35.8013\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.7759\" x2=\"69.6341\" y2=\"35.8013\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.7759\" x2=\"70.2183\" y2=\"35.8013\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.7759\" x2=\"70.9803\" y2=\"35.8013\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.8013\" x2=\"67.4751\" y2=\"35.8267\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.8013\" x2=\"68.8467\" y2=\"35.8267\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"35.8013\" x2=\"69.1515\" y2=\"35.8267\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.8013\" x2=\"69.6341\" y2=\"35.8267\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.8013\" x2=\"70.2183\" y2=\"35.8267\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.8013\" x2=\"70.9549\" y2=\"35.8267\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.8267\" x2=\"67.4751\" y2=\"35.8521\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.8267\" x2=\"68.8467\" y2=\"35.8521\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"35.8267\" x2=\"69.1515\" y2=\"35.8521\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.8267\" x2=\"69.6341\" y2=\"35.8521\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.8267\" x2=\"70.2183\" y2=\"35.8521\" layer=\"200\"/>\n<rectangle x1=\"70.6755\" y1=\"35.8267\" x2=\"70.9549\" y2=\"35.8521\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.8521\" x2=\"67.5005\" y2=\"35.8775\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.8521\" x2=\"69.1261\" y2=\"35.8775\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.8521\" x2=\"69.6341\" y2=\"35.8775\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.8521\" x2=\"70.2183\" y2=\"35.8775\" layer=\"200\"/>\n<rectangle x1=\"70.6501\" y1=\"35.8521\" x2=\"70.9549\" y2=\"35.8775\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"35.8775\" x2=\"67.5005\" y2=\"35.9029\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.8775\" x2=\"69.1261\" y2=\"35.9029\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.8775\" x2=\"69.6341\" y2=\"35.9029\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.8775\" x2=\"70.2183\" y2=\"35.9029\" layer=\"200\"/>\n<rectangle x1=\"70.6501\" y1=\"35.8775\" x2=\"70.9549\" y2=\"35.9029\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"35.9029\" x2=\"67.5005\" y2=\"35.9283\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"35.9029\" x2=\"68.0593\" y2=\"35.9283\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.9029\" x2=\"69.1007\" y2=\"35.9283\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.9029\" x2=\"69.6341\" y2=\"35.9283\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.9029\" x2=\"70.2183\" y2=\"35.9283\" layer=\"200\"/>\n<rectangle x1=\"70.6501\" y1=\"35.9029\" x2=\"70.9549\" y2=\"35.9283\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"35.9283\" x2=\"67.5259\" y2=\"35.9537\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"35.9283\" x2=\"68.1101\" y2=\"35.9537\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.9283\" x2=\"69.1007\" y2=\"35.9537\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.9283\" x2=\"69.6341\" y2=\"35.9537\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.9283\" x2=\"70.2183\" y2=\"35.9537\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"35.9283\" x2=\"70.9295\" y2=\"35.9537\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"35.9537\" x2=\"67.5259\" y2=\"35.9791\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"35.9537\" x2=\"68.1355\" y2=\"35.9791\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.9537\" x2=\"69.0753\" y2=\"35.9791\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.9537\" x2=\"69.6341\" y2=\"35.9791\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.9537\" x2=\"70.2183\" y2=\"35.9791\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"35.9537\" x2=\"70.9295\" y2=\"35.9791\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"35.9791\" x2=\"67.5513\" y2=\"36.0045\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"35.9791\" x2=\"68.1863\" y2=\"36.0045\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"35.9791\" x2=\"69.0499\" y2=\"36.0045\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"35.9791\" x2=\"69.6341\" y2=\"36.0045\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"35.9791\" x2=\"70.2183\" y2=\"36.0045\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"35.9791\" x2=\"70.9041\" y2=\"36.0045\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"36.0045\" x2=\"67.5767\" y2=\"36.0299\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"36.0045\" x2=\"68.2117\" y2=\"36.0299\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.0045\" x2=\"69.0499\" y2=\"36.0299\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.0045\" x2=\"69.6341\" y2=\"36.0299\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.0045\" x2=\"70.2183\" y2=\"36.0299\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"36.0045\" x2=\"70.9041\" y2=\"36.0299\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"36.0299\" x2=\"67.6021\" y2=\"36.0553\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"36.0299\" x2=\"68.2371\" y2=\"36.0553\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.0299\" x2=\"69.0245\" y2=\"36.0553\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.0299\" x2=\"69.6341\" y2=\"36.0553\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.0299\" x2=\"70.2183\" y2=\"36.0553\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"36.0299\" x2=\"70.9041\" y2=\"36.0553\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"36.0553\" x2=\"67.6529\" y2=\"36.0807\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"36.0553\" x2=\"68.2117\" y2=\"36.0807\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.0553\" x2=\"69.0245\" y2=\"36.0807\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.0553\" x2=\"69.6341\" y2=\"36.0807\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.0553\" x2=\"70.8787\" y2=\"36.0807\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"36.0807\" x2=\"68.2117\" y2=\"36.1061\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.0807\" x2=\"68.9991\" y2=\"36.1061\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.0807\" x2=\"69.6341\" y2=\"36.1061\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.0807\" x2=\"70.8533\" y2=\"36.1061\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"36.1061\" x2=\"68.1863\" y2=\"36.1315\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.1061\" x2=\"68.9991\" y2=\"36.1315\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.1061\" x2=\"69.6341\" y2=\"36.1315\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.1061\" x2=\"70.8533\" y2=\"36.1315\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"36.1315\" x2=\"68.1609\" y2=\"36.1569\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.1315\" x2=\"68.9737\" y2=\"36.1569\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.1315\" x2=\"69.6341\" y2=\"36.1569\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.1315\" x2=\"70.8279\" y2=\"36.1569\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"36.1569\" x2=\"68.1355\" y2=\"36.1823\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.1569\" x2=\"68.9737\" y2=\"36.1823\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.1569\" x2=\"69.6341\" y2=\"36.1823\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.1569\" x2=\"70.8025\" y2=\"36.1823\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"36.1823\" x2=\"68.1101\" y2=\"36.2077\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.1823\" x2=\"68.9483\" y2=\"36.2077\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.1823\" x2=\"69.6341\" y2=\"36.2077\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.1823\" x2=\"70.7771\" y2=\"36.2077\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"36.2077\" x2=\"68.0847\" y2=\"36.2331\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.2077\" x2=\"68.9483\" y2=\"36.2331\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.2077\" x2=\"69.6341\" y2=\"36.2331\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.2077\" x2=\"70.7263\" y2=\"36.2331\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"36.2331\" x2=\"68.0593\" y2=\"36.2585\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.2331\" x2=\"68.9229\" y2=\"36.2585\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.2331\" x2=\"69.6341\" y2=\"36.2585\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.2331\" x2=\"70.7009\" y2=\"36.2585\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"36.2585\" x2=\"68.0085\" y2=\"36.2839\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.2585\" x2=\"68.8975\" y2=\"36.2839\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.2585\" x2=\"69.6341\" y2=\"36.2839\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.2585\" x2=\"70.6247\" y2=\"36.2839\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"36.2839\" x2=\"67.9577\" y2=\"36.3093\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"36.2839\" x2=\"68.8975\" y2=\"36.3093\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"36.2839\" x2=\"69.6341\" y2=\"36.3093\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"36.2839\" x2=\"70.5485\" y2=\"36.3093\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"36.3093\" x2=\"67.8561\" y2=\"36.3347\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"36.8427\" x2=\"72.1741\" y2=\"36.8681\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"36.8681\" x2=\"72.1741\" y2=\"36.8935\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"36.8935\" x2=\"72.1741\" y2=\"36.9189\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"36.9189\" x2=\"72.1741\" y2=\"36.9443\" layer=\"200\"/>\n<rectangle x1=\"65.6971\" y1=\"36.9443\" x2=\"72.1741\" y2=\"36.9697\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"52.1081\" x2=\"72.1233\" y2=\"52.1335\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"52.1335\" x2=\"72.1233\" y2=\"52.1589\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"52.1589\" x2=\"72.1233\" y2=\"52.1843\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"52.1843\" x2=\"72.1233\" y2=\"52.2097\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"52.2097\" x2=\"72.1233\" y2=\"52.2351\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"52.7431\" x2=\"68.0339\" y2=\"52.7685\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"52.7431\" x2=\"69.3039\" y2=\"52.7685\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"52.7685\" x2=\"68.1355\" y2=\"52.7939\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"52.7685\" x2=\"69.4055\" y2=\"52.7939\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.7685\" x2=\"70.6501\" y2=\"52.7939\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"52.7939\" x2=\"68.1863\" y2=\"52.8193\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"52.7939\" x2=\"69.4563\" y2=\"52.8193\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.7939\" x2=\"70.6501\" y2=\"52.8193\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"52.8193\" x2=\"68.2371\" y2=\"52.8447\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"52.8193\" x2=\"69.5071\" y2=\"52.8447\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.8193\" x2=\"70.6501\" y2=\"52.8447\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"52.8447\" x2=\"68.2625\" y2=\"52.8701\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"52.8447\" x2=\"69.5325\" y2=\"52.8701\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.8447\" x2=\"70.6501\" y2=\"52.8701\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"52.8701\" x2=\"68.2879\" y2=\"52.8955\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"52.8701\" x2=\"69.5579\" y2=\"52.8955\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.8701\" x2=\"70.6501\" y2=\"52.8955\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"52.8955\" x2=\"68.3133\" y2=\"52.9209\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"52.8955\" x2=\"69.5833\" y2=\"52.9209\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.8955\" x2=\"70.6501\" y2=\"52.9209\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"52.9209\" x2=\"68.3387\" y2=\"52.9463\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"52.9209\" x2=\"69.6087\" y2=\"52.9463\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.9209\" x2=\"70.6501\" y2=\"52.9463\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"52.9463\" x2=\"68.3641\" y2=\"52.9717\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"52.9463\" x2=\"69.6087\" y2=\"52.9717\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.9463\" x2=\"70.6501\" y2=\"52.9717\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"52.9717\" x2=\"68.3641\" y2=\"52.9971\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"52.9717\" x2=\"69.6341\" y2=\"52.9971\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.9717\" x2=\"70.6501\" y2=\"52.9971\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"52.9971\" x2=\"67.8307\" y2=\"53.0225\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"52.9971\" x2=\"68.3895\" y2=\"53.0225\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"52.9971\" x2=\"69.1007\" y2=\"53.0225\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"52.9971\" x2=\"69.6595\" y2=\"53.0225\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"52.9971\" x2=\"70.6501\" y2=\"53.0225\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"53.0225\" x2=\"67.7545\" y2=\"53.0479\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"53.0225\" x2=\"68.3895\" y2=\"53.0479\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"53.0225\" x2=\"69.0499\" y2=\"53.0479\" layer=\"200\"/>\n<rectangle x1=\"69.3293\" y1=\"53.0225\" x2=\"69.6595\" y2=\"53.0479\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.0225\" x2=\"70.1675\" y2=\"53.0479\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"53.0479\" x2=\"67.7037\" y2=\"53.0733\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"53.0479\" x2=\"68.3895\" y2=\"53.0733\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"53.0479\" x2=\"69.0245\" y2=\"53.0733\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"53.0479\" x2=\"69.6595\" y2=\"53.0733\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.0479\" x2=\"70.1675\" y2=\"53.0733\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"53.0733\" x2=\"67.6529\" y2=\"53.0987\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"53.0733\" x2=\"68.4149\" y2=\"53.0987\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"53.0733\" x2=\"68.9991\" y2=\"53.0987\" layer=\"200\"/>\n<rectangle x1=\"69.3801\" y1=\"53.0733\" x2=\"69.6341\" y2=\"53.0987\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.0733\" x2=\"70.1675\" y2=\"53.0987\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"53.0987\" x2=\"67.6275\" y2=\"53.1241\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"53.0987\" x2=\"68.4149\" y2=\"53.1241\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"53.0987\" x2=\"68.9737\" y2=\"53.1241\" layer=\"200\"/>\n<rectangle x1=\"69.4055\" y1=\"53.0987\" x2=\"69.5833\" y2=\"53.1241\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.0987\" x2=\"70.1675\" y2=\"53.1241\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"53.1241\" x2=\"67.6021\" y2=\"53.1495\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"53.1241\" x2=\"68.4149\" y2=\"53.1495\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.1241\" x2=\"68.9737\" y2=\"53.1495\" layer=\"200\"/>\n<rectangle x1=\"69.4309\" y1=\"53.1241\" x2=\"69.5579\" y2=\"53.1495\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.1241\" x2=\"70.1675\" y2=\"53.1495\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"53.1495\" x2=\"68.4149\" y2=\"53.1749\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.1495\" x2=\"68.9483\" y2=\"53.1749\" layer=\"200\"/>\n<rectangle x1=\"69.4309\" y1=\"53.1495\" x2=\"69.5071\" y2=\"53.1749\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.1495\" x2=\"70.1675\" y2=\"53.1749\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"53.1749\" x2=\"68.4149\" y2=\"53.2003\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.1749\" x2=\"68.9483\" y2=\"53.2003\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.1749\" x2=\"70.1675\" y2=\"53.2003\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"53.2003\" x2=\"68.4149\" y2=\"53.2257\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.2003\" x2=\"68.9229\" y2=\"53.2257\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.2003\" x2=\"70.1675\" y2=\"53.2257\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"53.2257\" x2=\"68.4149\" y2=\"53.2511\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.2257\" x2=\"68.9229\" y2=\"53.2511\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.2257\" x2=\"70.1675\" y2=\"53.2511\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"53.2511\" x2=\"68.4149\" y2=\"53.2765\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.2511\" x2=\"68.9229\" y2=\"53.2765\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.2511\" x2=\"70.1675\" y2=\"53.2765\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"53.2765\" x2=\"68.3895\" y2=\"53.3019\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.2765\" x2=\"68.9229\" y2=\"53.3019\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.2765\" x2=\"70.1675\" y2=\"53.3019\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"53.3019\" x2=\"68.3895\" y2=\"53.3273\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.3019\" x2=\"68.9229\" y2=\"53.3273\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.3019\" x2=\"70.1675\" y2=\"53.3273\" layer=\"200\"/>\n<rectangle x1=\"67.7291\" y1=\"53.3273\" x2=\"68.3895\" y2=\"53.3527\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.3273\" x2=\"68.9229\" y2=\"53.3527\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.3273\" x2=\"70.1675\" y2=\"53.3527\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"53.3527\" x2=\"68.3641\" y2=\"53.3781\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.3527\" x2=\"68.9229\" y2=\"53.3781\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.3527\" x2=\"70.1675\" y2=\"53.3781\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"53.3781\" x2=\"68.3641\" y2=\"53.4035\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.3781\" x2=\"68.9229\" y2=\"53.4035\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.3781\" x2=\"70.1675\" y2=\"53.4035\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"53.4035\" x2=\"68.3387\" y2=\"53.4289\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.4035\" x2=\"68.9229\" y2=\"53.4289\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.4035\" x2=\"70.1675\" y2=\"53.4289\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"53.4289\" x2=\"68.3133\" y2=\"53.4543\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.4289\" x2=\"68.9229\" y2=\"53.4543\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.4289\" x2=\"70.1675\" y2=\"53.4543\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"53.4543\" x2=\"68.2879\" y2=\"53.4797\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.4543\" x2=\"68.9229\" y2=\"53.4797\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.4543\" x2=\"70.1675\" y2=\"53.4797\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"53.4797\" x2=\"68.2371\" y2=\"53.5051\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.4797\" x2=\"68.9229\" y2=\"53.5051\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.4797\" x2=\"70.1675\" y2=\"53.5051\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"53.5051\" x2=\"68.1863\" y2=\"53.5305\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.5051\" x2=\"68.9229\" y2=\"53.5305\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.5051\" x2=\"70.1675\" y2=\"53.5305\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"53.5305\" x2=\"68.1355\" y2=\"53.5559\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.5305\" x2=\"68.9229\" y2=\"53.5559\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.5305\" x2=\"70.1675\" y2=\"53.5559\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"53.5559\" x2=\"68.0085\" y2=\"53.5813\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"53.5559\" x2=\"68.9229\" y2=\"53.5813\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.5559\" x2=\"70.1675\" y2=\"53.5813\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"53.5813\" x2=\"67.8561\" y2=\"53.6067\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.5813\" x2=\"68.9229\" y2=\"53.6067\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.5813\" x2=\"70.1675\" y2=\"53.6067\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"53.6067\" x2=\"67.7799\" y2=\"53.6321\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.6067\" x2=\"68.9229\" y2=\"53.6321\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.6067\" x2=\"70.1675\" y2=\"53.6321\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"53.6321\" x2=\"67.7545\" y2=\"53.6575\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.6321\" x2=\"68.9483\" y2=\"53.6575\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.6321\" x2=\"70.1675\" y2=\"53.6575\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"53.6575\" x2=\"67.7291\" y2=\"53.6829\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.6575\" x2=\"68.9483\" y2=\"53.6829\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.6575\" x2=\"70.1675\" y2=\"53.6829\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"53.6829\" x2=\"67.7291\" y2=\"53.7083\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"53.6829\" x2=\"68.9483\" y2=\"53.7083\" layer=\"200\"/>\n<rectangle x1=\"69.4309\" y1=\"53.6829\" x2=\"69.4817\" y2=\"53.7083\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.6829\" x2=\"70.1675\" y2=\"53.7083\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"53.7083\" x2=\"67.7291\" y2=\"53.7337\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"53.7083\" x2=\"68.9737\" y2=\"53.7337\" layer=\"200\"/>\n<rectangle x1=\"69.4055\" y1=\"53.7083\" x2=\"69.5325\" y2=\"53.7337\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.7083\" x2=\"70.1675\" y2=\"53.7337\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"53.7337\" x2=\"67.7291\" y2=\"53.7591\" layer=\"200\"/>\n<rectangle x1=\"68.1863\" y1=\"53.7337\" x2=\"68.2117\" y2=\"53.7591\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"53.7337\" x2=\"68.9737\" y2=\"53.7591\" layer=\"200\"/>\n<rectangle x1=\"69.4055\" y1=\"53.7337\" x2=\"69.5579\" y2=\"53.7591\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.7337\" x2=\"70.1675\" y2=\"53.7591\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"53.7591\" x2=\"67.7291\" y2=\"53.7845\" layer=\"200\"/>\n<rectangle x1=\"68.1609\" y1=\"53.7591\" x2=\"68.2371\" y2=\"53.7845\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"53.7591\" x2=\"68.9991\" y2=\"53.7845\" layer=\"200\"/>\n<rectangle x1=\"69.3801\" y1=\"53.7591\" x2=\"69.6087\" y2=\"53.7845\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.7591\" x2=\"70.1675\" y2=\"53.7845\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"53.7845\" x2=\"67.7545\" y2=\"53.8099\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"53.7845\" x2=\"68.2625\" y2=\"53.8099\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"53.7845\" x2=\"69.0245\" y2=\"53.8099\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"53.7845\" x2=\"69.6595\" y2=\"53.8099\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.7845\" x2=\"70.1675\" y2=\"53.8099\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"53.8099\" x2=\"67.7799\" y2=\"53.8353\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"53.8099\" x2=\"68.2879\" y2=\"53.8353\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"53.8099\" x2=\"69.0499\" y2=\"53.8353\" layer=\"200\"/>\n<rectangle x1=\"69.3293\" y1=\"53.8099\" x2=\"69.6595\" y2=\"53.8353\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.8099\" x2=\"70.1675\" y2=\"53.8353\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"53.8353\" x2=\"67.8307\" y2=\"53.8607\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"53.8353\" x2=\"68.3133\" y2=\"53.8607\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"53.8353\" x2=\"69.1007\" y2=\"53.8607\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"53.8353\" x2=\"69.6595\" y2=\"53.8607\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.8353\" x2=\"70.1675\" y2=\"53.8607\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"53.8607\" x2=\"68.3387\" y2=\"53.8861\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"53.8607\" x2=\"69.6341\" y2=\"53.8861\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.8607\" x2=\"70.1675\" y2=\"53.8861\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"53.8861\" x2=\"68.3641\" y2=\"53.9115\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"53.8861\" x2=\"69.6341\" y2=\"53.9115\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.8861\" x2=\"70.1675\" y2=\"53.9115\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"53.9115\" x2=\"68.3895\" y2=\"53.9369\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"53.9115\" x2=\"69.6087\" y2=\"53.9369\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.9115\" x2=\"70.1675\" y2=\"53.9369\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"53.9369\" x2=\"68.3641\" y2=\"53.9623\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"53.9369\" x2=\"69.5833\" y2=\"53.9623\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.9369\" x2=\"70.1675\" y2=\"53.9623\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"53.9623\" x2=\"68.3387\" y2=\"53.9877\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"53.9623\" x2=\"69.5579\" y2=\"53.9877\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.9623\" x2=\"70.1675\" y2=\"53.9877\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"53.9877\" x2=\"68.3133\" y2=\"54.0131\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"53.9877\" x2=\"69.5325\" y2=\"54.0131\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"53.9877\" x2=\"70.1675\" y2=\"54.0131\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"54.0131\" x2=\"68.2879\" y2=\"54.0385\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"54.0131\" x2=\"69.5071\" y2=\"54.0385\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"54.0131\" x2=\"70.1675\" y2=\"54.0385\" layer=\"200\"/>\n<rectangle x1=\"67.6529\" y1=\"54.0385\" x2=\"68.2371\" y2=\"54.0639\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"54.0385\" x2=\"69.4563\" y2=\"54.0639\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"54.0385\" x2=\"70.1675\" y2=\"54.0639\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"54.0639\" x2=\"68.1609\" y2=\"54.0893\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"54.0639\" x2=\"69.4055\" y2=\"54.0893\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"54.0639\" x2=\"70.1675\" y2=\"54.0893\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"54.0893\" x2=\"68.0847\" y2=\"54.1147\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"54.0893\" x2=\"69.3293\" y2=\"54.1147\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"54.6481\" x2=\"72.1233\" y2=\"54.6735\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"54.6735\" x2=\"72.1233\" y2=\"54.6989\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"54.6989\" x2=\"72.1233\" y2=\"54.7243\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"54.7243\" x2=\"72.1233\" y2=\"54.7497\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"54.7497\" x2=\"72.1233\" y2=\"54.7751\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"55.3085\" x2=\"67.8815\" y2=\"55.3339\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"55.3339\" x2=\"67.9831\" y2=\"55.3593\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.3339\" x2=\"69.1261\" y2=\"55.3593\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"55.3339\" x2=\"69.9135\" y2=\"55.3593\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"55.3339\" x2=\"70.8279\" y2=\"55.3593\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"55.3593\" x2=\"68.0339\" y2=\"55.3847\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.3593\" x2=\"69.2023\" y2=\"55.3847\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"55.3593\" x2=\"69.9389\" y2=\"55.3847\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"55.3593\" x2=\"70.8279\" y2=\"55.3847\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"55.3847\" x2=\"68.0847\" y2=\"55.4101\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.3847\" x2=\"69.2785\" y2=\"55.4101\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"55.3847\" x2=\"69.9389\" y2=\"55.4101\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"55.3847\" x2=\"70.8025\" y2=\"55.4101\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"55.4101\" x2=\"68.1101\" y2=\"55.4355\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.4101\" x2=\"69.3039\" y2=\"55.4355\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"55.4101\" x2=\"69.9389\" y2=\"55.4355\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"55.4101\" x2=\"70.8025\" y2=\"55.4355\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"55.4355\" x2=\"68.1355\" y2=\"55.4609\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.4355\" x2=\"69.3547\" y2=\"55.4609\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"55.4355\" x2=\"69.9643\" y2=\"55.4609\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"55.4355\" x2=\"70.8025\" y2=\"55.4609\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"55.4609\" x2=\"68.1609\" y2=\"55.4863\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.4609\" x2=\"69.3801\" y2=\"55.4863\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"55.4609\" x2=\"69.9643\" y2=\"55.4863\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"55.4609\" x2=\"70.7771\" y2=\"55.4863\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"55.4863\" x2=\"68.1863\" y2=\"55.5117\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.4863\" x2=\"69.4055\" y2=\"55.5117\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"55.4863\" x2=\"69.9643\" y2=\"55.5117\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"55.4863\" x2=\"70.7771\" y2=\"55.5117\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"55.5117\" x2=\"68.2117\" y2=\"55.5371\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.5117\" x2=\"69.4309\" y2=\"55.5371\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"55.5117\" x2=\"69.9643\" y2=\"55.5371\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"55.5117\" x2=\"70.7771\" y2=\"55.5371\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"55.5371\" x2=\"68.2117\" y2=\"55.5625\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.5371\" x2=\"69.4309\" y2=\"55.5625\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"55.5371\" x2=\"69.9897\" y2=\"55.5625\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"55.5371\" x2=\"70.7517\" y2=\"55.5625\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"55.5625\" x2=\"67.6783\" y2=\"55.5879\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"55.5625\" x2=\"68.2371\" y2=\"55.5879\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.5625\" x2=\"69.4563\" y2=\"55.5879\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"55.5625\" x2=\"69.9897\" y2=\"55.5879\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"55.5625\" x2=\"70.7517\" y2=\"55.5879\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"55.5879\" x2=\"67.6021\" y2=\"55.6133\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"55.5879\" x2=\"68.2371\" y2=\"55.6133\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.5879\" x2=\"68.7959\" y2=\"55.6133\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"55.5879\" x2=\"69.4817\" y2=\"55.6133\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"55.5879\" x2=\"69.9897\" y2=\"55.6133\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"55.5879\" x2=\"70.7517\" y2=\"55.6133\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"55.6133\" x2=\"67.5513\" y2=\"55.6387\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"55.6133\" x2=\"68.2371\" y2=\"55.6387\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.6133\" x2=\"68.7959\" y2=\"55.6387\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"55.6133\" x2=\"69.4817\" y2=\"55.6387\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"55.6133\" x2=\"70.0151\" y2=\"55.6387\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"55.6133\" x2=\"70.7263\" y2=\"55.6387\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"55.6387\" x2=\"67.5005\" y2=\"55.6641\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"55.6387\" x2=\"68.2625\" y2=\"55.6641\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.6387\" x2=\"68.7959\" y2=\"55.6641\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"55.6387\" x2=\"69.4817\" y2=\"55.6641\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"55.6387\" x2=\"70.7263\" y2=\"55.6641\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"55.6641\" x2=\"67.4751\" y2=\"55.6895\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"55.6641\" x2=\"68.2625\" y2=\"55.6895\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.6641\" x2=\"68.7959\" y2=\"55.6895\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"55.6641\" x2=\"69.5071\" y2=\"55.6895\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"55.6641\" x2=\"70.7263\" y2=\"55.6895\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"55.6895\" x2=\"67.4497\" y2=\"55.7149\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"55.6895\" x2=\"68.2625\" y2=\"55.7149\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.6895\" x2=\"68.7959\" y2=\"55.7149\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"55.6895\" x2=\"69.5071\" y2=\"55.7149\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"55.6895\" x2=\"70.7009\" y2=\"55.7149\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"55.7149\" x2=\"68.2625\" y2=\"55.7403\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.7149\" x2=\"68.7959\" y2=\"55.7403\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"55.7149\" x2=\"69.5325\" y2=\"55.7403\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"55.7149\" x2=\"70.7009\" y2=\"55.7403\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"55.7403\" x2=\"68.2625\" y2=\"55.7657\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.7403\" x2=\"68.7959\" y2=\"55.7657\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"55.7403\" x2=\"69.5325\" y2=\"55.7657\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"55.7403\" x2=\"70.7009\" y2=\"55.7657\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"55.7657\" x2=\"68.2625\" y2=\"55.7911\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.7657\" x2=\"68.7959\" y2=\"55.7911\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"55.7657\" x2=\"69.5325\" y2=\"55.7911\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"55.7657\" x2=\"70.6755\" y2=\"55.7911\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"55.7911\" x2=\"68.2625\" y2=\"55.8165\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.7911\" x2=\"68.7959\" y2=\"55.8165\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.7911\" x2=\"69.5325\" y2=\"55.8165\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"55.7911\" x2=\"70.6755\" y2=\"55.8165\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"55.8165\" x2=\"68.2625\" y2=\"55.8419\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.8165\" x2=\"68.7959\" y2=\"55.8419\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.8165\" x2=\"69.5325\" y2=\"55.8419\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"55.8165\" x2=\"70.6755\" y2=\"55.8419\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"55.8419\" x2=\"68.2371\" y2=\"55.8673\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.8419\" x2=\"68.7959\" y2=\"55.8673\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.8419\" x2=\"69.5579\" y2=\"55.8673\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"55.8419\" x2=\"70.6501\" y2=\"55.8673\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"55.8673\" x2=\"68.2371\" y2=\"55.8927\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.8673\" x2=\"68.7959\" y2=\"55.8927\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.8673\" x2=\"69.5579\" y2=\"55.8927\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"55.8673\" x2=\"70.6501\" y2=\"55.8927\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"55.8927\" x2=\"68.2371\" y2=\"55.9181\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.8927\" x2=\"68.7959\" y2=\"55.9181\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.8927\" x2=\"69.5579\" y2=\"55.9181\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"55.8927\" x2=\"70.0913\" y2=\"55.9181\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"55.8927\" x2=\"70.6501\" y2=\"55.9181\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"55.9181\" x2=\"68.2117\" y2=\"55.9435\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.9181\" x2=\"68.7959\" y2=\"55.9435\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.9181\" x2=\"69.5579\" y2=\"55.9435\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"55.9181\" x2=\"70.0913\" y2=\"55.9435\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"55.9181\" x2=\"70.6501\" y2=\"55.9435\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"55.9435\" x2=\"68.2117\" y2=\"55.9689\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.9435\" x2=\"68.7959\" y2=\"55.9689\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.9435\" x2=\"69.5579\" y2=\"55.9689\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"55.9435\" x2=\"70.0913\" y2=\"55.9689\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"55.9435\" x2=\"70.6247\" y2=\"55.9689\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"55.9689\" x2=\"68.1863\" y2=\"55.9943\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.9689\" x2=\"68.7959\" y2=\"55.9943\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.9689\" x2=\"69.5579\" y2=\"55.9943\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"55.9689\" x2=\"70.0913\" y2=\"55.9943\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"55.9689\" x2=\"70.6247\" y2=\"55.9943\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"55.9943\" x2=\"68.1609\" y2=\"56.0197\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"55.9943\" x2=\"68.7959\" y2=\"56.0197\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"55.9943\" x2=\"69.5579\" y2=\"56.0197\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"55.9943\" x2=\"70.1167\" y2=\"56.0197\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"55.9943\" x2=\"70.6247\" y2=\"56.0197\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"56.0197\" x2=\"68.1355\" y2=\"56.0451\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.0197\" x2=\"68.7959\" y2=\"56.0451\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"56.0197\" x2=\"69.5579\" y2=\"56.0451\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"56.0197\" x2=\"70.1167\" y2=\"56.0451\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"56.0197\" x2=\"70.5993\" y2=\"56.0451\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"56.0451\" x2=\"68.0847\" y2=\"56.0705\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.0451\" x2=\"68.7959\" y2=\"56.0705\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"56.0451\" x2=\"69.5579\" y2=\"56.0705\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"56.0451\" x2=\"70.1167\" y2=\"56.0705\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"56.0451\" x2=\"70.5993\" y2=\"56.0705\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"56.0705\" x2=\"68.0339\" y2=\"56.0959\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.0705\" x2=\"68.7959\" y2=\"56.0959\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"56.0705\" x2=\"69.5579\" y2=\"56.0959\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"56.0705\" x2=\"70.1421\" y2=\"56.0959\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"56.0705\" x2=\"70.5993\" y2=\"56.0959\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"56.0959\" x2=\"67.9831\" y2=\"56.1213\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.0959\" x2=\"68.7959\" y2=\"56.1213\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"56.0959\" x2=\"69.5579\" y2=\"56.1213\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"56.0959\" x2=\"70.1421\" y2=\"56.1213\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"56.0959\" x2=\"70.5739\" y2=\"56.1213\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"56.1213\" x2=\"67.8561\" y2=\"56.1467\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.1213\" x2=\"68.7959\" y2=\"56.1467\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"56.1213\" x2=\"69.5579\" y2=\"56.1467\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"56.1213\" x2=\"70.1421\" y2=\"56.1467\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"56.1213\" x2=\"70.5739\" y2=\"56.1467\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"56.1467\" x2=\"67.7037\" y2=\"56.1721\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.1467\" x2=\"68.7959\" y2=\"56.1721\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"56.1467\" x2=\"69.5325\" y2=\"56.1721\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"56.1467\" x2=\"70.1421\" y2=\"56.1721\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"56.1467\" x2=\"70.5739\" y2=\"56.1721\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"56.1721\" x2=\"67.6275\" y2=\"56.1975\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.1721\" x2=\"68.7959\" y2=\"56.1975\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"56.1721\" x2=\"69.5325\" y2=\"56.1975\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"56.1721\" x2=\"70.1675\" y2=\"56.1975\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"56.1721\" x2=\"70.5485\" y2=\"56.1975\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"56.1975\" x2=\"67.6021\" y2=\"56.2229\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.1975\" x2=\"68.7959\" y2=\"56.2229\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"56.1975\" x2=\"69.5325\" y2=\"56.2229\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"56.1975\" x2=\"70.1675\" y2=\"56.2229\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"56.1975\" x2=\"70.5485\" y2=\"56.2229\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"56.2229\" x2=\"67.5767\" y2=\"56.2483\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.2229\" x2=\"68.7959\" y2=\"56.2483\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"56.2229\" x2=\"69.5325\" y2=\"56.2483\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"56.2229\" x2=\"70.1675\" y2=\"56.2483\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"56.2229\" x2=\"70.5485\" y2=\"56.2483\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"56.2483\" x2=\"67.5767\" y2=\"56.2737\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.2483\" x2=\"68.7959\" y2=\"56.2737\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"56.2483\" x2=\"69.5325\" y2=\"56.2737\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"56.2483\" x2=\"70.1929\" y2=\"56.2737\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"56.2483\" x2=\"70.5231\" y2=\"56.2737\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"56.2737\" x2=\"67.5767\" y2=\"56.2991\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.2737\" x2=\"68.7959\" y2=\"56.2991\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"56.2737\" x2=\"69.5071\" y2=\"56.2991\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"56.2737\" x2=\"70.1929\" y2=\"56.2991\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"56.2737\" x2=\"70.5231\" y2=\"56.2991\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"56.2991\" x2=\"67.5767\" y2=\"56.3245\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"56.2991\" x2=\"68.0593\" y2=\"56.3245\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.2991\" x2=\"68.7959\" y2=\"56.3245\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"56.2991\" x2=\"69.5071\" y2=\"56.3245\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"56.2991\" x2=\"70.1929\" y2=\"56.3245\" layer=\"200\"/>\n<rectangle x1=\"70.2437\" y1=\"56.2991\" x2=\"70.5231\" y2=\"56.3245\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"56.3245\" x2=\"67.5767\" y2=\"56.3499\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"56.3245\" x2=\"68.0847\" y2=\"56.3499\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.3245\" x2=\"68.7959\" y2=\"56.3499\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"56.3245\" x2=\"69.4817\" y2=\"56.3499\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"56.3245\" x2=\"70.1929\" y2=\"56.3499\" layer=\"200\"/>\n<rectangle x1=\"70.2437\" y1=\"56.3245\" x2=\"70.4977\" y2=\"56.3499\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"56.3499\" x2=\"67.6021\" y2=\"56.3753\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"56.3499\" x2=\"68.1101\" y2=\"56.3753\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.3499\" x2=\"68.7959\" y2=\"56.3753\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"56.3499\" x2=\"69.4817\" y2=\"56.3753\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"56.3499\" x2=\"70.2183\" y2=\"56.3753\" layer=\"200\"/>\n<rectangle x1=\"70.2437\" y1=\"56.3499\" x2=\"70.4977\" y2=\"56.3753\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"56.3753\" x2=\"67.6275\" y2=\"56.4007\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"56.3753\" x2=\"68.1355\" y2=\"56.4007\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.3753\" x2=\"68.7959\" y2=\"56.4007\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"56.3753\" x2=\"69.4817\" y2=\"56.4007\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"56.3753\" x2=\"70.4977\" y2=\"56.4007\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"56.4007\" x2=\"67.6783\" y2=\"56.4261\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"56.4007\" x2=\"68.1609\" y2=\"56.4261\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.4007\" x2=\"69.4563\" y2=\"56.4261\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"56.4007\" x2=\"70.4723\" y2=\"56.4261\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"56.4261\" x2=\"68.1863\" y2=\"56.4515\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.4261\" x2=\"69.4309\" y2=\"56.4515\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"56.4261\" x2=\"70.4723\" y2=\"56.4515\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"56.4515\" x2=\"68.2117\" y2=\"56.4769\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.4515\" x2=\"69.4309\" y2=\"56.4769\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"56.4515\" x2=\"70.4723\" y2=\"56.4769\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"56.4769\" x2=\"68.2371\" y2=\"56.5023\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.4769\" x2=\"69.4055\" y2=\"56.5023\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"56.4769\" x2=\"70.4723\" y2=\"56.5023\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"56.5023\" x2=\"68.2117\" y2=\"56.5277\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.5023\" x2=\"69.3801\" y2=\"56.5277\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"56.5023\" x2=\"70.4469\" y2=\"56.5277\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"56.5277\" x2=\"68.1863\" y2=\"56.5531\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.5277\" x2=\"69.3547\" y2=\"56.5531\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"56.5277\" x2=\"70.4469\" y2=\"56.5531\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"56.5531\" x2=\"68.1609\" y2=\"56.5785\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.5531\" x2=\"69.3039\" y2=\"56.5785\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"56.5531\" x2=\"70.4469\" y2=\"56.5785\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"56.5785\" x2=\"68.1355\" y2=\"56.6039\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.5785\" x2=\"69.2785\" y2=\"56.6039\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"56.5785\" x2=\"70.4215\" y2=\"56.6039\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"56.6039\" x2=\"68.0847\" y2=\"56.6293\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.6039\" x2=\"69.2023\" y2=\"56.6293\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"56.6039\" x2=\"70.4215\" y2=\"56.6293\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"56.6293\" x2=\"68.0085\" y2=\"56.6547\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"56.6293\" x2=\"69.1261\" y2=\"56.6547\" layer=\"200\"/>\n<rectangle x1=\"70.0659\" y1=\"56.6293\" x2=\"70.4215\" y2=\"56.6547\" layer=\"200\"/>\n<rectangle x1=\"67.6529\" y1=\"56.6547\" x2=\"67.9323\" y2=\"56.6801\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"57.1881\" x2=\"72.1233\" y2=\"57.2135\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"57.2135\" x2=\"72.1233\" y2=\"57.2389\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"57.2389\" x2=\"72.1233\" y2=\"57.2643\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"57.2643\" x2=\"72.1233\" y2=\"57.2897\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"57.2897\" x2=\"72.1233\" y2=\"57.3151\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"57.7977\" x2=\"69.1007\" y2=\"57.8231\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"57.7977\" x2=\"70.2945\" y2=\"57.8231\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"57.8231\" x2=\"67.9069\" y2=\"57.8485\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"57.8231\" x2=\"69.2023\" y2=\"57.8485\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"57.8231\" x2=\"70.3961\" y2=\"57.8485\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"57.8485\" x2=\"67.9069\" y2=\"57.8739\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"57.8485\" x2=\"69.2531\" y2=\"57.8739\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"57.8485\" x2=\"70.4469\" y2=\"57.8739\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"57.8739\" x2=\"67.9069\" y2=\"57.8993\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"57.8739\" x2=\"69.3039\" y2=\"57.8993\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"57.8739\" x2=\"70.4977\" y2=\"57.8993\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"57.8993\" x2=\"67.9323\" y2=\"57.9247\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"57.8993\" x2=\"69.3293\" y2=\"57.9247\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"57.8993\" x2=\"70.5231\" y2=\"57.9247\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"57.9247\" x2=\"67.9323\" y2=\"57.9501\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"57.9247\" x2=\"69.3547\" y2=\"57.9501\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"57.9247\" x2=\"70.5485\" y2=\"57.9501\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"57.9501\" x2=\"67.9323\" y2=\"57.9755\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"57.9501\" x2=\"69.3801\" y2=\"57.9755\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"57.9501\" x2=\"70.5739\" y2=\"57.9755\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"57.9755\" x2=\"67.9577\" y2=\"58.0009\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"57.9755\" x2=\"69.4055\" y2=\"58.0009\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"57.9755\" x2=\"70.5993\" y2=\"58.0009\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"58.0009\" x2=\"67.9577\" y2=\"58.0263\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"58.0009\" x2=\"69.4055\" y2=\"58.0263\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"58.0009\" x2=\"70.5993\" y2=\"58.0263\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"58.0263\" x2=\"67.9577\" y2=\"58.0517\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"58.0263\" x2=\"69.4309\" y2=\"58.0517\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"58.0263\" x2=\"70.6247\" y2=\"58.0517\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"58.0517\" x2=\"67.9831\" y2=\"58.0771\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"58.0517\" x2=\"68.8975\" y2=\"58.0771\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"58.0517\" x2=\"69.4563\" y2=\"58.0771\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"58.0517\" x2=\"70.0913\" y2=\"58.0771\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"58.0517\" x2=\"70.6501\" y2=\"58.0771\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"58.0771\" x2=\"67.9831\" y2=\"58.1025\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"58.0771\" x2=\"68.8467\" y2=\"58.1025\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"58.0771\" x2=\"69.4563\" y2=\"58.1025\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"58.0771\" x2=\"70.0405\" y2=\"58.1025\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"58.0771\" x2=\"70.6501\" y2=\"58.1025\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"58.1025\" x2=\"67.7291\" y2=\"58.1279\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"58.1025\" x2=\"67.9831\" y2=\"58.1279\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"58.1025\" x2=\"68.8213\" y2=\"58.1279\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"58.1025\" x2=\"69.4563\" y2=\"58.1279\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"58.1025\" x2=\"70.0151\" y2=\"58.1279\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"58.1025\" x2=\"70.6501\" y2=\"58.1279\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"58.1279\" x2=\"67.7291\" y2=\"58.1533\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"58.1279\" x2=\"68.0085\" y2=\"58.1533\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"58.1279\" x2=\"68.7959\" y2=\"58.1533\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"58.1279\" x2=\"69.4309\" y2=\"58.1533\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"58.1279\" x2=\"69.9897\" y2=\"58.1533\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"58.1279\" x2=\"70.6247\" y2=\"58.1533\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"58.1533\" x2=\"67.7291\" y2=\"58.1787\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"58.1533\" x2=\"68.0085\" y2=\"58.1787\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"58.1533\" x2=\"68.7705\" y2=\"58.1787\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"58.1533\" x2=\"69.3801\" y2=\"58.1787\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"58.1533\" x2=\"69.9643\" y2=\"58.1787\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"58.1533\" x2=\"70.5739\" y2=\"58.1787\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"58.1787\" x2=\"67.7291\" y2=\"58.2041\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"58.1787\" x2=\"68.0085\" y2=\"58.2041\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.1787\" x2=\"68.7705\" y2=\"58.2041\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"58.1787\" x2=\"69.3547\" y2=\"58.2041\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.1787\" x2=\"69.9643\" y2=\"58.2041\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"58.1787\" x2=\"70.5485\" y2=\"58.2041\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"58.2041\" x2=\"67.7037\" y2=\"58.2295\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"58.2041\" x2=\"68.0085\" y2=\"58.2295\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.2041\" x2=\"68.7451\" y2=\"58.2295\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"58.2041\" x2=\"69.3039\" y2=\"58.2295\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.2041\" x2=\"69.9389\" y2=\"58.2295\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"58.2041\" x2=\"70.4977\" y2=\"58.2295\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"58.2295\" x2=\"67.7037\" y2=\"58.2549\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"58.2295\" x2=\"68.0339\" y2=\"58.2549\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.2295\" x2=\"68.7451\" y2=\"58.2549\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.2295\" x2=\"69.9389\" y2=\"58.2549\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"58.2549\" x2=\"67.7037\" y2=\"58.2803\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"58.2549\" x2=\"68.0339\" y2=\"58.2803\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.2549\" x2=\"68.7197\" y2=\"58.2803\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.2549\" x2=\"69.9135\" y2=\"58.2803\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"58.2803\" x2=\"67.7037\" y2=\"58.3057\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"58.2803\" x2=\"68.0339\" y2=\"58.3057\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.2803\" x2=\"68.7197\" y2=\"58.3057\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.2803\" x2=\"69.9135\" y2=\"58.3057\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"58.3057\" x2=\"67.7037\" y2=\"58.3311\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"58.3057\" x2=\"68.0593\" y2=\"58.3311\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.3057\" x2=\"68.7197\" y2=\"58.3311\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.3057\" x2=\"69.9135\" y2=\"58.3311\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"58.3311\" x2=\"67.6783\" y2=\"58.3565\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"58.3311\" x2=\"68.0593\" y2=\"58.3565\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.3311\" x2=\"68.7197\" y2=\"58.3565\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.3311\" x2=\"69.9135\" y2=\"58.3565\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"58.3565\" x2=\"67.6783\" y2=\"58.3819\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"58.3565\" x2=\"68.0593\" y2=\"58.3819\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.3565\" x2=\"68.7197\" y2=\"58.3819\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.3565\" x2=\"69.9135\" y2=\"58.3819\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"58.3819\" x2=\"67.6783\" y2=\"58.4073\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"58.3819\" x2=\"68.0847\" y2=\"58.4073\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.3819\" x2=\"68.7197\" y2=\"58.4073\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.3819\" x2=\"69.9135\" y2=\"58.4073\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"58.4073\" x2=\"67.6783\" y2=\"58.4327\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"58.4073\" x2=\"68.0847\" y2=\"58.4327\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.4073\" x2=\"68.7197\" y2=\"58.4327\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.4073\" x2=\"69.9135\" y2=\"58.4327\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"58.4327\" x2=\"67.6529\" y2=\"58.4581\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"58.4327\" x2=\"68.0847\" y2=\"58.4581\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.4327\" x2=\"68.7197\" y2=\"58.4581\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.4327\" x2=\"69.9135\" y2=\"58.4581\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"58.4581\" x2=\"67.6529\" y2=\"58.4835\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"58.4581\" x2=\"68.1101\" y2=\"58.4835\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.4581\" x2=\"68.7197\" y2=\"58.4835\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.4581\" x2=\"69.9135\" y2=\"58.4835\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"58.4835\" x2=\"67.6529\" y2=\"58.5089\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"58.4835\" x2=\"68.1101\" y2=\"58.5089\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.4835\" x2=\"68.7197\" y2=\"58.5089\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.4835\" x2=\"69.9135\" y2=\"58.5089\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"58.5089\" x2=\"67.6529\" y2=\"58.5343\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"58.5089\" x2=\"68.1101\" y2=\"58.5343\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.5089\" x2=\"68.7197\" y2=\"58.5343\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.5089\" x2=\"69.9135\" y2=\"58.5343\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"58.5343\" x2=\"67.6275\" y2=\"58.5597\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"58.5343\" x2=\"68.1355\" y2=\"58.5597\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.5343\" x2=\"68.7197\" y2=\"58.5597\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.5343\" x2=\"69.9135\" y2=\"58.5597\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"58.5597\" x2=\"67.6275\" y2=\"58.5851\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"58.5597\" x2=\"68.1355\" y2=\"58.5851\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.5597\" x2=\"68.7197\" y2=\"58.5851\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.5597\" x2=\"69.9135\" y2=\"58.5851\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"58.5851\" x2=\"67.6275\" y2=\"58.6105\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"58.5851\" x2=\"68.1355\" y2=\"58.6105\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.5851\" x2=\"68.7197\" y2=\"58.6105\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.5851\" x2=\"69.9135\" y2=\"58.6105\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"58.6105\" x2=\"67.6021\" y2=\"58.6359\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"58.6105\" x2=\"68.1609\" y2=\"58.6359\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"58.6105\" x2=\"68.7197\" y2=\"58.6359\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"58.6105\" x2=\"69.9135\" y2=\"58.6359\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"58.6359\" x2=\"67.6021\" y2=\"58.6613\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"58.6359\" x2=\"68.1609\" y2=\"58.6613\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.6359\" x2=\"68.7197\" y2=\"58.6613\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.6359\" x2=\"69.9135\" y2=\"58.6613\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"58.6613\" x2=\"67.6021\" y2=\"58.6867\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"58.6613\" x2=\"68.1609\" y2=\"58.6867\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.6613\" x2=\"68.7197\" y2=\"58.6867\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.6613\" x2=\"69.9135\" y2=\"58.6867\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"58.6867\" x2=\"67.5767\" y2=\"58.7121\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"58.6867\" x2=\"68.1609\" y2=\"58.7121\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.6867\" x2=\"68.7451\" y2=\"58.7121\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.6867\" x2=\"69.9389\" y2=\"58.7121\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"58.7121\" x2=\"67.5767\" y2=\"58.7375\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"58.7121\" x2=\"68.1863\" y2=\"58.7375\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.7121\" x2=\"68.7451\" y2=\"58.7375\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.7121\" x2=\"69.9389\" y2=\"58.7375\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"58.7375\" x2=\"67.5767\" y2=\"58.7629\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"58.7375\" x2=\"68.1863\" y2=\"58.7629\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"58.7375\" x2=\"68.7451\" y2=\"58.7629\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"58.7375\" x2=\"69.2785\" y2=\"58.7629\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"58.7375\" x2=\"69.9389\" y2=\"58.7629\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"58.7375\" x2=\"70.4723\" y2=\"58.7629\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"58.7629\" x2=\"67.5767\" y2=\"58.7883\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"58.7629\" x2=\"68.1863\" y2=\"58.7883\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"58.7629\" x2=\"68.7705\" y2=\"58.7883\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"58.7629\" x2=\"69.3293\" y2=\"58.7883\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"58.7629\" x2=\"69.9643\" y2=\"58.7883\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"58.7629\" x2=\"70.5231\" y2=\"58.7883\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"58.7883\" x2=\"67.5513\" y2=\"58.8137\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"58.7883\" x2=\"68.2117\" y2=\"58.8137\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"58.7883\" x2=\"68.7705\" y2=\"58.8137\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"58.7883\" x2=\"69.3547\" y2=\"58.8137\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"58.7883\" x2=\"69.9643\" y2=\"58.8137\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"58.7883\" x2=\"70.5485\" y2=\"58.8137\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"58.8137\" x2=\"67.5513\" y2=\"58.8391\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"58.8137\" x2=\"68.2117\" y2=\"58.8391\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"58.8137\" x2=\"68.7959\" y2=\"58.8391\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"58.8137\" x2=\"69.4055\" y2=\"58.8391\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"58.8137\" x2=\"69.9897\" y2=\"58.8391\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"58.8137\" x2=\"70.5993\" y2=\"58.8391\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"58.8391\" x2=\"67.5513\" y2=\"58.8645\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"58.8391\" x2=\"68.2117\" y2=\"58.8645\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"58.8391\" x2=\"68.8213\" y2=\"58.8645\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"58.8391\" x2=\"69.4563\" y2=\"58.8645\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"58.8391\" x2=\"70.0151\" y2=\"58.8645\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"58.8391\" x2=\"70.6501\" y2=\"58.8645\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"58.8645\" x2=\"67.5259\" y2=\"58.8899\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"58.8645\" x2=\"68.2371\" y2=\"58.8899\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"58.8645\" x2=\"68.8467\" y2=\"58.8899\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"58.8645\" x2=\"69.4563\" y2=\"58.8899\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"58.8645\" x2=\"70.0405\" y2=\"58.8899\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"58.8645\" x2=\"70.6501\" y2=\"58.8899\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"58.8899\" x2=\"67.5259\" y2=\"58.9153\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"58.8899\" x2=\"68.2371\" y2=\"58.9153\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"58.8899\" x2=\"68.8975\" y2=\"58.9153\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"58.8899\" x2=\"69.4563\" y2=\"58.9153\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"58.8899\" x2=\"70.0913\" y2=\"58.9153\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"58.8899\" x2=\"70.6501\" y2=\"58.9153\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"58.9153\" x2=\"67.5259\" y2=\"58.9407\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"58.9153\" x2=\"68.2371\" y2=\"58.9407\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"58.9153\" x2=\"69.4309\" y2=\"58.9407\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"58.9153\" x2=\"70.6247\" y2=\"58.9407\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"58.9407\" x2=\"67.5005\" y2=\"58.9661\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"58.9407\" x2=\"68.2625\" y2=\"58.9661\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"58.9407\" x2=\"69.4309\" y2=\"58.9661\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"58.9407\" x2=\"70.6247\" y2=\"58.9661\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"58.9661\" x2=\"67.5005\" y2=\"58.9915\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"58.9661\" x2=\"68.2625\" y2=\"58.9915\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"58.9661\" x2=\"69.4055\" y2=\"58.9915\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"58.9661\" x2=\"70.5993\" y2=\"58.9915\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"58.9915\" x2=\"67.5005\" y2=\"59.0169\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"58.9915\" x2=\"68.2625\" y2=\"59.0169\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"58.9915\" x2=\"69.3801\" y2=\"59.0169\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"58.9915\" x2=\"70.5739\" y2=\"59.0169\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"59.0169\" x2=\"67.4751\" y2=\"59.0423\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"59.0169\" x2=\"68.2879\" y2=\"59.0423\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"59.0169\" x2=\"69.3547\" y2=\"59.0423\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"59.0169\" x2=\"70.5485\" y2=\"59.0423\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"59.0423\" x2=\"67.4751\" y2=\"59.0677\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"59.0423\" x2=\"68.2879\" y2=\"59.0677\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"59.0423\" x2=\"69.3293\" y2=\"59.0677\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"59.0423\" x2=\"70.5231\" y2=\"59.0677\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"59.0677\" x2=\"67.4751\" y2=\"59.0931\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"59.0677\" x2=\"68.2879\" y2=\"59.0931\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"59.0677\" x2=\"69.3039\" y2=\"59.0931\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"59.0677\" x2=\"70.4977\" y2=\"59.0931\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"59.0931\" x2=\"67.4751\" y2=\"59.1185\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"59.0931\" x2=\"68.3133\" y2=\"59.1185\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"59.0931\" x2=\"69.2531\" y2=\"59.1185\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"59.0931\" x2=\"70.4469\" y2=\"59.1185\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"59.1185\" x2=\"67.4497\" y2=\"59.1439\" layer=\"200\"/>\n<rectangle x1=\"68.0339\" y1=\"59.1185\" x2=\"68.3133\" y2=\"59.1439\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"59.1185\" x2=\"69.2023\" y2=\"59.1439\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"59.1185\" x2=\"70.3961\" y2=\"59.1439\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"59.1439\" x2=\"69.1261\" y2=\"59.1693\" layer=\"200\"/>\n<rectangle x1=\"70.0659\" y1=\"59.1439\" x2=\"70.3199\" y2=\"59.1693\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"59.7281\" x2=\"72.1233\" y2=\"59.7535\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"59.7535\" x2=\"72.1233\" y2=\"59.7789\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"59.7789\" x2=\"72.1233\" y2=\"59.8043\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"59.8043\" x2=\"72.1233\" y2=\"59.8297\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"59.8297\" x2=\"72.1233\" y2=\"59.8551\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"60.3885\" x2=\"67.7545\" y2=\"60.4139\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"60.4139\" x2=\"67.8053\" y2=\"60.4393\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"60.4139\" x2=\"68.2117\" y2=\"60.4393\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.4139\" x2=\"68.7959\" y2=\"60.4393\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"60.4139\" x2=\"69.5833\" y2=\"60.4393\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.4139\" x2=\"70.4977\" y2=\"60.4393\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"60.4393\" x2=\"67.8561\" y2=\"60.4647\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"60.4393\" x2=\"68.2117\" y2=\"60.4647\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.4393\" x2=\"68.7959\" y2=\"60.4647\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"60.4393\" x2=\"69.5833\" y2=\"60.4647\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.4393\" x2=\"70.5739\" y2=\"60.4647\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"60.4647\" x2=\"67.8815\" y2=\"60.4901\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"60.4647\" x2=\"68.2117\" y2=\"60.4901\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.4647\" x2=\"68.7959\" y2=\"60.4901\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"60.4647\" x2=\"69.5833\" y2=\"60.4901\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.4647\" x2=\"70.6501\" y2=\"60.4901\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"60.4901\" x2=\"67.9069\" y2=\"60.5155\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"60.4901\" x2=\"68.2117\" y2=\"60.5155\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.4901\" x2=\"68.7959\" y2=\"60.5155\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"60.4901\" x2=\"69.5833\" y2=\"60.5155\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.4901\" x2=\"70.6755\" y2=\"60.5155\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"60.5155\" x2=\"67.9323\" y2=\"60.5409\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"60.5155\" x2=\"68.2117\" y2=\"60.5409\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.5155\" x2=\"68.7959\" y2=\"60.5409\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"60.5155\" x2=\"69.5833\" y2=\"60.5409\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.5155\" x2=\"70.7263\" y2=\"60.5409\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"60.5409\" x2=\"67.9323\" y2=\"60.5663\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"60.5409\" x2=\"68.2117\" y2=\"60.5663\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.5409\" x2=\"68.7959\" y2=\"60.5663\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"60.5409\" x2=\"69.5833\" y2=\"60.5663\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.5409\" x2=\"70.7517\" y2=\"60.5663\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"60.5663\" x2=\"68.2117\" y2=\"60.5917\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.5663\" x2=\"68.7959\" y2=\"60.5917\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"60.5663\" x2=\"69.5833\" y2=\"60.5917\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.5663\" x2=\"70.7771\" y2=\"60.5917\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"60.5917\" x2=\"68.2117\" y2=\"60.6171\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.5917\" x2=\"68.7959\" y2=\"60.6171\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"60.5917\" x2=\"69.5833\" y2=\"60.6171\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.5917\" x2=\"70.8025\" y2=\"60.6171\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"60.6171\" x2=\"68.2117\" y2=\"60.6425\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.6171\" x2=\"68.7959\" y2=\"60.6425\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"60.6171\" x2=\"69.5833\" y2=\"60.6425\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.6171\" x2=\"70.8025\" y2=\"60.6425\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"60.6425\" x2=\"67.6021\" y2=\"60.6679\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"60.6425\" x2=\"68.2117\" y2=\"60.6679\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.6425\" x2=\"68.7959\" y2=\"60.6679\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"60.6425\" x2=\"69.5833\" y2=\"60.6679\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.6425\" x2=\"70.8279\" y2=\"60.6679\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"60.6679\" x2=\"67.5513\" y2=\"60.6933\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"60.6679\" x2=\"68.2117\" y2=\"60.6933\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.6679\" x2=\"68.7959\" y2=\"60.6933\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"60.6679\" x2=\"69.5833\" y2=\"60.6933\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.6679\" x2=\"70.1675\" y2=\"60.6933\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"60.6679\" x2=\"70.8533\" y2=\"60.6933\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"60.6933\" x2=\"67.5005\" y2=\"60.7187\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"60.6933\" x2=\"68.2117\" y2=\"60.7187\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.6933\" x2=\"68.7959\" y2=\"60.7187\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"60.6933\" x2=\"69.5833\" y2=\"60.7187\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.6933\" x2=\"70.1675\" y2=\"60.7187\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"60.6933\" x2=\"70.8533\" y2=\"60.7187\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"60.7187\" x2=\"67.5005\" y2=\"60.7441\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"60.7187\" x2=\"68.2117\" y2=\"60.7441\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.7187\" x2=\"68.7959\" y2=\"60.7441\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"60.7187\" x2=\"69.5833\" y2=\"60.7441\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.7187\" x2=\"70.1675\" y2=\"60.7441\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"60.7187\" x2=\"70.8533\" y2=\"60.7441\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"60.7441\" x2=\"67.4751\" y2=\"60.7695\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"60.7441\" x2=\"68.2117\" y2=\"60.7695\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.7441\" x2=\"68.7959\" y2=\"60.7695\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"60.7441\" x2=\"69.5833\" y2=\"60.7695\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.7441\" x2=\"70.1675\" y2=\"60.7695\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"60.7441\" x2=\"70.8787\" y2=\"60.7695\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"60.7695\" x2=\"67.4497\" y2=\"60.7949\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"60.7695\" x2=\"68.2117\" y2=\"60.7949\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.7695\" x2=\"68.7959\" y2=\"60.7949\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"60.7695\" x2=\"69.5833\" y2=\"60.7949\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.7695\" x2=\"70.1675\" y2=\"60.7949\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"60.7695\" x2=\"70.8787\" y2=\"60.7949\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"60.7949\" x2=\"67.4497\" y2=\"60.8203\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"60.7949\" x2=\"68.2117\" y2=\"60.8203\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.7949\" x2=\"68.7959\" y2=\"60.8203\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"60.7949\" x2=\"69.5833\" y2=\"60.8203\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.7949\" x2=\"70.1675\" y2=\"60.8203\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"60.7949\" x2=\"70.9041\" y2=\"60.8203\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"60.8203\" x2=\"67.4497\" y2=\"60.8457\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"60.8203\" x2=\"68.2117\" y2=\"60.8457\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.8203\" x2=\"68.7959\" y2=\"60.8457\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"60.8203\" x2=\"69.5833\" y2=\"60.8457\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.8203\" x2=\"70.1675\" y2=\"60.8457\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"60.8203\" x2=\"70.9041\" y2=\"60.8457\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"60.8457\" x2=\"67.4243\" y2=\"60.8711\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"60.8457\" x2=\"68.2117\" y2=\"60.8711\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.8457\" x2=\"68.7959\" y2=\"60.8711\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"60.8457\" x2=\"69.5833\" y2=\"60.8711\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.8457\" x2=\"70.1675\" y2=\"60.8711\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"60.8457\" x2=\"70.9041\" y2=\"60.8711\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"60.8711\" x2=\"67.4243\" y2=\"60.8965\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"60.8711\" x2=\"68.2117\" y2=\"60.8965\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.8711\" x2=\"68.7959\" y2=\"60.8965\" layer=\"200\"/>\n<rectangle x1=\"68.9991\" y1=\"60.8711\" x2=\"69.2785\" y2=\"60.8965\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"60.8711\" x2=\"69.5833\" y2=\"60.8965\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.8711\" x2=\"70.1675\" y2=\"60.8965\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"60.8711\" x2=\"70.9041\" y2=\"60.8965\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"60.8965\" x2=\"67.4243\" y2=\"60.9219\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"60.8965\" x2=\"68.2117\" y2=\"60.9219\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.8965\" x2=\"68.7959\" y2=\"60.9219\" layer=\"200\"/>\n<rectangle x1=\"68.9991\" y1=\"60.8965\" x2=\"69.2785\" y2=\"60.9219\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"60.8965\" x2=\"69.5833\" y2=\"60.9219\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.8965\" x2=\"70.1675\" y2=\"60.9219\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"60.8965\" x2=\"70.9041\" y2=\"60.9219\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"60.9219\" x2=\"67.4243\" y2=\"60.9473\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"60.9219\" x2=\"68.2117\" y2=\"60.9473\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.9219\" x2=\"68.7959\" y2=\"60.9473\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"60.9219\" x2=\"69.2531\" y2=\"60.9473\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"60.9219\" x2=\"69.5833\" y2=\"60.9473\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.9219\" x2=\"70.1675\" y2=\"60.9473\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"60.9219\" x2=\"70.9295\" y2=\"60.9473\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"60.9473\" x2=\"67.4243\" y2=\"60.9727\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"60.9473\" x2=\"68.2117\" y2=\"60.9727\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.9473\" x2=\"68.7959\" y2=\"60.9727\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"60.9473\" x2=\"69.2531\" y2=\"60.9727\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"60.9473\" x2=\"69.5833\" y2=\"60.9727\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.9473\" x2=\"70.1675\" y2=\"60.9727\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"60.9473\" x2=\"70.9295\" y2=\"60.9727\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"60.9727\" x2=\"67.4243\" y2=\"60.9981\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"60.9727\" x2=\"68.2117\" y2=\"60.9981\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.9727\" x2=\"68.7959\" y2=\"60.9981\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"60.9727\" x2=\"69.2277\" y2=\"60.9981\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"60.9727\" x2=\"69.5833\" y2=\"60.9981\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.9727\" x2=\"70.1675\" y2=\"60.9981\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"60.9727\" x2=\"70.9295\" y2=\"60.9981\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"60.9981\" x2=\"67.4243\" y2=\"61.0235\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"60.9981\" x2=\"68.2117\" y2=\"61.0235\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"60.9981\" x2=\"68.7959\" y2=\"61.0235\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"60.9981\" x2=\"69.2277\" y2=\"61.0235\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"60.9981\" x2=\"69.5833\" y2=\"61.0235\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"60.9981\" x2=\"70.1675\" y2=\"61.0235\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"60.9981\" x2=\"70.9295\" y2=\"61.0235\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"61.0235\" x2=\"67.4243\" y2=\"61.0489\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"61.0235\" x2=\"68.2117\" y2=\"61.0489\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.0235\" x2=\"68.7959\" y2=\"61.0489\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"61.0235\" x2=\"69.2023\" y2=\"61.0489\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.0235\" x2=\"69.5833\" y2=\"61.0489\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.0235\" x2=\"70.1675\" y2=\"61.0489\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.0235\" x2=\"70.9295\" y2=\"61.0489\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"61.0489\" x2=\"67.4243\" y2=\"61.0743\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"61.0489\" x2=\"68.2117\" y2=\"61.0743\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.0489\" x2=\"68.7959\" y2=\"61.0743\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"61.0489\" x2=\"69.2023\" y2=\"61.0743\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.0489\" x2=\"69.5833\" y2=\"61.0743\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.0489\" x2=\"70.1675\" y2=\"61.0743\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.0489\" x2=\"70.9295\" y2=\"61.0743\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"61.0743\" x2=\"67.4243\" y2=\"61.0997\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"61.0743\" x2=\"68.2117\" y2=\"61.0997\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.0743\" x2=\"68.7959\" y2=\"61.0997\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"61.0743\" x2=\"69.1769\" y2=\"61.0997\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.0743\" x2=\"69.5833\" y2=\"61.0997\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.0743\" x2=\"70.1675\" y2=\"61.0997\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.0743\" x2=\"70.9295\" y2=\"61.0997\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"61.0997\" x2=\"67.4243\" y2=\"61.1251\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"61.0997\" x2=\"68.2117\" y2=\"61.1251\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.0997\" x2=\"68.7959\" y2=\"61.1251\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"61.0997\" x2=\"69.1769\" y2=\"61.1251\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.0997\" x2=\"69.5833\" y2=\"61.1251\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.0997\" x2=\"70.1675\" y2=\"61.1251\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.0997\" x2=\"70.9295\" y2=\"61.1251\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"61.1251\" x2=\"67.4243\" y2=\"61.1505\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.1251\" x2=\"68.7959\" y2=\"61.1505\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"61.1251\" x2=\"69.1515\" y2=\"61.1505\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.1251\" x2=\"69.5833\" y2=\"61.1505\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.1251\" x2=\"70.1675\" y2=\"61.1505\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.1251\" x2=\"70.9295\" y2=\"61.1505\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"61.1505\" x2=\"67.4243\" y2=\"61.1759\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.1505\" x2=\"68.7959\" y2=\"61.1759\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"61.1505\" x2=\"69.1515\" y2=\"61.1759\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.1505\" x2=\"69.5833\" y2=\"61.1759\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.1505\" x2=\"70.1675\" y2=\"61.1759\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.1505\" x2=\"70.9295\" y2=\"61.1759\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"61.1759\" x2=\"67.4243\" y2=\"61.2013\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.1759\" x2=\"68.7959\" y2=\"61.2013\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"61.1759\" x2=\"69.1261\" y2=\"61.2013\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.1759\" x2=\"69.5833\" y2=\"61.2013\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.1759\" x2=\"70.1675\" y2=\"61.2013\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.1759\" x2=\"70.9295\" y2=\"61.2013\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"61.2013\" x2=\"67.4243\" y2=\"61.2267\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.2013\" x2=\"68.7959\" y2=\"61.2267\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"61.2013\" x2=\"69.1261\" y2=\"61.2267\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.2013\" x2=\"69.5833\" y2=\"61.2267\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.2013\" x2=\"70.1675\" y2=\"61.2267\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.2013\" x2=\"70.9295\" y2=\"61.2267\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"61.2267\" x2=\"67.4243\" y2=\"61.2521\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.2267\" x2=\"68.7959\" y2=\"61.2521\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"61.2267\" x2=\"69.1007\" y2=\"61.2521\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.2267\" x2=\"69.5833\" y2=\"61.2521\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.2267\" x2=\"70.1675\" y2=\"61.2521\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.2267\" x2=\"70.9041\" y2=\"61.2521\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"61.2521\" x2=\"67.4243\" y2=\"61.2775\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.2521\" x2=\"68.7959\" y2=\"61.2775\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"61.2521\" x2=\"69.1007\" y2=\"61.2775\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.2521\" x2=\"69.5833\" y2=\"61.2775\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.2521\" x2=\"70.1675\" y2=\"61.2775\" layer=\"200\"/>\n<rectangle x1=\"70.6247\" y1=\"61.2521\" x2=\"70.9041\" y2=\"61.2775\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"61.2775\" x2=\"67.4497\" y2=\"61.3029\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.2775\" x2=\"69.0753\" y2=\"61.3029\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.2775\" x2=\"69.5833\" y2=\"61.3029\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.2775\" x2=\"70.1675\" y2=\"61.3029\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"61.2775\" x2=\"70.9041\" y2=\"61.3029\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"61.3029\" x2=\"67.4497\" y2=\"61.3283\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.3029\" x2=\"69.0753\" y2=\"61.3283\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.3029\" x2=\"69.5833\" y2=\"61.3283\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.3029\" x2=\"70.1675\" y2=\"61.3283\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"61.3029\" x2=\"70.9041\" y2=\"61.3283\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"61.3283\" x2=\"67.4497\" y2=\"61.3537\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"61.3283\" x2=\"68.0085\" y2=\"61.3537\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.3283\" x2=\"69.0499\" y2=\"61.3537\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.3283\" x2=\"69.5833\" y2=\"61.3537\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.3283\" x2=\"70.1675\" y2=\"61.3537\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"61.3283\" x2=\"70.9041\" y2=\"61.3537\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"61.3537\" x2=\"67.4751\" y2=\"61.3791\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"61.3537\" x2=\"68.0593\" y2=\"61.3791\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.3537\" x2=\"69.0499\" y2=\"61.3791\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.3537\" x2=\"69.5833\" y2=\"61.3791\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.3537\" x2=\"70.1675\" y2=\"61.3791\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"61.3537\" x2=\"70.8787\" y2=\"61.3791\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"61.3791\" x2=\"67.4751\" y2=\"61.4045\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"61.3791\" x2=\"68.0847\" y2=\"61.4045\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.3791\" x2=\"69.0245\" y2=\"61.4045\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.3791\" x2=\"69.5833\" y2=\"61.4045\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.3791\" x2=\"70.1675\" y2=\"61.4045\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"61.3791\" x2=\"70.8787\" y2=\"61.4045\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"61.4045\" x2=\"67.5005\" y2=\"61.4299\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"61.4045\" x2=\"68.1355\" y2=\"61.4299\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.4045\" x2=\"68.9991\" y2=\"61.4299\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.4045\" x2=\"69.5833\" y2=\"61.4299\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.4045\" x2=\"70.1675\" y2=\"61.4299\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"61.4045\" x2=\"70.8533\" y2=\"61.4299\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"61.4299\" x2=\"67.5259\" y2=\"61.4553\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"61.4299\" x2=\"68.1609\" y2=\"61.4553\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.4299\" x2=\"68.9991\" y2=\"61.4553\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.4299\" x2=\"69.5833\" y2=\"61.4553\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.4299\" x2=\"70.1675\" y2=\"61.4553\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"61.4299\" x2=\"70.8533\" y2=\"61.4553\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"61.4553\" x2=\"67.5513\" y2=\"61.4807\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"61.4553\" x2=\"68.1863\" y2=\"61.4807\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.4553\" x2=\"68.9737\" y2=\"61.4807\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.4553\" x2=\"69.5833\" y2=\"61.4807\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.4553\" x2=\"70.1675\" y2=\"61.4807\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"61.4553\" x2=\"70.8533\" y2=\"61.4807\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"61.4807\" x2=\"67.6021\" y2=\"61.5061\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"61.4807\" x2=\"68.1609\" y2=\"61.5061\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.4807\" x2=\"68.9737\" y2=\"61.5061\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.4807\" x2=\"69.5833\" y2=\"61.5061\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.4807\" x2=\"70.8279\" y2=\"61.5061\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"61.5061\" x2=\"68.1609\" y2=\"61.5315\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.5061\" x2=\"68.9483\" y2=\"61.5315\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.5061\" x2=\"69.5833\" y2=\"61.5315\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.5061\" x2=\"70.8025\" y2=\"61.5315\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"61.5315\" x2=\"68.1355\" y2=\"61.5569\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.5315\" x2=\"68.9483\" y2=\"61.5569\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.5315\" x2=\"69.5833\" y2=\"61.5569\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.5315\" x2=\"70.8025\" y2=\"61.5569\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"61.5569\" x2=\"68.1101\" y2=\"61.5823\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.5569\" x2=\"68.9229\" y2=\"61.5823\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.5569\" x2=\"69.5833\" y2=\"61.5823\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.5569\" x2=\"70.7771\" y2=\"61.5823\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"61.5823\" x2=\"68.0847\" y2=\"61.6077\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.5823\" x2=\"68.9229\" y2=\"61.6077\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.5823\" x2=\"69.5833\" y2=\"61.6077\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.5823\" x2=\"70.7517\" y2=\"61.6077\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"61.6077\" x2=\"68.0593\" y2=\"61.6331\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.6077\" x2=\"68.8975\" y2=\"61.6331\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.6077\" x2=\"69.5833\" y2=\"61.6331\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.6077\" x2=\"70.7263\" y2=\"61.6331\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"61.6331\" x2=\"68.0339\" y2=\"61.6585\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.6331\" x2=\"68.8975\" y2=\"61.6585\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.6331\" x2=\"69.5833\" y2=\"61.6585\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.6331\" x2=\"70.6755\" y2=\"61.6585\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"61.6585\" x2=\"68.0085\" y2=\"61.6839\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.6585\" x2=\"68.8721\" y2=\"61.6839\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.6585\" x2=\"69.5833\" y2=\"61.6839\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.6585\" x2=\"70.6501\" y2=\"61.6839\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"61.6839\" x2=\"67.9577\" y2=\"61.7093\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.6839\" x2=\"68.8467\" y2=\"61.7093\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.6839\" x2=\"69.5833\" y2=\"61.7093\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.6839\" x2=\"70.5739\" y2=\"61.7093\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"61.7093\" x2=\"67.9069\" y2=\"61.7347\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"61.7093\" x2=\"68.8467\" y2=\"61.7347\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"61.7093\" x2=\"69.5833\" y2=\"61.7347\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"61.7093\" x2=\"70.4977\" y2=\"61.7347\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"61.7347\" x2=\"67.8053\" y2=\"61.7601\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"62.2681\" x2=\"72.1233\" y2=\"62.2935\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"62.2935\" x2=\"72.1233\" y2=\"62.3189\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"62.3189\" x2=\"72.1233\" y2=\"62.3443\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"62.3443\" x2=\"72.1233\" y2=\"62.3697\" layer=\"200\"/>\n<rectangle x1=\"65.6463\" y1=\"62.3697\" x2=\"72.1233\" y2=\"62.3951\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"39.3573\" x2=\"72.0979\" y2=\"39.3827\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"39.3827\" x2=\"72.0979\" y2=\"39.4081\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"39.4081\" x2=\"72.0979\" y2=\"39.4335\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"39.4335\" x2=\"72.0979\" y2=\"39.4589\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"39.4589\" x2=\"72.0979\" y2=\"39.4843\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"39.9923\" x2=\"68.0085\" y2=\"40.0177\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"39.9923\" x2=\"69.2785\" y2=\"40.0177\" layer=\"200\"/>\n<rectangle x1=\"67.6529\" y1=\"40.0177\" x2=\"68.1101\" y2=\"40.0431\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"40.0177\" x2=\"69.3801\" y2=\"40.0431\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.0177\" x2=\"70.6247\" y2=\"40.0431\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"40.0431\" x2=\"68.1609\" y2=\"40.0685\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"40.0431\" x2=\"69.4309\" y2=\"40.0685\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.0431\" x2=\"70.6247\" y2=\"40.0685\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"40.0685\" x2=\"68.2117\" y2=\"40.0939\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"40.0685\" x2=\"69.4817\" y2=\"40.0939\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.0685\" x2=\"70.6247\" y2=\"40.0939\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"40.0939\" x2=\"68.2371\" y2=\"40.1193\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"40.0939\" x2=\"69.5071\" y2=\"40.1193\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.0939\" x2=\"70.6247\" y2=\"40.1193\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"40.1193\" x2=\"68.2625\" y2=\"40.1447\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"40.1193\" x2=\"69.5325\" y2=\"40.1447\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.1193\" x2=\"70.6247\" y2=\"40.1447\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"40.1447\" x2=\"68.2879\" y2=\"40.1701\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"40.1447\" x2=\"69.5579\" y2=\"40.1701\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.1447\" x2=\"70.6247\" y2=\"40.1701\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"40.1701\" x2=\"68.3133\" y2=\"40.1955\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"40.1701\" x2=\"69.5833\" y2=\"40.1955\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.1701\" x2=\"70.6247\" y2=\"40.1955\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"40.1955\" x2=\"68.3387\" y2=\"40.2209\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"40.1955\" x2=\"69.5833\" y2=\"40.2209\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.1955\" x2=\"70.6247\" y2=\"40.2209\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"40.2209\" x2=\"68.3387\" y2=\"40.2463\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"40.2209\" x2=\"69.6087\" y2=\"40.2463\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.2209\" x2=\"70.6247\" y2=\"40.2463\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"40.2463\" x2=\"67.8053\" y2=\"40.2717\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"40.2463\" x2=\"68.3641\" y2=\"40.2717\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"40.2463\" x2=\"69.0753\" y2=\"40.2717\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"40.2463\" x2=\"69.6341\" y2=\"40.2717\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.2463\" x2=\"70.6247\" y2=\"40.2717\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"40.2717\" x2=\"67.7291\" y2=\"40.2971\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"40.2717\" x2=\"68.3641\" y2=\"40.2971\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"40.2717\" x2=\"69.0245\" y2=\"40.2971\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"40.2717\" x2=\"69.6341\" y2=\"40.2971\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.2717\" x2=\"70.1421\" y2=\"40.2971\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"40.2971\" x2=\"67.6783\" y2=\"40.3225\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"40.2971\" x2=\"68.3641\" y2=\"40.3225\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"40.2971\" x2=\"68.9991\" y2=\"40.3225\" layer=\"200\"/>\n<rectangle x1=\"69.3293\" y1=\"40.2971\" x2=\"69.6341\" y2=\"40.3225\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.2971\" x2=\"70.1421\" y2=\"40.3225\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"40.3225\" x2=\"67.6275\" y2=\"40.3479\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"40.3225\" x2=\"68.3895\" y2=\"40.3479\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"40.3225\" x2=\"68.9737\" y2=\"40.3479\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"40.3225\" x2=\"69.6087\" y2=\"40.3479\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.3225\" x2=\"70.1421\" y2=\"40.3479\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"40.3479\" x2=\"67.6021\" y2=\"40.3733\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"40.3479\" x2=\"68.3895\" y2=\"40.3733\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"40.3479\" x2=\"68.9483\" y2=\"40.3733\" layer=\"200\"/>\n<rectangle x1=\"69.3801\" y1=\"40.3479\" x2=\"69.5579\" y2=\"40.3733\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.3479\" x2=\"70.1421\" y2=\"40.3733\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"40.3733\" x2=\"67.5767\" y2=\"40.3987\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"40.3733\" x2=\"68.3895\" y2=\"40.3987\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.3733\" x2=\"68.9483\" y2=\"40.3987\" layer=\"200\"/>\n<rectangle x1=\"69.4055\" y1=\"40.3733\" x2=\"69.5325\" y2=\"40.3987\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.3733\" x2=\"70.1421\" y2=\"40.3987\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"40.3987\" x2=\"68.3895\" y2=\"40.4241\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.3987\" x2=\"68.9229\" y2=\"40.4241\" layer=\"200\"/>\n<rectangle x1=\"69.4055\" y1=\"40.3987\" x2=\"69.4817\" y2=\"40.4241\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.3987\" x2=\"70.1421\" y2=\"40.4241\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"40.4241\" x2=\"68.3895\" y2=\"40.4495\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.4241\" x2=\"68.9229\" y2=\"40.4495\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.4241\" x2=\"70.1421\" y2=\"40.4495\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"40.4495\" x2=\"68.3895\" y2=\"40.4749\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.4495\" x2=\"68.8975\" y2=\"40.4749\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.4495\" x2=\"70.1421\" y2=\"40.4749\" layer=\"200\"/>\n<rectangle x1=\"68.0847\" y1=\"40.4749\" x2=\"68.3895\" y2=\"40.5003\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.4749\" x2=\"68.8975\" y2=\"40.5003\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.4749\" x2=\"70.1421\" y2=\"40.5003\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"40.5003\" x2=\"68.3895\" y2=\"40.5257\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.5003\" x2=\"68.8975\" y2=\"40.5257\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.5003\" x2=\"70.1421\" y2=\"40.5257\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"40.5257\" x2=\"68.3641\" y2=\"40.5511\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.5257\" x2=\"68.8975\" y2=\"40.5511\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.5257\" x2=\"70.1421\" y2=\"40.5511\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"40.5511\" x2=\"68.3641\" y2=\"40.5765\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.5511\" x2=\"68.8975\" y2=\"40.5765\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.5511\" x2=\"70.1421\" y2=\"40.5765\" layer=\"200\"/>\n<rectangle x1=\"67.7037\" y1=\"40.5765\" x2=\"68.3641\" y2=\"40.6019\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.5765\" x2=\"68.8975\" y2=\"40.6019\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.5765\" x2=\"70.1421\" y2=\"40.6019\" layer=\"200\"/>\n<rectangle x1=\"67.6529\" y1=\"40.6019\" x2=\"68.3387\" y2=\"40.6273\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.6019\" x2=\"68.8975\" y2=\"40.6273\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.6019\" x2=\"70.1421\" y2=\"40.6273\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"40.6273\" x2=\"68.3387\" y2=\"40.6527\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.6273\" x2=\"68.8975\" y2=\"40.6527\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.6273\" x2=\"70.1421\" y2=\"40.6527\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"40.6527\" x2=\"68.3133\" y2=\"40.6781\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.6527\" x2=\"68.8975\" y2=\"40.6781\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.6527\" x2=\"70.1421\" y2=\"40.6781\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"40.6781\" x2=\"68.2879\" y2=\"40.7035\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.6781\" x2=\"68.8975\" y2=\"40.7035\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.6781\" x2=\"70.1421\" y2=\"40.7035\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"40.7035\" x2=\"68.2625\" y2=\"40.7289\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.7035\" x2=\"68.8975\" y2=\"40.7289\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.7035\" x2=\"70.1421\" y2=\"40.7289\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"40.7289\" x2=\"68.2117\" y2=\"40.7543\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.7289\" x2=\"68.8975\" y2=\"40.7543\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.7289\" x2=\"70.1421\" y2=\"40.7543\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"40.7543\" x2=\"68.1609\" y2=\"40.7797\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.7543\" x2=\"68.8975\" y2=\"40.7797\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.7543\" x2=\"70.1421\" y2=\"40.7797\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"40.7797\" x2=\"68.1101\" y2=\"40.8051\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.7797\" x2=\"68.8975\" y2=\"40.8051\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.7797\" x2=\"70.1421\" y2=\"40.8051\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"40.8051\" x2=\"67.9831\" y2=\"40.8305\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"40.8051\" x2=\"68.8975\" y2=\"40.8305\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.8051\" x2=\"70.1421\" y2=\"40.8305\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"40.8305\" x2=\"67.8307\" y2=\"40.8559\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.8305\" x2=\"68.8975\" y2=\"40.8559\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.8305\" x2=\"70.1421\" y2=\"40.8559\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"40.8559\" x2=\"67.7545\" y2=\"40.8813\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.8559\" x2=\"68.8975\" y2=\"40.8813\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.8559\" x2=\"70.1421\" y2=\"40.8813\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"40.8813\" x2=\"67.7291\" y2=\"40.9067\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.8813\" x2=\"68.9229\" y2=\"40.9067\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.8813\" x2=\"70.1421\" y2=\"40.9067\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"40.9067\" x2=\"67.7037\" y2=\"40.9321\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.9067\" x2=\"68.9229\" y2=\"40.9321\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.9067\" x2=\"70.1421\" y2=\"40.9321\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"40.9321\" x2=\"67.7037\" y2=\"40.9575\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"40.9321\" x2=\"68.9229\" y2=\"40.9575\" layer=\"200\"/>\n<rectangle x1=\"69.4055\" y1=\"40.9321\" x2=\"69.4563\" y2=\"40.9575\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.9321\" x2=\"70.1421\" y2=\"40.9575\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"40.9575\" x2=\"67.7037\" y2=\"40.9829\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"40.9575\" x2=\"68.9483\" y2=\"40.9829\" layer=\"200\"/>\n<rectangle x1=\"69.3801\" y1=\"40.9575\" x2=\"69.5071\" y2=\"40.9829\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.9575\" x2=\"70.1421\" y2=\"40.9829\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"40.9829\" x2=\"67.7037\" y2=\"41.0083\" layer=\"200\"/>\n<rectangle x1=\"68.1609\" y1=\"40.9829\" x2=\"68.1863\" y2=\"41.0083\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"40.9829\" x2=\"68.9483\" y2=\"41.0083\" layer=\"200\"/>\n<rectangle x1=\"69.3801\" y1=\"40.9829\" x2=\"69.5325\" y2=\"41.0083\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"40.9829\" x2=\"70.1421\" y2=\"41.0083\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"41.0083\" x2=\"67.7037\" y2=\"41.0337\" layer=\"200\"/>\n<rectangle x1=\"68.1355\" y1=\"41.0083\" x2=\"68.2117\" y2=\"41.0337\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"41.0083\" x2=\"68.9737\" y2=\"41.0337\" layer=\"200\"/>\n<rectangle x1=\"69.3547\" y1=\"41.0083\" x2=\"69.5833\" y2=\"41.0337\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.0083\" x2=\"70.1421\" y2=\"41.0337\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"41.0337\" x2=\"67.7291\" y2=\"41.0591\" layer=\"200\"/>\n<rectangle x1=\"68.1101\" y1=\"41.0337\" x2=\"68.2371\" y2=\"41.0591\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"41.0337\" x2=\"68.9991\" y2=\"41.0591\" layer=\"200\"/>\n<rectangle x1=\"69.3293\" y1=\"41.0337\" x2=\"69.6341\" y2=\"41.0591\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.0337\" x2=\"70.1421\" y2=\"41.0591\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"41.0591\" x2=\"67.7545\" y2=\"41.0845\" layer=\"200\"/>\n<rectangle x1=\"68.0593\" y1=\"41.0591\" x2=\"68.2625\" y2=\"41.0845\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"41.0591\" x2=\"69.0245\" y2=\"41.0845\" layer=\"200\"/>\n<rectangle x1=\"69.3039\" y1=\"41.0591\" x2=\"69.6341\" y2=\"41.0845\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.0591\" x2=\"70.1421\" y2=\"41.0845\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"41.0845\" x2=\"67.8053\" y2=\"41.1099\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"41.0845\" x2=\"68.2879\" y2=\"41.1099\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"41.0845\" x2=\"69.0753\" y2=\"41.1099\" layer=\"200\"/>\n<rectangle x1=\"69.2531\" y1=\"41.0845\" x2=\"69.6341\" y2=\"41.1099\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.0845\" x2=\"70.1421\" y2=\"41.1099\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"41.1099\" x2=\"68.3133\" y2=\"41.1353\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"41.1099\" x2=\"69.6087\" y2=\"41.1353\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.1099\" x2=\"70.1421\" y2=\"41.1353\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"41.1353\" x2=\"68.3387\" y2=\"41.1607\" layer=\"200\"/>\n<rectangle x1=\"68.7197\" y1=\"41.1353\" x2=\"69.6087\" y2=\"41.1607\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.1353\" x2=\"70.1421\" y2=\"41.1607\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"41.1607\" x2=\"68.3641\" y2=\"41.1861\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"41.1607\" x2=\"69.5833\" y2=\"41.1861\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.1607\" x2=\"70.1421\" y2=\"41.1861\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"41.1861\" x2=\"68.3387\" y2=\"41.2115\" layer=\"200\"/>\n<rectangle x1=\"68.7705\" y1=\"41.1861\" x2=\"69.5579\" y2=\"41.2115\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.1861\" x2=\"70.1421\" y2=\"41.2115\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"41.2115\" x2=\"68.3133\" y2=\"41.2369\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"41.2115\" x2=\"69.5325\" y2=\"41.2369\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.2115\" x2=\"70.1421\" y2=\"41.2369\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"41.2369\" x2=\"68.2879\" y2=\"41.2623\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"41.2369\" x2=\"69.5071\" y2=\"41.2623\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.2369\" x2=\"70.1421\" y2=\"41.2623\" layer=\"200\"/>\n<rectangle x1=\"67.5767\" y1=\"41.2623\" x2=\"68.2625\" y2=\"41.2877\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"41.2623\" x2=\"69.4817\" y2=\"41.2877\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.2623\" x2=\"70.1421\" y2=\"41.2877\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"41.2877\" x2=\"68.2117\" y2=\"41.3131\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"41.2877\" x2=\"69.4309\" y2=\"41.3131\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.2877\" x2=\"70.1421\" y2=\"41.3131\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"41.3131\" x2=\"68.1355\" y2=\"41.3385\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"41.3131\" x2=\"69.3801\" y2=\"41.3385\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"41.3131\" x2=\"70.1421\" y2=\"41.3385\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"41.3385\" x2=\"68.0593\" y2=\"41.3639\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"41.3385\" x2=\"69.3039\" y2=\"41.3639\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"41.8973\" x2=\"72.0979\" y2=\"41.9227\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"41.9227\" x2=\"72.0979\" y2=\"41.9481\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"41.9481\" x2=\"72.0979\" y2=\"41.9735\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"41.9735\" x2=\"72.0979\" y2=\"41.9989\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"41.9989\" x2=\"72.0979\" y2=\"42.0243\" layer=\"200\"/>\n<rectangle x1=\"67.6021\" y1=\"42.5577\" x2=\"67.8561\" y2=\"42.5831\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"42.5831\" x2=\"67.9577\" y2=\"42.6085\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.5831\" x2=\"69.1007\" y2=\"42.6085\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"42.5831\" x2=\"69.8881\" y2=\"42.6085\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"42.5831\" x2=\"70.8025\" y2=\"42.6085\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"42.6085\" x2=\"68.0085\" y2=\"42.6339\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.6085\" x2=\"69.1769\" y2=\"42.6339\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"42.6085\" x2=\"69.9135\" y2=\"42.6339\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"42.6085\" x2=\"70.8025\" y2=\"42.6339\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"42.6339\" x2=\"68.0593\" y2=\"42.6593\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.6339\" x2=\"69.2531\" y2=\"42.6593\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"42.6339\" x2=\"69.9135\" y2=\"42.6593\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"42.6339\" x2=\"70.7771\" y2=\"42.6593\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"42.6593\" x2=\"68.0847\" y2=\"42.6847\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.6593\" x2=\"69.2785\" y2=\"42.6847\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"42.6593\" x2=\"69.9135\" y2=\"42.6847\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"42.6593\" x2=\"70.7771\" y2=\"42.6847\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"42.6847\" x2=\"68.1101\" y2=\"42.7101\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.6847\" x2=\"69.3293\" y2=\"42.7101\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"42.6847\" x2=\"69.9389\" y2=\"42.7101\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"42.6847\" x2=\"70.7771\" y2=\"42.7101\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"42.7101\" x2=\"68.1355\" y2=\"42.7355\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.7101\" x2=\"69.3547\" y2=\"42.7355\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"42.7101\" x2=\"69.9389\" y2=\"42.7355\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"42.7101\" x2=\"70.7517\" y2=\"42.7355\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"42.7355\" x2=\"68.1609\" y2=\"42.7609\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.7355\" x2=\"69.3801\" y2=\"42.7609\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"42.7355\" x2=\"69.9389\" y2=\"42.7609\" layer=\"200\"/>\n<rectangle x1=\"70.4723\" y1=\"42.7355\" x2=\"70.7517\" y2=\"42.7609\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"42.7609\" x2=\"68.1863\" y2=\"42.7863\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.7609\" x2=\"69.4055\" y2=\"42.7863\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"42.7609\" x2=\"69.9389\" y2=\"42.7863\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"42.7609\" x2=\"70.7517\" y2=\"42.7863\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"42.7863\" x2=\"68.1863\" y2=\"42.8117\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.7863\" x2=\"69.4055\" y2=\"42.8117\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"42.7863\" x2=\"69.9643\" y2=\"42.8117\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"42.7863\" x2=\"70.7263\" y2=\"42.8117\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"42.8117\" x2=\"67.6529\" y2=\"42.8371\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"42.8117\" x2=\"68.2117\" y2=\"42.8371\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.8117\" x2=\"69.4309\" y2=\"42.8371\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"42.8117\" x2=\"69.9643\" y2=\"42.8371\" layer=\"200\"/>\n<rectangle x1=\"70.4469\" y1=\"42.8117\" x2=\"70.7263\" y2=\"42.8371\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"42.8371\" x2=\"67.5767\" y2=\"42.8625\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"42.8371\" x2=\"68.2117\" y2=\"42.8625\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.8371\" x2=\"68.7705\" y2=\"42.8625\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"42.8371\" x2=\"69.4563\" y2=\"42.8625\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"42.8371\" x2=\"69.9643\" y2=\"42.8625\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"42.8371\" x2=\"70.7263\" y2=\"42.8625\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"42.8625\" x2=\"67.5259\" y2=\"42.8879\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"42.8625\" x2=\"68.2117\" y2=\"42.8879\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.8625\" x2=\"68.7705\" y2=\"42.8879\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"42.8625\" x2=\"69.4563\" y2=\"42.8879\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"42.8625\" x2=\"69.9897\" y2=\"42.8879\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"42.8625\" x2=\"70.7009\" y2=\"42.8879\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"42.8879\" x2=\"67.4751\" y2=\"42.9133\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"42.8879\" x2=\"68.2371\" y2=\"42.9133\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.8879\" x2=\"68.7705\" y2=\"42.9133\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"42.8879\" x2=\"69.4563\" y2=\"42.9133\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"42.8879\" x2=\"70.7009\" y2=\"42.9133\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"42.9133\" x2=\"67.4497\" y2=\"42.9387\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"42.9133\" x2=\"68.2371\" y2=\"42.9387\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.9133\" x2=\"68.7705\" y2=\"42.9387\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"42.9133\" x2=\"69.4817\" y2=\"42.9387\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"42.9133\" x2=\"70.7009\" y2=\"42.9387\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"42.9387\" x2=\"67.4243\" y2=\"42.9641\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"42.9387\" x2=\"68.2371\" y2=\"42.9641\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.9387\" x2=\"68.7705\" y2=\"42.9641\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"42.9387\" x2=\"69.4817\" y2=\"42.9641\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"42.9387\" x2=\"70.6755\" y2=\"42.9641\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"42.9641\" x2=\"68.2371\" y2=\"42.9895\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.9641\" x2=\"68.7705\" y2=\"42.9895\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"42.9641\" x2=\"69.5071\" y2=\"42.9895\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"42.9641\" x2=\"70.6755\" y2=\"42.9895\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"42.9895\" x2=\"68.2371\" y2=\"43.0149\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"42.9895\" x2=\"68.7705\" y2=\"43.0149\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"42.9895\" x2=\"69.5071\" y2=\"43.0149\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"42.9895\" x2=\"70.6755\" y2=\"43.0149\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"43.0149\" x2=\"68.2371\" y2=\"43.0403\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.0149\" x2=\"68.7705\" y2=\"43.0403\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"43.0149\" x2=\"69.5071\" y2=\"43.0403\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"43.0149\" x2=\"70.6501\" y2=\"43.0403\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"43.0403\" x2=\"68.2371\" y2=\"43.0657\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.0403\" x2=\"68.7705\" y2=\"43.0657\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.0403\" x2=\"69.5071\" y2=\"43.0657\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"43.0403\" x2=\"70.6501\" y2=\"43.0657\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"43.0657\" x2=\"68.2371\" y2=\"43.0911\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.0657\" x2=\"68.7705\" y2=\"43.0911\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.0657\" x2=\"69.5071\" y2=\"43.0911\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"43.0657\" x2=\"70.6501\" y2=\"43.0911\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"43.0911\" x2=\"68.2117\" y2=\"43.1165\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.0911\" x2=\"68.7705\" y2=\"43.1165\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.0911\" x2=\"69.5325\" y2=\"43.1165\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"43.0911\" x2=\"70.6247\" y2=\"43.1165\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"43.1165\" x2=\"68.2117\" y2=\"43.1419\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.1165\" x2=\"68.7705\" y2=\"43.1419\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.1165\" x2=\"69.5325\" y2=\"43.1419\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"43.1165\" x2=\"70.6247\" y2=\"43.1419\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"43.1419\" x2=\"68.2117\" y2=\"43.1673\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.1419\" x2=\"68.7705\" y2=\"43.1673\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.1419\" x2=\"69.5325\" y2=\"43.1673\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"43.1419\" x2=\"70.0659\" y2=\"43.1673\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"43.1419\" x2=\"70.6247\" y2=\"43.1673\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"43.1673\" x2=\"68.1863\" y2=\"43.1927\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.1673\" x2=\"68.7705\" y2=\"43.1927\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.1673\" x2=\"69.5325\" y2=\"43.1927\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"43.1673\" x2=\"70.0659\" y2=\"43.1927\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"43.1673\" x2=\"70.6247\" y2=\"43.1927\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"43.1927\" x2=\"68.1863\" y2=\"43.2181\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.1927\" x2=\"68.7705\" y2=\"43.2181\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.1927\" x2=\"69.5325\" y2=\"43.2181\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"43.1927\" x2=\"70.0659\" y2=\"43.2181\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"43.1927\" x2=\"70.5993\" y2=\"43.2181\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"43.2181\" x2=\"68.1609\" y2=\"43.2435\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.2181\" x2=\"68.7705\" y2=\"43.2435\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.2181\" x2=\"69.5325\" y2=\"43.2435\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"43.2181\" x2=\"70.0659\" y2=\"43.2435\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"43.2181\" x2=\"70.5993\" y2=\"43.2435\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"43.2435\" x2=\"68.1355\" y2=\"43.2689\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.2435\" x2=\"68.7705\" y2=\"43.2689\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.2435\" x2=\"69.5325\" y2=\"43.2689\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"43.2435\" x2=\"70.0913\" y2=\"43.2689\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"43.2435\" x2=\"70.5993\" y2=\"43.2689\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"43.2689\" x2=\"68.1101\" y2=\"43.2943\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.2689\" x2=\"68.7705\" y2=\"43.2943\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.2689\" x2=\"69.5325\" y2=\"43.2943\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"43.2689\" x2=\"70.0913\" y2=\"43.2943\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"43.2689\" x2=\"70.5739\" y2=\"43.2943\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"43.2943\" x2=\"68.0593\" y2=\"43.3197\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.2943\" x2=\"68.7705\" y2=\"43.3197\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.2943\" x2=\"69.5325\" y2=\"43.3197\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"43.2943\" x2=\"70.0913\" y2=\"43.3197\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"43.2943\" x2=\"70.5739\" y2=\"43.3197\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"43.3197\" x2=\"68.0085\" y2=\"43.3451\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.3197\" x2=\"68.7705\" y2=\"43.3451\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.3197\" x2=\"69.5325\" y2=\"43.3451\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"43.3197\" x2=\"70.1167\" y2=\"43.3451\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"43.3197\" x2=\"70.5739\" y2=\"43.3451\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"43.3451\" x2=\"67.9577\" y2=\"43.3705\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.3451\" x2=\"68.7705\" y2=\"43.3705\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.3451\" x2=\"69.5325\" y2=\"43.3705\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"43.3451\" x2=\"70.1167\" y2=\"43.3705\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"43.3451\" x2=\"70.5485\" y2=\"43.3705\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"43.3705\" x2=\"67.8307\" y2=\"43.3959\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.3705\" x2=\"68.7705\" y2=\"43.3959\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.3705\" x2=\"69.5325\" y2=\"43.3959\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"43.3705\" x2=\"70.1167\" y2=\"43.3959\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"43.3705\" x2=\"70.5485\" y2=\"43.3959\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"43.3959\" x2=\"67.6783\" y2=\"43.4213\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.3959\" x2=\"68.7705\" y2=\"43.4213\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.3959\" x2=\"69.5071\" y2=\"43.4213\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"43.3959\" x2=\"70.1167\" y2=\"43.4213\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"43.3959\" x2=\"70.5485\" y2=\"43.4213\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"43.4213\" x2=\"67.6021\" y2=\"43.4467\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.4213\" x2=\"68.7705\" y2=\"43.4467\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"43.4213\" x2=\"69.5071\" y2=\"43.4467\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"43.4213\" x2=\"70.1421\" y2=\"43.4467\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"43.4213\" x2=\"70.5231\" y2=\"43.4467\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"43.4467\" x2=\"67.5767\" y2=\"43.4721\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.4467\" x2=\"68.7705\" y2=\"43.4721\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"43.4467\" x2=\"69.5071\" y2=\"43.4721\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"43.4467\" x2=\"70.1421\" y2=\"43.4721\" layer=\"200\"/>\n<rectangle x1=\"70.2691\" y1=\"43.4467\" x2=\"70.5231\" y2=\"43.4721\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"43.4721\" x2=\"67.5513\" y2=\"43.4975\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.4721\" x2=\"68.7705\" y2=\"43.4975\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"43.4721\" x2=\"69.5071\" y2=\"43.4975\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"43.4721\" x2=\"70.1421\" y2=\"43.4975\" layer=\"200\"/>\n<rectangle x1=\"70.2437\" y1=\"43.4721\" x2=\"70.5231\" y2=\"43.4975\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"43.4975\" x2=\"67.5513\" y2=\"43.5229\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.4975\" x2=\"68.7705\" y2=\"43.5229\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"43.4975\" x2=\"69.5071\" y2=\"43.5229\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"43.4975\" x2=\"70.1675\" y2=\"43.5229\" layer=\"200\"/>\n<rectangle x1=\"70.2437\" y1=\"43.4975\" x2=\"70.4977\" y2=\"43.5229\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"43.5229\" x2=\"67.5513\" y2=\"43.5483\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.5229\" x2=\"68.7705\" y2=\"43.5483\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"43.5229\" x2=\"69.4817\" y2=\"43.5483\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"43.5229\" x2=\"70.1675\" y2=\"43.5483\" layer=\"200\"/>\n<rectangle x1=\"70.2437\" y1=\"43.5229\" x2=\"70.4977\" y2=\"43.5483\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"43.5483\" x2=\"67.5513\" y2=\"43.5737\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"43.5483\" x2=\"68.0339\" y2=\"43.5737\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.5483\" x2=\"68.7705\" y2=\"43.5737\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"43.5483\" x2=\"69.4817\" y2=\"43.5737\" layer=\"200\"/>\n<rectangle x1=\"69.9135\" y1=\"43.5483\" x2=\"70.1675\" y2=\"43.5737\" layer=\"200\"/>\n<rectangle x1=\"70.2183\" y1=\"43.5483\" x2=\"70.4977\" y2=\"43.5737\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"43.5737\" x2=\"67.5513\" y2=\"43.5991\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"43.5737\" x2=\"68.0593\" y2=\"43.5991\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.5737\" x2=\"68.7705\" y2=\"43.5991\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"43.5737\" x2=\"69.4563\" y2=\"43.5991\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"43.5737\" x2=\"70.1675\" y2=\"43.5991\" layer=\"200\"/>\n<rectangle x1=\"70.2183\" y1=\"43.5737\" x2=\"70.4723\" y2=\"43.5991\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"43.5991\" x2=\"67.5767\" y2=\"43.6245\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"43.5991\" x2=\"68.0847\" y2=\"43.6245\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.5991\" x2=\"68.7705\" y2=\"43.6245\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"43.5991\" x2=\"69.4563\" y2=\"43.6245\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"43.5991\" x2=\"70.1929\" y2=\"43.6245\" layer=\"200\"/>\n<rectangle x1=\"70.2183\" y1=\"43.5991\" x2=\"70.4723\" y2=\"43.6245\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"43.6245\" x2=\"67.6021\" y2=\"43.6499\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"43.6245\" x2=\"68.1101\" y2=\"43.6499\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.6245\" x2=\"68.7705\" y2=\"43.6499\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"43.6245\" x2=\"69.4563\" y2=\"43.6499\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"43.6245\" x2=\"70.4723\" y2=\"43.6499\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"43.6499\" x2=\"67.6529\" y2=\"43.6753\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"43.6499\" x2=\"68.1355\" y2=\"43.6753\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.6499\" x2=\"69.4309\" y2=\"43.6753\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"43.6499\" x2=\"70.4469\" y2=\"43.6753\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"43.6753\" x2=\"68.1609\" y2=\"43.7007\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.6753\" x2=\"69.4055\" y2=\"43.7007\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"43.6753\" x2=\"70.4469\" y2=\"43.7007\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"43.7007\" x2=\"68.1863\" y2=\"43.7261\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.7007\" x2=\"69.4055\" y2=\"43.7261\" layer=\"200\"/>\n<rectangle x1=\"69.9643\" y1=\"43.7007\" x2=\"70.4469\" y2=\"43.7261\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"43.7261\" x2=\"68.2117\" y2=\"43.7515\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.7261\" x2=\"69.3801\" y2=\"43.7515\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"43.7261\" x2=\"70.4469\" y2=\"43.7515\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"43.7515\" x2=\"68.1863\" y2=\"43.7769\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.7515\" x2=\"69.3547\" y2=\"43.7769\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"43.7515\" x2=\"70.4215\" y2=\"43.7769\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"43.7769\" x2=\"68.1609\" y2=\"43.8023\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.7769\" x2=\"69.3293\" y2=\"43.8023\" layer=\"200\"/>\n<rectangle x1=\"69.9897\" y1=\"43.7769\" x2=\"70.4215\" y2=\"43.8023\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"43.8023\" x2=\"68.1355\" y2=\"43.8277\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.8023\" x2=\"69.2785\" y2=\"43.8277\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"43.8023\" x2=\"70.4215\" y2=\"43.8277\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"43.8277\" x2=\"68.1101\" y2=\"43.8531\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.8277\" x2=\"69.2531\" y2=\"43.8531\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"43.8277\" x2=\"70.3961\" y2=\"43.8531\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"43.8531\" x2=\"68.0593\" y2=\"43.8785\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.8531\" x2=\"69.1769\" y2=\"43.8785\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"43.8531\" x2=\"70.3961\" y2=\"43.8785\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"43.8785\" x2=\"67.9831\" y2=\"43.9039\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"43.8785\" x2=\"69.1007\" y2=\"43.9039\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"43.8785\" x2=\"70.3961\" y2=\"43.9039\" layer=\"200\"/>\n<rectangle x1=\"67.6275\" y1=\"43.9039\" x2=\"67.9069\" y2=\"43.9293\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"44.4373\" x2=\"72.0979\" y2=\"44.4627\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"44.4627\" x2=\"72.0979\" y2=\"44.4881\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"44.4881\" x2=\"72.0979\" y2=\"44.5135\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"44.5135\" x2=\"72.0979\" y2=\"44.5389\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"44.5389\" x2=\"72.0979\" y2=\"44.5643\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"45.0469\" x2=\"69.0753\" y2=\"45.0723\" layer=\"200\"/>\n<rectangle x1=\"70.0151\" y1=\"45.0469\" x2=\"70.2691\" y2=\"45.0723\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"45.0723\" x2=\"67.8815\" y2=\"45.0977\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"45.0723\" x2=\"69.1769\" y2=\"45.0977\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"45.0723\" x2=\"70.3707\" y2=\"45.0977\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"45.0977\" x2=\"67.8815\" y2=\"45.1231\" layer=\"200\"/>\n<rectangle x1=\"68.6689\" y1=\"45.0977\" x2=\"69.2277\" y2=\"45.1231\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"45.0977\" x2=\"70.4215\" y2=\"45.1231\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"45.1231\" x2=\"67.8815\" y2=\"45.1485\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"45.1231\" x2=\"69.2785\" y2=\"45.1485\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"45.1231\" x2=\"70.4723\" y2=\"45.1485\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"45.1485\" x2=\"67.9069\" y2=\"45.1739\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"45.1485\" x2=\"69.3039\" y2=\"45.1739\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"45.1485\" x2=\"70.4977\" y2=\"45.1739\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"45.1739\" x2=\"67.9069\" y2=\"45.1993\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"45.1739\" x2=\"69.3293\" y2=\"45.1993\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"45.1739\" x2=\"70.5231\" y2=\"45.1993\" layer=\"200\"/>\n<rectangle x1=\"67.5259\" y1=\"45.1993\" x2=\"67.9069\" y2=\"45.2247\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"45.1993\" x2=\"69.3547\" y2=\"45.2247\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"45.1993\" x2=\"70.5485\" y2=\"45.2247\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"45.2247\" x2=\"67.9323\" y2=\"45.2501\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"45.2247\" x2=\"69.3801\" y2=\"45.2501\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"45.2247\" x2=\"70.5739\" y2=\"45.2501\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"45.2501\" x2=\"67.9323\" y2=\"45.2755\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"45.2501\" x2=\"69.3801\" y2=\"45.2755\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"45.2501\" x2=\"70.5739\" y2=\"45.2755\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"45.2755\" x2=\"67.9323\" y2=\"45.3009\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"45.2755\" x2=\"69.4055\" y2=\"45.3009\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"45.2755\" x2=\"70.5993\" y2=\"45.3009\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"45.3009\" x2=\"67.9577\" y2=\"45.3263\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"45.3009\" x2=\"68.8721\" y2=\"45.3263\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"45.3009\" x2=\"69.4309\" y2=\"45.3263\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"45.3009\" x2=\"70.0659\" y2=\"45.3263\" layer=\"200\"/>\n<rectangle x1=\"70.2437\" y1=\"45.3009\" x2=\"70.6247\" y2=\"45.3263\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"45.3263\" x2=\"67.9577\" y2=\"45.3517\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"45.3263\" x2=\"68.8213\" y2=\"45.3517\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"45.3263\" x2=\"69.4309\" y2=\"45.3517\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"45.3263\" x2=\"70.0151\" y2=\"45.3517\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"45.3263\" x2=\"70.6247\" y2=\"45.3517\" layer=\"200\"/>\n<rectangle x1=\"67.4751\" y1=\"45.3517\" x2=\"67.7037\" y2=\"45.3771\" layer=\"200\"/>\n<rectangle x1=\"67.7291\" y1=\"45.3517\" x2=\"67.9577\" y2=\"45.3771\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"45.3517\" x2=\"68.7959\" y2=\"45.3771\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"45.3517\" x2=\"69.4309\" y2=\"45.3771\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"45.3517\" x2=\"69.9897\" y2=\"45.3771\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"45.3517\" x2=\"70.6247\" y2=\"45.3771\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"45.3771\" x2=\"67.7037\" y2=\"45.4025\" layer=\"200\"/>\n<rectangle x1=\"67.7291\" y1=\"45.3771\" x2=\"67.9831\" y2=\"45.4025\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"45.3771\" x2=\"68.7705\" y2=\"45.4025\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"45.3771\" x2=\"69.4055\" y2=\"45.4025\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"45.3771\" x2=\"69.9643\" y2=\"45.4025\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"45.3771\" x2=\"70.5993\" y2=\"45.4025\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"45.4025\" x2=\"67.7037\" y2=\"45.4279\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"45.4025\" x2=\"67.9831\" y2=\"45.4279\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"45.4025\" x2=\"68.7451\" y2=\"45.4279\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"45.4025\" x2=\"69.3547\" y2=\"45.4279\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"45.4025\" x2=\"69.9389\" y2=\"45.4279\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"45.4025\" x2=\"70.5485\" y2=\"45.4279\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"45.4279\" x2=\"67.7037\" y2=\"45.4533\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"45.4279\" x2=\"67.9831\" y2=\"45.4533\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.4279\" x2=\"68.7451\" y2=\"45.4533\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"45.4279\" x2=\"69.3293\" y2=\"45.4533\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.4279\" x2=\"69.9389\" y2=\"45.4533\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"45.4279\" x2=\"70.5231\" y2=\"45.4533\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"45.4533\" x2=\"67.6783\" y2=\"45.4787\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"45.4533\" x2=\"67.9831\" y2=\"45.4787\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.4533\" x2=\"68.7197\" y2=\"45.4787\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"45.4533\" x2=\"69.2785\" y2=\"45.4787\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.4533\" x2=\"69.9135\" y2=\"45.4787\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"45.4533\" x2=\"70.4723\" y2=\"45.4787\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"45.4787\" x2=\"67.6783\" y2=\"45.5041\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"45.4787\" x2=\"68.0085\" y2=\"45.5041\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.4787\" x2=\"68.7197\" y2=\"45.5041\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.4787\" x2=\"69.9135\" y2=\"45.5041\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"45.5041\" x2=\"67.6783\" y2=\"45.5295\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"45.5041\" x2=\"68.0085\" y2=\"45.5295\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.5041\" x2=\"68.6943\" y2=\"45.5295\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.5041\" x2=\"69.8881\" y2=\"45.5295\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"45.5295\" x2=\"67.6783\" y2=\"45.5549\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"45.5295\" x2=\"68.0085\" y2=\"45.5549\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.5295\" x2=\"68.6943\" y2=\"45.5549\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.5295\" x2=\"69.8881\" y2=\"45.5549\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"45.5549\" x2=\"67.6783\" y2=\"45.5803\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"45.5549\" x2=\"68.0339\" y2=\"45.5803\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.5549\" x2=\"68.6943\" y2=\"45.5803\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.5549\" x2=\"69.8881\" y2=\"45.5803\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"45.5803\" x2=\"67.6529\" y2=\"45.6057\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"45.5803\" x2=\"68.0339\" y2=\"45.6057\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.5803\" x2=\"68.6943\" y2=\"45.6057\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.5803\" x2=\"69.8881\" y2=\"45.6057\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"45.6057\" x2=\"67.6529\" y2=\"45.6311\" layer=\"200\"/>\n<rectangle x1=\"67.7799\" y1=\"45.6057\" x2=\"68.0339\" y2=\"45.6311\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.6057\" x2=\"68.6943\" y2=\"45.6311\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.6057\" x2=\"69.8881\" y2=\"45.6311\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"45.6311\" x2=\"67.6529\" y2=\"45.6565\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"45.6311\" x2=\"68.0593\" y2=\"45.6565\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.6311\" x2=\"68.6943\" y2=\"45.6565\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.6311\" x2=\"69.8881\" y2=\"45.6565\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"45.6565\" x2=\"67.6529\" y2=\"45.6819\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"45.6565\" x2=\"68.0593\" y2=\"45.6819\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.6565\" x2=\"68.6943\" y2=\"45.6819\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.6565\" x2=\"69.8881\" y2=\"45.6819\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"45.6819\" x2=\"67.6275\" y2=\"45.7073\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"45.6819\" x2=\"68.0593\" y2=\"45.7073\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.6819\" x2=\"68.6943\" y2=\"45.7073\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.6819\" x2=\"69.8881\" y2=\"45.7073\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"45.7073\" x2=\"67.6275\" y2=\"45.7327\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"45.7073\" x2=\"68.0847\" y2=\"45.7327\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.7073\" x2=\"68.6943\" y2=\"45.7327\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.7073\" x2=\"69.8881\" y2=\"45.7327\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"45.7327\" x2=\"67.6275\" y2=\"45.7581\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"45.7327\" x2=\"68.0847\" y2=\"45.7581\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.7327\" x2=\"68.6943\" y2=\"45.7581\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.7327\" x2=\"69.8881\" y2=\"45.7581\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"45.7581\" x2=\"67.6275\" y2=\"45.7835\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"45.7581\" x2=\"68.0847\" y2=\"45.7835\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.7581\" x2=\"68.6943\" y2=\"45.7835\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.7581\" x2=\"69.8881\" y2=\"45.7835\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"45.7835\" x2=\"67.6021\" y2=\"45.8089\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"45.7835\" x2=\"68.1101\" y2=\"45.8089\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.7835\" x2=\"68.6943\" y2=\"45.8089\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.7835\" x2=\"69.8881\" y2=\"45.8089\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"45.8089\" x2=\"67.6021\" y2=\"45.8343\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"45.8089\" x2=\"68.1101\" y2=\"45.8343\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.8089\" x2=\"68.6943\" y2=\"45.8343\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.8089\" x2=\"69.8881\" y2=\"45.8343\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"45.8343\" x2=\"67.6021\" y2=\"45.8597\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"45.8343\" x2=\"68.1101\" y2=\"45.8597\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.8343\" x2=\"68.6943\" y2=\"45.8597\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.8343\" x2=\"69.8881\" y2=\"45.8597\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"45.8597\" x2=\"67.5767\" y2=\"45.8851\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"45.8597\" x2=\"68.1355\" y2=\"45.8851\" layer=\"200\"/>\n<rectangle x1=\"68.3895\" y1=\"45.8597\" x2=\"68.6943\" y2=\"45.8851\" layer=\"200\"/>\n<rectangle x1=\"69.5833\" y1=\"45.8597\" x2=\"69.8881\" y2=\"45.8851\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"45.8851\" x2=\"67.5767\" y2=\"45.9105\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"45.8851\" x2=\"68.1355\" y2=\"45.9105\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.8851\" x2=\"68.6943\" y2=\"45.9105\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.8851\" x2=\"69.8881\" y2=\"45.9105\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"45.9105\" x2=\"67.5767\" y2=\"45.9359\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"45.9105\" x2=\"68.1355\" y2=\"45.9359\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.9105\" x2=\"68.6943\" y2=\"45.9359\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.9105\" x2=\"69.8881\" y2=\"45.9359\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"45.9359\" x2=\"67.5513\" y2=\"45.9613\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"45.9359\" x2=\"68.1355\" y2=\"45.9613\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.9359\" x2=\"68.7197\" y2=\"45.9613\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.9359\" x2=\"69.9135\" y2=\"45.9613\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"45.9613\" x2=\"67.5513\" y2=\"45.9867\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"45.9613\" x2=\"68.1609\" y2=\"45.9867\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.9613\" x2=\"68.7197\" y2=\"45.9867\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.9613\" x2=\"69.9135\" y2=\"45.9867\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"45.9867\" x2=\"67.5513\" y2=\"46.0121\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"45.9867\" x2=\"68.1609\" y2=\"46.0121\" layer=\"200\"/>\n<rectangle x1=\"68.4149\" y1=\"45.9867\" x2=\"68.7197\" y2=\"46.0121\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"45.9867\" x2=\"69.2531\" y2=\"46.0121\" layer=\"200\"/>\n<rectangle x1=\"69.6087\" y1=\"45.9867\" x2=\"69.9135\" y2=\"46.0121\" layer=\"200\"/>\n<rectangle x1=\"70.3961\" y1=\"45.9867\" x2=\"70.4469\" y2=\"46.0121\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"46.0121\" x2=\"67.5513\" y2=\"46.0375\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"46.0121\" x2=\"68.1609\" y2=\"46.0375\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"46.0121\" x2=\"68.7451\" y2=\"46.0375\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"46.0121\" x2=\"69.3039\" y2=\"46.0375\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"46.0121\" x2=\"69.9389\" y2=\"46.0375\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"46.0121\" x2=\"70.4977\" y2=\"46.0375\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"46.0375\" x2=\"67.5259\" y2=\"46.0629\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"46.0375\" x2=\"68.1863\" y2=\"46.0629\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"46.0375\" x2=\"68.7451\" y2=\"46.0629\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"46.0375\" x2=\"69.3293\" y2=\"46.0629\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"46.0375\" x2=\"69.9389\" y2=\"46.0629\" layer=\"200\"/>\n<rectangle x1=\"70.3707\" y1=\"46.0375\" x2=\"70.5231\" y2=\"46.0629\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"46.0629\" x2=\"67.5259\" y2=\"46.0883\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"46.0629\" x2=\"68.1863\" y2=\"46.0883\" layer=\"200\"/>\n<rectangle x1=\"68.4403\" y1=\"46.0629\" x2=\"68.7705\" y2=\"46.0883\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"46.0629\" x2=\"69.3801\" y2=\"46.0883\" layer=\"200\"/>\n<rectangle x1=\"69.6341\" y1=\"46.0629\" x2=\"69.9643\" y2=\"46.0883\" layer=\"200\"/>\n<rectangle x1=\"70.3453\" y1=\"46.0629\" x2=\"70.5739\" y2=\"46.0883\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"46.0883\" x2=\"67.5259\" y2=\"46.1137\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"46.0883\" x2=\"68.1863\" y2=\"46.1137\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"46.0883\" x2=\"68.7959\" y2=\"46.1137\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"46.0883\" x2=\"69.4309\" y2=\"46.1137\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"46.0883\" x2=\"69.9897\" y2=\"46.1137\" layer=\"200\"/>\n<rectangle x1=\"70.3199\" y1=\"46.0883\" x2=\"70.6247\" y2=\"46.1137\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"46.1137\" x2=\"67.5005\" y2=\"46.1391\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"46.1137\" x2=\"68.2117\" y2=\"46.1391\" layer=\"200\"/>\n<rectangle x1=\"68.4657\" y1=\"46.1137\" x2=\"68.8213\" y2=\"46.1391\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"46.1137\" x2=\"69.4309\" y2=\"46.1391\" layer=\"200\"/>\n<rectangle x1=\"69.6595\" y1=\"46.1137\" x2=\"70.0151\" y2=\"46.1391\" layer=\"200\"/>\n<rectangle x1=\"70.2945\" y1=\"46.1137\" x2=\"70.6247\" y2=\"46.1391\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"46.1391\" x2=\"67.5005\" y2=\"46.1645\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"46.1391\" x2=\"68.2117\" y2=\"46.1645\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"46.1391\" x2=\"68.8721\" y2=\"46.1645\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"46.1391\" x2=\"69.4309\" y2=\"46.1645\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"46.1391\" x2=\"70.0659\" y2=\"46.1645\" layer=\"200\"/>\n<rectangle x1=\"70.2437\" y1=\"46.1391\" x2=\"70.6247\" y2=\"46.1645\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"46.1645\" x2=\"67.5005\" y2=\"46.1899\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"46.1645\" x2=\"68.2117\" y2=\"46.1899\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"46.1645\" x2=\"69.4055\" y2=\"46.1899\" layer=\"200\"/>\n<rectangle x1=\"69.6849\" y1=\"46.1645\" x2=\"70.5993\" y2=\"46.1899\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"46.1899\" x2=\"67.4751\" y2=\"46.2153\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"46.1899\" x2=\"68.2371\" y2=\"46.2153\" layer=\"200\"/>\n<rectangle x1=\"68.5165\" y1=\"46.1899\" x2=\"69.4055\" y2=\"46.2153\" layer=\"200\"/>\n<rectangle x1=\"69.7103\" y1=\"46.1899\" x2=\"70.5993\" y2=\"46.2153\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"46.2153\" x2=\"67.4751\" y2=\"46.2407\" layer=\"200\"/>\n<rectangle x1=\"67.9577\" y1=\"46.2153\" x2=\"68.2371\" y2=\"46.2407\" layer=\"200\"/>\n<rectangle x1=\"68.5419\" y1=\"46.2153\" x2=\"69.3801\" y2=\"46.2407\" layer=\"200\"/>\n<rectangle x1=\"69.7357\" y1=\"46.2153\" x2=\"70.5739\" y2=\"46.2407\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"46.2407\" x2=\"67.4751\" y2=\"46.2661\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"46.2407\" x2=\"68.2371\" y2=\"46.2661\" layer=\"200\"/>\n<rectangle x1=\"68.5673\" y1=\"46.2407\" x2=\"69.3547\" y2=\"46.2661\" layer=\"200\"/>\n<rectangle x1=\"69.7611\" y1=\"46.2407\" x2=\"70.5485\" y2=\"46.2661\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"46.2661\" x2=\"67.4497\" y2=\"46.2915\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"46.2661\" x2=\"68.2625\" y2=\"46.2915\" layer=\"200\"/>\n<rectangle x1=\"68.5927\" y1=\"46.2661\" x2=\"69.3293\" y2=\"46.2915\" layer=\"200\"/>\n<rectangle x1=\"69.7865\" y1=\"46.2661\" x2=\"70.5231\" y2=\"46.2915\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"46.2915\" x2=\"67.4497\" y2=\"46.3169\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"46.2915\" x2=\"68.2625\" y2=\"46.3169\" layer=\"200\"/>\n<rectangle x1=\"68.6181\" y1=\"46.2915\" x2=\"69.3039\" y2=\"46.3169\" layer=\"200\"/>\n<rectangle x1=\"69.8119\" y1=\"46.2915\" x2=\"70.4977\" y2=\"46.3169\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"46.3169\" x2=\"67.4497\" y2=\"46.3423\" layer=\"200\"/>\n<rectangle x1=\"67.9831\" y1=\"46.3169\" x2=\"68.2625\" y2=\"46.3423\" layer=\"200\"/>\n<rectangle x1=\"68.6435\" y1=\"46.3169\" x2=\"69.2785\" y2=\"46.3423\" layer=\"200\"/>\n<rectangle x1=\"69.8373\" y1=\"46.3169\" x2=\"70.4723\" y2=\"46.3423\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"46.3423\" x2=\"67.4497\" y2=\"46.3677\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"46.3423\" x2=\"68.2879\" y2=\"46.3677\" layer=\"200\"/>\n<rectangle x1=\"68.6943\" y1=\"46.3423\" x2=\"69.2277\" y2=\"46.3677\" layer=\"200\"/>\n<rectangle x1=\"69.8881\" y1=\"46.3423\" x2=\"70.4215\" y2=\"46.3677\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"46.3677\" x2=\"67.4243\" y2=\"46.3931\" layer=\"200\"/>\n<rectangle x1=\"68.0085\" y1=\"46.3677\" x2=\"68.2879\" y2=\"46.3931\" layer=\"200\"/>\n<rectangle x1=\"68.7451\" y1=\"46.3677\" x2=\"69.1769\" y2=\"46.3931\" layer=\"200\"/>\n<rectangle x1=\"69.9389\" y1=\"46.3677\" x2=\"70.3707\" y2=\"46.3931\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"46.3931\" x2=\"69.1007\" y2=\"46.4185\" layer=\"200\"/>\n<rectangle x1=\"70.0405\" y1=\"46.3931\" x2=\"70.2945\" y2=\"46.4185\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"46.9773\" x2=\"72.0979\" y2=\"47.0027\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"47.0027\" x2=\"72.0979\" y2=\"47.0281\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"47.0281\" x2=\"72.0979\" y2=\"47.0535\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"47.0535\" x2=\"72.0979\" y2=\"47.0789\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"47.0789\" x2=\"72.0979\" y2=\"47.1043\" layer=\"200\"/>\n<rectangle x1=\"67.5005\" y1=\"47.6377\" x2=\"67.7291\" y2=\"47.6631\" layer=\"200\"/>\n<rectangle x1=\"67.4243\" y1=\"47.6631\" x2=\"67.7799\" y2=\"47.6885\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"47.6631\" x2=\"68.1863\" y2=\"47.6885\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.6631\" x2=\"68.7705\" y2=\"47.6885\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"47.6631\" x2=\"69.5579\" y2=\"47.6885\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.6631\" x2=\"70.4723\" y2=\"47.6885\" layer=\"200\"/>\n<rectangle x1=\"67.3735\" y1=\"47.6885\" x2=\"67.8307\" y2=\"47.7139\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"47.6885\" x2=\"68.1863\" y2=\"47.7139\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.6885\" x2=\"68.7705\" y2=\"47.7139\" layer=\"200\"/>\n<rectangle x1=\"69.2277\" y1=\"47.6885\" x2=\"69.5579\" y2=\"47.7139\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.6885\" x2=\"70.5485\" y2=\"47.7139\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"47.7139\" x2=\"67.8561\" y2=\"47.7393\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"47.7139\" x2=\"68.1863\" y2=\"47.7393\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.7139\" x2=\"68.7705\" y2=\"47.7393\" layer=\"200\"/>\n<rectangle x1=\"69.2023\" y1=\"47.7139\" x2=\"69.5579\" y2=\"47.7393\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.7139\" x2=\"70.6247\" y2=\"47.7393\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"47.7393\" x2=\"67.8815\" y2=\"47.7647\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"47.7393\" x2=\"68.1863\" y2=\"47.7647\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.7393\" x2=\"68.7705\" y2=\"47.7647\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"47.7393\" x2=\"69.5579\" y2=\"47.7647\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.7393\" x2=\"70.6501\" y2=\"47.7647\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"47.7647\" x2=\"67.9069\" y2=\"47.7901\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"47.7647\" x2=\"68.1863\" y2=\"47.7901\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.7647\" x2=\"68.7705\" y2=\"47.7901\" layer=\"200\"/>\n<rectangle x1=\"69.1769\" y1=\"47.7647\" x2=\"69.5579\" y2=\"47.7901\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.7647\" x2=\"70.7009\" y2=\"47.7901\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"47.7901\" x2=\"67.9069\" y2=\"47.8155\" layer=\"200\"/>\n<rectangle x1=\"67.9323\" y1=\"47.7901\" x2=\"68.1863\" y2=\"47.8155\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.7901\" x2=\"68.7705\" y2=\"47.8155\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"47.7901\" x2=\"69.5579\" y2=\"47.8155\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.7901\" x2=\"70.7263\" y2=\"47.8155\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"47.8155\" x2=\"68.1863\" y2=\"47.8409\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.8155\" x2=\"68.7705\" y2=\"47.8409\" layer=\"200\"/>\n<rectangle x1=\"69.1515\" y1=\"47.8155\" x2=\"69.5579\" y2=\"47.8409\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.8155\" x2=\"70.7517\" y2=\"47.8409\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"47.8409\" x2=\"68.1863\" y2=\"47.8663\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.8409\" x2=\"68.7705\" y2=\"47.8663\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"47.8409\" x2=\"69.5579\" y2=\"47.8663\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.8409\" x2=\"70.7771\" y2=\"47.8663\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"47.8663\" x2=\"68.1863\" y2=\"47.8917\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.8663\" x2=\"68.7705\" y2=\"47.8917\" layer=\"200\"/>\n<rectangle x1=\"69.1261\" y1=\"47.8663\" x2=\"69.5579\" y2=\"47.8917\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.8663\" x2=\"70.7771\" y2=\"47.8917\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"47.8917\" x2=\"67.5767\" y2=\"47.9171\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"47.8917\" x2=\"68.1863\" y2=\"47.9171\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.8917\" x2=\"68.7705\" y2=\"47.9171\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"47.8917\" x2=\"69.5579\" y2=\"47.9171\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.8917\" x2=\"70.8025\" y2=\"47.9171\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"47.9171\" x2=\"67.5259\" y2=\"47.9425\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"47.9171\" x2=\"68.1863\" y2=\"47.9425\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.9171\" x2=\"68.7705\" y2=\"47.9425\" layer=\"200\"/>\n<rectangle x1=\"69.1007\" y1=\"47.9171\" x2=\"69.5579\" y2=\"47.9425\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.9171\" x2=\"70.1421\" y2=\"47.9425\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"47.9171\" x2=\"70.8279\" y2=\"47.9425\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"47.9425\" x2=\"67.4751\" y2=\"47.9679\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"47.9425\" x2=\"68.1863\" y2=\"47.9679\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.9425\" x2=\"68.7705\" y2=\"47.9679\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"47.9425\" x2=\"69.5579\" y2=\"47.9679\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.9425\" x2=\"70.1421\" y2=\"47.9679\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"47.9425\" x2=\"70.8279\" y2=\"47.9679\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"47.9679\" x2=\"67.4751\" y2=\"47.9933\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"47.9679\" x2=\"68.1863\" y2=\"47.9933\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.9679\" x2=\"68.7705\" y2=\"47.9933\" layer=\"200\"/>\n<rectangle x1=\"69.0753\" y1=\"47.9679\" x2=\"69.5579\" y2=\"47.9933\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.9679\" x2=\"70.1421\" y2=\"47.9933\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"47.9679\" x2=\"70.8279\" y2=\"47.9933\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"47.9933\" x2=\"67.4497\" y2=\"48.0187\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"47.9933\" x2=\"68.1863\" y2=\"48.0187\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"47.9933\" x2=\"68.7705\" y2=\"48.0187\" layer=\"200\"/>\n<rectangle x1=\"69.0499\" y1=\"47.9933\" x2=\"69.5579\" y2=\"48.0187\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"47.9933\" x2=\"70.1421\" y2=\"48.0187\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"47.9933\" x2=\"70.8533\" y2=\"48.0187\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.0187\" x2=\"67.4243\" y2=\"48.0441\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"48.0187\" x2=\"68.1863\" y2=\"48.0441\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.0187\" x2=\"68.7705\" y2=\"48.0441\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"48.0187\" x2=\"69.5579\" y2=\"48.0441\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.0187\" x2=\"70.1421\" y2=\"48.0441\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"48.0187\" x2=\"70.8533\" y2=\"48.0441\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.0441\" x2=\"67.4243\" y2=\"48.0695\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"48.0441\" x2=\"68.1863\" y2=\"48.0695\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.0441\" x2=\"68.7705\" y2=\"48.0695\" layer=\"200\"/>\n<rectangle x1=\"69.0245\" y1=\"48.0441\" x2=\"69.5579\" y2=\"48.0695\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.0441\" x2=\"70.1421\" y2=\"48.0695\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"48.0441\" x2=\"70.8787\" y2=\"48.0695\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.0695\" x2=\"67.4243\" y2=\"48.0949\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"48.0695\" x2=\"68.1863\" y2=\"48.0949\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.0695\" x2=\"68.7705\" y2=\"48.0949\" layer=\"200\"/>\n<rectangle x1=\"68.9991\" y1=\"48.0695\" x2=\"69.5579\" y2=\"48.0949\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.0695\" x2=\"70.1421\" y2=\"48.0949\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"48.0695\" x2=\"70.8787\" y2=\"48.0949\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.0949\" x2=\"67.3989\" y2=\"48.1203\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"48.0949\" x2=\"68.1863\" y2=\"48.1203\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.0949\" x2=\"68.7705\" y2=\"48.1203\" layer=\"200\"/>\n<rectangle x1=\"68.9991\" y1=\"48.0949\" x2=\"69.5579\" y2=\"48.1203\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.0949\" x2=\"70.1421\" y2=\"48.1203\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"48.0949\" x2=\"70.8787\" y2=\"48.1203\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.1203\" x2=\"67.3989\" y2=\"48.1457\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"48.1203\" x2=\"68.1863\" y2=\"48.1457\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.1203\" x2=\"68.7705\" y2=\"48.1457\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"48.1203\" x2=\"69.2531\" y2=\"48.1457\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.1203\" x2=\"69.5579\" y2=\"48.1457\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.1203\" x2=\"70.1421\" y2=\"48.1457\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.1203\" x2=\"70.8787\" y2=\"48.1457\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.1457\" x2=\"67.3989\" y2=\"48.1711\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.1457\" x2=\"68.1863\" y2=\"48.1711\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.1457\" x2=\"68.7705\" y2=\"48.1711\" layer=\"200\"/>\n<rectangle x1=\"68.9737\" y1=\"48.1457\" x2=\"69.2531\" y2=\"48.1711\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.1457\" x2=\"69.5579\" y2=\"48.1711\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.1457\" x2=\"70.1421\" y2=\"48.1711\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.1457\" x2=\"70.8787\" y2=\"48.1711\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.1711\" x2=\"67.3989\" y2=\"48.1965\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.1711\" x2=\"68.1863\" y2=\"48.1965\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.1711\" x2=\"68.7705\" y2=\"48.1965\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"48.1711\" x2=\"69.2277\" y2=\"48.1965\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.1711\" x2=\"69.5579\" y2=\"48.1965\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.1711\" x2=\"70.1421\" y2=\"48.1965\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.1711\" x2=\"70.9041\" y2=\"48.1965\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.1965\" x2=\"67.3989\" y2=\"48.2219\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.1965\" x2=\"68.1863\" y2=\"48.2219\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.1965\" x2=\"68.7705\" y2=\"48.2219\" layer=\"200\"/>\n<rectangle x1=\"68.9483\" y1=\"48.1965\" x2=\"69.2277\" y2=\"48.2219\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.1965\" x2=\"69.5579\" y2=\"48.2219\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.1965\" x2=\"70.1421\" y2=\"48.2219\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.1965\" x2=\"70.9041\" y2=\"48.2219\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.2219\" x2=\"67.3989\" y2=\"48.2473\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.2219\" x2=\"68.1863\" y2=\"48.2473\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.2219\" x2=\"68.7705\" y2=\"48.2473\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"48.2219\" x2=\"69.2023\" y2=\"48.2473\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.2219\" x2=\"69.5579\" y2=\"48.2473\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.2219\" x2=\"70.1421\" y2=\"48.2473\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.2219\" x2=\"70.9041\" y2=\"48.2473\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.2473\" x2=\"67.3989\" y2=\"48.2727\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.2473\" x2=\"68.1863\" y2=\"48.2727\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.2473\" x2=\"68.7705\" y2=\"48.2727\" layer=\"200\"/>\n<rectangle x1=\"68.9229\" y1=\"48.2473\" x2=\"69.2023\" y2=\"48.2727\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.2473\" x2=\"69.5579\" y2=\"48.2727\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.2473\" x2=\"70.1421\" y2=\"48.2727\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.2473\" x2=\"70.9041\" y2=\"48.2727\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.2727\" x2=\"67.3989\" y2=\"48.2981\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.2727\" x2=\"68.1863\" y2=\"48.2981\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.2727\" x2=\"68.7705\" y2=\"48.2981\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"48.2727\" x2=\"69.1769\" y2=\"48.2981\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.2727\" x2=\"69.5579\" y2=\"48.2981\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.2727\" x2=\"70.1421\" y2=\"48.2981\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.2727\" x2=\"70.9041\" y2=\"48.2981\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.2981\" x2=\"67.3989\" y2=\"48.3235\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.2981\" x2=\"68.1863\" y2=\"48.3235\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.2981\" x2=\"68.7705\" y2=\"48.3235\" layer=\"200\"/>\n<rectangle x1=\"68.8975\" y1=\"48.2981\" x2=\"69.1769\" y2=\"48.3235\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.2981\" x2=\"69.5579\" y2=\"48.3235\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.2981\" x2=\"70.1421\" y2=\"48.3235\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.2981\" x2=\"70.9041\" y2=\"48.3235\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.3235\" x2=\"67.3989\" y2=\"48.3489\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.3235\" x2=\"68.1863\" y2=\"48.3489\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.3235\" x2=\"68.7705\" y2=\"48.3489\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"48.3235\" x2=\"69.1515\" y2=\"48.3489\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.3235\" x2=\"69.5579\" y2=\"48.3489\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.3235\" x2=\"70.1421\" y2=\"48.3489\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.3235\" x2=\"70.9041\" y2=\"48.3489\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.3489\" x2=\"67.3989\" y2=\"48.3743\" layer=\"200\"/>\n<rectangle x1=\"67.6783\" y1=\"48.3489\" x2=\"68.1863\" y2=\"48.3743\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.3489\" x2=\"68.7705\" y2=\"48.3743\" layer=\"200\"/>\n<rectangle x1=\"68.8721\" y1=\"48.3489\" x2=\"69.1515\" y2=\"48.3743\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.3489\" x2=\"69.5579\" y2=\"48.3743\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.3489\" x2=\"70.1421\" y2=\"48.3743\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.3489\" x2=\"70.9041\" y2=\"48.3743\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.3743\" x2=\"67.3989\" y2=\"48.3997\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.3743\" x2=\"68.7705\" y2=\"48.3997\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"48.3743\" x2=\"69.1261\" y2=\"48.3997\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.3743\" x2=\"69.5579\" y2=\"48.3997\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.3743\" x2=\"70.1421\" y2=\"48.3997\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.3743\" x2=\"70.9041\" y2=\"48.3997\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.3997\" x2=\"67.3989\" y2=\"48.4251\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.3997\" x2=\"68.7705\" y2=\"48.4251\" layer=\"200\"/>\n<rectangle x1=\"68.8467\" y1=\"48.3997\" x2=\"69.1261\" y2=\"48.4251\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.3997\" x2=\"69.5579\" y2=\"48.4251\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.3997\" x2=\"70.1421\" y2=\"48.4251\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.3997\" x2=\"70.9041\" y2=\"48.4251\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.4251\" x2=\"67.3989\" y2=\"48.4505\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.4251\" x2=\"68.7705\" y2=\"48.4505\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"48.4251\" x2=\"69.1007\" y2=\"48.4505\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.4251\" x2=\"69.5579\" y2=\"48.4505\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.4251\" x2=\"70.1421\" y2=\"48.4505\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.4251\" x2=\"70.9041\" y2=\"48.4505\" layer=\"200\"/>\n<rectangle x1=\"67.0941\" y1=\"48.4505\" x2=\"67.3989\" y2=\"48.4759\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.4505\" x2=\"68.7705\" y2=\"48.4759\" layer=\"200\"/>\n<rectangle x1=\"68.8213\" y1=\"48.4505\" x2=\"69.1007\" y2=\"48.4759\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.4505\" x2=\"69.5579\" y2=\"48.4759\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.4505\" x2=\"70.1421\" y2=\"48.4759\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.4505\" x2=\"70.9041\" y2=\"48.4759\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.4759\" x2=\"67.3989\" y2=\"48.5013\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.4759\" x2=\"68.7705\" y2=\"48.5013\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"48.4759\" x2=\"69.0753\" y2=\"48.5013\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.4759\" x2=\"69.5579\" y2=\"48.5013\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.4759\" x2=\"70.1421\" y2=\"48.5013\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.4759\" x2=\"70.8787\" y2=\"48.5013\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.5013\" x2=\"67.3989\" y2=\"48.5267\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.5013\" x2=\"68.7705\" y2=\"48.5267\" layer=\"200\"/>\n<rectangle x1=\"68.7959\" y1=\"48.5013\" x2=\"69.0753\" y2=\"48.5267\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.5013\" x2=\"69.5579\" y2=\"48.5267\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.5013\" x2=\"70.1421\" y2=\"48.5267\" layer=\"200\"/>\n<rectangle x1=\"70.5993\" y1=\"48.5013\" x2=\"70.8787\" y2=\"48.5267\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.5267\" x2=\"67.4243\" y2=\"48.5521\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.5267\" x2=\"69.0499\" y2=\"48.5521\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.5267\" x2=\"69.5579\" y2=\"48.5521\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.5267\" x2=\"70.1421\" y2=\"48.5521\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"48.5267\" x2=\"70.8787\" y2=\"48.5521\" layer=\"200\"/>\n<rectangle x1=\"67.1195\" y1=\"48.5521\" x2=\"67.4243\" y2=\"48.5775\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.5521\" x2=\"69.0499\" y2=\"48.5775\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.5521\" x2=\"69.5579\" y2=\"48.5775\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.5521\" x2=\"70.1421\" y2=\"48.5775\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"48.5521\" x2=\"70.8787\" y2=\"48.5775\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"48.5775\" x2=\"67.4243\" y2=\"48.6029\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"48.5775\" x2=\"67.9831\" y2=\"48.6029\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.5775\" x2=\"69.0245\" y2=\"48.6029\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.5775\" x2=\"69.5579\" y2=\"48.6029\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.5775\" x2=\"70.1421\" y2=\"48.6029\" layer=\"200\"/>\n<rectangle x1=\"70.5739\" y1=\"48.5775\" x2=\"70.8787\" y2=\"48.6029\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"48.6029\" x2=\"67.4497\" y2=\"48.6283\" layer=\"200\"/>\n<rectangle x1=\"67.9069\" y1=\"48.6029\" x2=\"68.0339\" y2=\"48.6283\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.6029\" x2=\"69.0245\" y2=\"48.6283\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.6029\" x2=\"69.5579\" y2=\"48.6283\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.6029\" x2=\"70.1421\" y2=\"48.6283\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"48.6029\" x2=\"70.8533\" y2=\"48.6283\" layer=\"200\"/>\n<rectangle x1=\"67.1449\" y1=\"48.6283\" x2=\"67.4497\" y2=\"48.6537\" layer=\"200\"/>\n<rectangle x1=\"67.8815\" y1=\"48.6283\" x2=\"68.0593\" y2=\"48.6537\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.6283\" x2=\"68.9991\" y2=\"48.6537\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.6283\" x2=\"69.5579\" y2=\"48.6537\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.6283\" x2=\"70.1421\" y2=\"48.6537\" layer=\"200\"/>\n<rectangle x1=\"70.5485\" y1=\"48.6283\" x2=\"70.8533\" y2=\"48.6537\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"48.6537\" x2=\"67.4751\" y2=\"48.6791\" layer=\"200\"/>\n<rectangle x1=\"67.8561\" y1=\"48.6537\" x2=\"68.1101\" y2=\"48.6791\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.6537\" x2=\"68.9737\" y2=\"48.6791\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.6537\" x2=\"69.5579\" y2=\"48.6791\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.6537\" x2=\"70.1421\" y2=\"48.6791\" layer=\"200\"/>\n<rectangle x1=\"70.5231\" y1=\"48.6537\" x2=\"70.8279\" y2=\"48.6791\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"48.6791\" x2=\"67.5005\" y2=\"48.7045\" layer=\"200\"/>\n<rectangle x1=\"67.8307\" y1=\"48.6791\" x2=\"68.1355\" y2=\"48.7045\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.6791\" x2=\"68.9737\" y2=\"48.7045\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.6791\" x2=\"69.5579\" y2=\"48.7045\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.6791\" x2=\"70.1421\" y2=\"48.7045\" layer=\"200\"/>\n<rectangle x1=\"70.4977\" y1=\"48.6791\" x2=\"70.8279\" y2=\"48.7045\" layer=\"200\"/>\n<rectangle x1=\"67.1703\" y1=\"48.7045\" x2=\"67.5259\" y2=\"48.7299\" layer=\"200\"/>\n<rectangle x1=\"67.8053\" y1=\"48.7045\" x2=\"68.1609\" y2=\"48.7299\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.7045\" x2=\"68.9483\" y2=\"48.7299\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.7045\" x2=\"69.5579\" y2=\"48.7299\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.7045\" x2=\"70.1421\" y2=\"48.7299\" layer=\"200\"/>\n<rectangle x1=\"70.4215\" y1=\"48.7045\" x2=\"70.8279\" y2=\"48.7299\" layer=\"200\"/>\n<rectangle x1=\"67.1957\" y1=\"48.7299\" x2=\"67.5767\" y2=\"48.7553\" layer=\"200\"/>\n<rectangle x1=\"67.7545\" y1=\"48.7299\" x2=\"68.1355\" y2=\"48.7553\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.7299\" x2=\"68.9483\" y2=\"48.7553\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.7299\" x2=\"69.5579\" y2=\"48.7553\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.7299\" x2=\"70.8025\" y2=\"48.7553\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"48.7553\" x2=\"68.1355\" y2=\"48.7807\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.7553\" x2=\"68.9229\" y2=\"48.7807\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.7553\" x2=\"69.5579\" y2=\"48.7807\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.7553\" x2=\"70.7771\" y2=\"48.7807\" layer=\"200\"/>\n<rectangle x1=\"67.2211\" y1=\"48.7807\" x2=\"68.1101\" y2=\"48.8061\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.7807\" x2=\"68.9229\" y2=\"48.8061\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.7807\" x2=\"69.5579\" y2=\"48.8061\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.7807\" x2=\"70.7771\" y2=\"48.8061\" layer=\"200\"/>\n<rectangle x1=\"67.2465\" y1=\"48.8061\" x2=\"68.0847\" y2=\"48.8315\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.8061\" x2=\"68.8975\" y2=\"48.8315\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.8061\" x2=\"69.5579\" y2=\"48.8315\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.8061\" x2=\"70.7517\" y2=\"48.8315\" layer=\"200\"/>\n<rectangle x1=\"67.2719\" y1=\"48.8315\" x2=\"68.0593\" y2=\"48.8569\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.8315\" x2=\"68.8975\" y2=\"48.8569\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.8315\" x2=\"69.5579\" y2=\"48.8569\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.8315\" x2=\"70.7263\" y2=\"48.8569\" layer=\"200\"/>\n<rectangle x1=\"67.2973\" y1=\"48.8569\" x2=\"68.0339\" y2=\"48.8823\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.8569\" x2=\"68.8721\" y2=\"48.8823\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.8569\" x2=\"69.5579\" y2=\"48.8823\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.8569\" x2=\"70.7009\" y2=\"48.8823\" layer=\"200\"/>\n<rectangle x1=\"67.3227\" y1=\"48.8823\" x2=\"68.0085\" y2=\"48.9077\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.8823\" x2=\"68.8721\" y2=\"48.9077\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.8823\" x2=\"69.5579\" y2=\"48.9077\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.8823\" x2=\"70.6501\" y2=\"48.9077\" layer=\"200\"/>\n<rectangle x1=\"67.3481\" y1=\"48.9077\" x2=\"67.9831\" y2=\"48.9331\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.9077\" x2=\"68.8467\" y2=\"48.9331\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.9077\" x2=\"69.5579\" y2=\"48.9331\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.9077\" x2=\"70.6247\" y2=\"48.9331\" layer=\"200\"/>\n<rectangle x1=\"67.3989\" y1=\"48.9331\" x2=\"67.9323\" y2=\"48.9585\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.9331\" x2=\"68.8213\" y2=\"48.9585\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.9331\" x2=\"69.5579\" y2=\"48.9585\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.9331\" x2=\"70.5485\" y2=\"48.9585\" layer=\"200\"/>\n<rectangle x1=\"67.4497\" y1=\"48.9585\" x2=\"67.8815\" y2=\"48.9839\" layer=\"200\"/>\n<rectangle x1=\"68.4911\" y1=\"48.9585\" x2=\"68.8213\" y2=\"48.9839\" layer=\"200\"/>\n<rectangle x1=\"69.2785\" y1=\"48.9585\" x2=\"69.5579\" y2=\"48.9839\" layer=\"200\"/>\n<rectangle x1=\"69.8627\" y1=\"48.9585\" x2=\"70.4723\" y2=\"48.9839\" layer=\"200\"/>\n<rectangle x1=\"67.5513\" y1=\"48.9839\" x2=\"67.7799\" y2=\"49.0093\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"49.5173\" x2=\"72.0979\" y2=\"49.5427\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"49.5427\" x2=\"72.0979\" y2=\"49.5681\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"49.5681\" x2=\"72.0979\" y2=\"49.5935\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"49.5935\" x2=\"72.0979\" y2=\"49.6189\" layer=\"200\"/>\n<rectangle x1=\"65.6209\" y1=\"49.6189\" x2=\"72.0979\" y2=\"49.6443\" layer=\"200\"/>\n</plain>\n<libraries>\n<library name=\"adafruit\">\n<packages>\n<package name=\"JD-T1800\">\n<wire x1=\"-17\" y1=\"23\" x2=\"17\" y2=\"23\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"17\" y1=\"23\" x2=\"17\" y2=\"-23\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"17\" y1=\"-23\" x2=\"-17\" y2=\"-23\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-17\" y1=\"-23\" x2=\"-17\" y2=\"23\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-5.2\" y1=\"-12.9\" x2=\"5.2\" y2=\"-12.9\" width=\"0.127\" layer=\"21\"/>\n<smd name=\"13\" x=\"-4.4\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"12\" x=\"-3.6\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"11\" x=\"-2.8\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"10\" x=\"-2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"9\" x=\"-1.2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"8\" x=\"-0.4\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"7\" x=\"0.4\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"6\" x=\"1.2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"5\" x=\"2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"4\" x=\"2.8\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"3\" x=\"3.6\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"2\" x=\"4.4\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"1\" x=\"5.2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"14\" x=\"-5.2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<hole x=\"-12.8\" y=\"-16.9\" drill=\"0.6\"/>\n<hole x=\"7.65\" y=\"-16.9\" drill=\"0.6\"/>\n</package>\n</packages>\n</library>\n<library name=\"rcl\">\n<description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;\nBased on the previous libraries:\n&lt;ul&gt;\n&lt;li&gt;r.lbr\n&lt;li&gt;cap.lbr \n&lt;li&gt;cap-fe.lbr\n&lt;li&gt;captant.lbr\n&lt;li&gt;polcap.lbr\n&lt;li&gt;ipc-smd.lbr\n&lt;/ul&gt;\nAll SMD packages are defined according to the IPC specifications and  CECC&lt;p&gt;\n&lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;\n&lt;p&gt;\nfor Electrolyt Capacitors see also :&lt;p&gt;\nwww.bccomponents.com &lt;p&gt;\nwww.panasonic.com&lt;p&gt;\nwww.kemet.com&lt;p&gt;\nhttp://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf &lt;b&gt;(SANYO)&lt;/b&gt;\n&lt;p&gt;\nfor trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;\n\n&lt;table border=0 cellspacing=0 cellpadding=0 width=\"100%\" cellpaddding=0&gt;\n&lt;tr valign=\"top\"&gt;\n\n&lt;! &lt;td width=\"10\"&gt;&amp;nbsp;&lt;/td&gt;\n&lt;td width=\"90%\"&gt;\n\n&lt;b&gt;&lt;font color=\"#0000FF\" size=\"4\"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;\n&lt;P&gt;\n&lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;BOURNS&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;DALE-VISHAY&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;PHILIPS/MEPCO&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;MURATA&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;PANASONIC&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;SPECTROL&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;MILSPEC&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;\n      3005P&lt;BR&gt;\n      3006P&lt;BR&gt;\n      3006W&lt;BR&gt;\n      3006Y&lt;BR&gt;\n      3009P&lt;BR&gt;\n      3009W&lt;BR&gt;\n      3009Y&lt;BR&gt;\n      3057J&lt;BR&gt;\n      3057L&lt;BR&gt;\n      3057P&lt;BR&gt;\n      3057Y&lt;BR&gt;\n      3059J&lt;BR&gt;\n      3059L&lt;BR&gt;\n      3059P&lt;BR&gt;\n      3059Y&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      89P&lt;BR&gt;\n      89W&lt;BR&gt;\n      89X&lt;BR&gt;\n      89PH&lt;BR&gt;\n      76P&lt;BR&gt;\n      89XH&lt;BR&gt;\n      78SLT&lt;BR&gt;\n      78L&amp;nbsp;ALT&lt;BR&gt;\n      56P&amp;nbsp;ALT&lt;BR&gt;\n      78P&amp;nbsp;ALT&lt;BR&gt;\n      T8S&lt;BR&gt;\n      78L&lt;BR&gt;\n      56P&lt;BR&gt;\n      78P&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      T18/784&lt;BR&gt;\n      783&lt;BR&gt;\n      781&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      2199&lt;BR&gt;\n      1697/1897&lt;BR&gt;\n      1680/1880&lt;BR&gt;\n      2187&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      8035EKP/CT20/RJ-20P&lt;BR&gt;\n      -&lt;BR&gt;\n      RJ-20X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      1211L&lt;BR&gt;\n      8012EKQ&amp;nbsp;ALT&lt;BR&gt;\n      8012EKR&amp;nbsp;ALT&lt;BR&gt;\n      1211P&lt;BR&gt;\n      8012EKJ&lt;BR&gt;\n      8012EKL&lt;BR&gt;\n      8012EKQ&lt;BR&gt;\n      8012EKR&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      2101P&lt;BR&gt;\n      2101W&lt;BR&gt;\n      2101Y&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      2102L&lt;BR&gt;\n      2102S&lt;BR&gt;\n      2102Y&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      EVMCOG&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      43P&lt;BR&gt;\n      43W&lt;BR&gt;\n      43Y&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      40L&lt;BR&gt;\n      40P&lt;BR&gt;\n      40Y&lt;BR&gt;\n      70Y-T602&lt;BR&gt;\n      70L&lt;BR&gt;\n      70P&lt;BR&gt;\n      70Y&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      RT/RTR12&lt;BR&gt;\n      RT/RTR12&lt;BR&gt;\n      RT/RTR12&lt;BR&gt;\n      -&lt;BR&gt;\n      RJ/RJR12&lt;BR&gt;\n      RJ/RJR12&lt;BR&gt;\n      RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;&amp;nbsp;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;\n      &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n   &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      3250L&lt;BR&gt;\n      3250P&lt;BR&gt;\n      3250W&lt;BR&gt;\n      3250X&lt;BR&gt;\n      3252P&lt;BR&gt;\n      3252W&lt;BR&gt;\n      3252X&lt;BR&gt;\n      3260P&lt;BR&gt;\n      3260W&lt;BR&gt;\n      3260X&lt;BR&gt;\n      3262P&lt;BR&gt;\n      3262W&lt;BR&gt;\n      3262X&lt;BR&gt;\n      3266P&lt;BR&gt;\n      3266W&lt;BR&gt;\n      3266X&lt;BR&gt;\n      3290H&lt;BR&gt;\n      3290P&lt;BR&gt;\n      3290W&lt;BR&gt;\n      3292P&lt;BR&gt;\n      3292W&lt;BR&gt;\n      3292X&lt;BR&gt;\n      3296P&lt;BR&gt;\n      3296W&lt;BR&gt;\n      3296X&lt;BR&gt;\n      3296Y&lt;BR&gt;\n      3296Z&lt;BR&gt;\n      3299P&lt;BR&gt;\n      3299W&lt;BR&gt;\n      3299X&lt;BR&gt;\n      3299Y&lt;BR&gt;\n      3299Z&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      66P&amp;nbsp;ALT&lt;BR&gt;\n      66W&amp;nbsp;ALT&lt;BR&gt;\n      66X&amp;nbsp;ALT&lt;BR&gt;\n      66P&amp;nbsp;ALT&lt;BR&gt;\n      66W&amp;nbsp;ALT&lt;BR&gt;\n      66X&amp;nbsp;ALT&lt;BR&gt;\n      -&lt;BR&gt;\n      64W&amp;nbsp;ALT&lt;BR&gt;\n      -&lt;BR&gt;\n      64P&amp;nbsp;ALT&lt;BR&gt;\n      64W&amp;nbsp;ALT&lt;BR&gt;\n      64X&amp;nbsp;ALT&lt;BR&gt;\n      64P&lt;BR&gt;\n      64W&lt;BR&gt;\n      64X&lt;BR&gt;\n      66X&amp;nbsp;ALT&lt;BR&gt;\n      66P&amp;nbsp;ALT&lt;BR&gt;\n      66W&amp;nbsp;ALT&lt;BR&gt;\n      66P&lt;BR&gt;\n      66W&lt;BR&gt;\n      66X&lt;BR&gt;\n      67P&lt;BR&gt;\n      67W&lt;BR&gt;\n      67X&lt;BR&gt;\n      67Y&lt;BR&gt;\n      67Z&lt;BR&gt;\n      68P&lt;BR&gt;\n      68W&lt;BR&gt;\n      68X&lt;BR&gt;\n      67Y&amp;nbsp;ALT&lt;BR&gt;\n      67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      5050&lt;BR&gt;\n      5091&lt;BR&gt;\n      5080&lt;BR&gt;\n      5087&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      T63YB&lt;BR&gt;\n      T63XB&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      5887&lt;BR&gt;\n      5891&lt;BR&gt;\n      5880&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      T93Z&lt;BR&gt;\n      T93YA&lt;BR&gt;\n      T93XA&lt;BR&gt;\n      T93YB&lt;BR&gt;\n      T93XB&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      8026EKP&lt;BR&gt;\n      8026EKW&lt;BR&gt;\n      8026EKM&lt;BR&gt;\n      8026EKP&lt;BR&gt;\n      8026EKB&lt;BR&gt;\n      8026EKM&lt;BR&gt;\n      1309X&lt;BR&gt;\n      1309P&lt;BR&gt;\n      1309W&lt;BR&gt;\n      8024EKP&lt;BR&gt;\n      8024EKW&lt;BR&gt;\n      8024EKN&lt;BR&gt;\n      RJ-9P/CT9P&lt;BR&gt;\n      RJ-9W&lt;BR&gt;\n      RJ-9X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      3103P&lt;BR&gt;\n      3103Y&lt;BR&gt;\n      3103Z&lt;BR&gt;\n      3103P&lt;BR&gt;\n      3103Y&lt;BR&gt;\n      3103Z&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      3105P/3106P&lt;BR&gt;\n      3105W/3106W&lt;BR&gt;\n      3105X/3106X&lt;BR&gt;\n      3105Y/3106Y&lt;BR&gt;\n      3105Z/3105Z&lt;BR&gt;\n      3102P&lt;BR&gt;\n      3102W&lt;BR&gt;\n      3102X&lt;BR&gt;\n      3102Y&lt;BR&gt;\n      3102Z&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMCBG&lt;BR&gt;\n      EVMCCG&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      55-1-X&lt;BR&gt;\n      55-4-X&lt;BR&gt;\n      55-3-X&lt;BR&gt;\n      55-2-X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      50-2-X&lt;BR&gt;\n      50-4-X&lt;BR&gt;\n      50-3-X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      64P&lt;BR&gt;\n      64W&lt;BR&gt;\n      64X&lt;BR&gt;\n      64Y&lt;BR&gt;\n      64Z&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      RT/RTR22&lt;BR&gt;\n      RT/RTR22&lt;BR&gt;\n      RT/RTR22&lt;BR&gt;\n      RT/RTR22&lt;BR&gt;\n      RJ/RJR22&lt;BR&gt;\n      RJ/RJR22&lt;BR&gt;\n      RJ/RJR22&lt;BR&gt;\n      RT/RTR26&lt;BR&gt;\n      RT/RTR26&lt;BR&gt;\n      RT/RTR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RT/RTR24&lt;BR&gt;\n      RT/RTR24&lt;BR&gt;\n      RT/RTR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;&amp;nbsp;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;\n      &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      3323P&lt;BR&gt;\n      3323S&lt;BR&gt;\n      3323W&lt;BR&gt;\n      3329H&lt;BR&gt;\n      3329P&lt;BR&gt;\n      3329W&lt;BR&gt;\n      3339H&lt;BR&gt;\n      3339P&lt;BR&gt;\n      3339W&lt;BR&gt;\n      3352E&lt;BR&gt;\n      3352H&lt;BR&gt;\n      3352K&lt;BR&gt;\n      3352P&lt;BR&gt;\n      3352T&lt;BR&gt;\n      3352V&lt;BR&gt;\n      3352W&lt;BR&gt;\n      3362H&lt;BR&gt;\n      3362M&lt;BR&gt;\n      3362P&lt;BR&gt;\n      3362R&lt;BR&gt;\n      3362S&lt;BR&gt;\n      3362U&lt;BR&gt;\n      3362W&lt;BR&gt;\n      3362X&lt;BR&gt;\n      3386B&lt;BR&gt;\n      3386C&lt;BR&gt;\n      3386F&lt;BR&gt;\n      3386H&lt;BR&gt;\n      3386K&lt;BR&gt;\n      3386M&lt;BR&gt;\n      3386P&lt;BR&gt;\n      3386S&lt;BR&gt;\n      3386W&lt;BR&gt;\n      3386X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      25P&lt;BR&gt;\n      25S&lt;BR&gt;\n      25RX&lt;BR&gt;\n      82P&lt;BR&gt;\n      82M&lt;BR&gt;\n      82PA&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      91E&lt;BR&gt;\n      91X&lt;BR&gt;\n      91T&lt;BR&gt;\n      91B&lt;BR&gt;\n      91A&lt;BR&gt;\n      91V&lt;BR&gt;\n      91W&lt;BR&gt;\n      25W&lt;BR&gt;\n      25V&lt;BR&gt;\n      25P&lt;BR&gt;\n      -&lt;BR&gt;\n      25S&lt;BR&gt;\n      25U&lt;BR&gt;\n      25RX&lt;BR&gt;\n      25X&lt;BR&gt;\n      72XW&lt;BR&gt;\n      72XL&lt;BR&gt;\n      72PM&lt;BR&gt;\n      72RX&lt;BR&gt;\n      -&lt;BR&gt;\n      72PX&lt;BR&gt;\n      72P&lt;BR&gt;\n      72RXW&lt;BR&gt;\n      72RXL&lt;BR&gt;\n      72X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      T7YB&lt;BR&gt;\n      T7YA&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      TXD&lt;BR&gt;\n      TYA&lt;BR&gt;\n      TYP&lt;BR&gt;\n      -&lt;BR&gt;\n      TYD&lt;BR&gt;\n      TX&lt;BR&gt;\n      -&lt;BR&gt;\n      150SX&lt;BR&gt;\n      100SX&lt;BR&gt;\n      102T&lt;BR&gt;\n      101S&lt;BR&gt;\n      190T&lt;BR&gt;\n      150TX&lt;BR&gt;\n      101&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      101SX&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      ET6P&lt;BR&gt;\n      ET6S&lt;BR&gt;\n      ET6X&lt;BR&gt;\n      RJ-6W/8014EMW&lt;BR&gt;\n      RJ-6P/8014EMP&lt;BR&gt;\n      RJ-6X/8014EMX&lt;BR&gt;\n      TM7W&lt;BR&gt;\n      TM7P&lt;BR&gt;\n      TM7X&lt;BR&gt;\n      -&lt;BR&gt;\n      8017SMS&lt;BR&gt;\n      -&lt;BR&gt;\n      8017SMB&lt;BR&gt;\n      8017SMA&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      CT-6W&lt;BR&gt;\n      CT-6H&lt;BR&gt;\n      CT-6P&lt;BR&gt;\n      CT-6R&lt;BR&gt;\n      -&lt;BR&gt;\n      CT-6V&lt;BR&gt;\n      CT-6X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      8038EKV&lt;BR&gt;\n      -&lt;BR&gt;\n      8038EKX&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      8038EKP&lt;BR&gt;\n      8038EKZ&lt;BR&gt;\n      8038EKW&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      3321H&lt;BR&gt;\n      3321P&lt;BR&gt;\n      3321N&lt;BR&gt;\n      1102H&lt;BR&gt;\n      1102P&lt;BR&gt;\n      1102T&lt;BR&gt;\n      RVA0911V304A&lt;BR&gt;\n      -&lt;BR&gt;\n      RVA0911H413A&lt;BR&gt;\n      RVG0707V100A&lt;BR&gt;\n      RVA0607V(H)306A&lt;BR&gt;\n      RVA1214H213A&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      3104B&lt;BR&gt;\n      3104C&lt;BR&gt;\n      3104F&lt;BR&gt;\n      3104H&lt;BR&gt;\n      -&lt;BR&gt;\n      3104M&lt;BR&gt;\n      3104P&lt;BR&gt;\n      3104S&lt;BR&gt;\n      3104W&lt;BR&gt;\n      3104X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      EVMQ0G&lt;BR&gt;\n      EVMQIG&lt;BR&gt;\n      EVMQ3G&lt;BR&gt;\n      EVMS0G&lt;BR&gt;\n      EVMQ0G&lt;BR&gt;\n      EVMG0G&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMK4GA00B&lt;BR&gt;\n      EVM30GA00B&lt;BR&gt;\n      EVMK0GA00B&lt;BR&gt;\n      EVM38GA00B&lt;BR&gt;\n      EVMB6&lt;BR&gt;\n      EVLQ0&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMMSG&lt;BR&gt;\n      EVMMBG&lt;BR&gt;\n      EVMMAG&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMMCS&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMM1&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMM0&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMM3&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      62-3-1&lt;BR&gt;\n      62-1-2&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      67R&lt;BR&gt;\n      -&lt;BR&gt;\n      67P&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      67X&lt;BR&gt;\n      63V&lt;BR&gt;\n      63S&lt;BR&gt;\n      63M&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      63H&lt;BR&gt;\n      63P&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      63X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      RJ/RJR50&lt;BR&gt;\n      RJ/RJR50&lt;BR&gt;\n      RJ/RJR50&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n&lt;/TABLE&gt;\n&lt;P&gt;&amp;nbsp;&lt;P&gt;\n&lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=7&gt;\n      &lt;FONT color=\"#0000FF\" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;\n      &lt;P&gt;\n      &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      3224G&lt;BR&gt;\n      3224J&lt;BR&gt;\n      3224W&lt;BR&gt;\n      3269P&lt;BR&gt;\n      3269W&lt;BR&gt;\n      3269X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      44G&lt;BR&gt;\n      44J&lt;BR&gt;\n      44W&lt;BR&gt;\n      84P&lt;BR&gt;\n      84W&lt;BR&gt;\n      84X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      ST63Z&lt;BR&gt;\n      ST63Y&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      ST5P&lt;BR&gt;\n      ST5W&lt;BR&gt;\n      ST5X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=7&gt;&amp;nbsp;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=7&gt;\n      &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      3314G&lt;BR&gt;\n      3314J&lt;BR&gt;\n      3364A/B&lt;BR&gt;\n      3364C/D&lt;BR&gt;\n      3364W/X&lt;BR&gt;\n      3313G&lt;BR&gt;\n      3313J&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      23B&lt;BR&gt;\n      23A&lt;BR&gt;\n      21X&lt;BR&gt;\n      21W&lt;BR&gt;\n      -&lt;BR&gt;\n      22B&lt;BR&gt;\n      22A&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      ST5YL/ST53YL&lt;BR&gt;\n      ST5YJ/5T53YJ&lt;BR&gt;\n      ST-23A&lt;BR&gt;\n      ST-22B&lt;BR&gt;\n      ST-22&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      ST-4B&lt;BR&gt;\n      ST-4A&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      ST-3B&lt;BR&gt;\n      ST-3A&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      EVM-6YS&lt;BR&gt;\n      EVM-1E&lt;BR&gt;\n      EVM-1G&lt;BR&gt;\n      EVM-1D&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      G4B&lt;BR&gt;\n      G4A&lt;BR&gt;\n      TR04-3S1&lt;BR&gt;\n      TRG04-2S1&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      DVR-43A&lt;BR&gt;\n      CVR-42C&lt;BR&gt;\n      CVR-42A/C&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n&lt;/TABLE&gt;\n&lt;P&gt;\n&lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;\n&lt;P&gt;\n\n&amp;nbsp;\n&lt;P&gt;\n&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/table&gt;</description>\n<packages>\n<package name=\"R0402\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-0.245\" y1=\"0.224\" x2=\"0.245\" y2=\"0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.245\" y1=\"-0.224\" x2=\"-0.245\" y2=\"-0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.635\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.554\" y1=\"-0.3048\" x2=\"-0.254\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"0.2588\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.4001\" x2=\"0.1999\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"R0805\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.95\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.95\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5001\" x2=\"0.1999\" y2=\"0.5001\" layer=\"35\"/>\n</package>\n</packages>\n</library>\n<library name=\"10118194-0001LF\">\n<packages>\n<package name=\"FRAMATOME_10118194-0001LF\">\n<wire x1=\"-3.5\" y1=\"2.85\" x2=\"3.5\" y2=\"2.85\" width=\"0.127\" layer=\"51\"/>\n<wire x1=\"-3.5\" y1=\"-1.25\" x2=\"-3.5\" y2=\"-2.1\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-3.5\" y1=\"-2.1\" x2=\"-3.5\" y2=\"-2.15\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"3.5\" y1=\"-1.25\" x2=\"3.5\" y2=\"-2.15\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-5.25\" y1=\"-1.45\" x2=\"4.5\" y2=\"-1.45\" width=\"0.127\" layer=\"21\"/>\n<text x=\"4.265540625\" y=\"-1.505490625\" size=\"1.274640625\" layer=\"51\">PCB Edge</text>\n<wire x1=\"-3.5\" y1=\"-2.1\" x2=\"-4\" y2=\"-2.6\" width=\"0.127\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.9\" y1=\"-2.9\" x2=\"-3.1\" y2=\"-2.1\" width=\"0.127\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.1\" y1=\"-2.1\" x2=\"-3.1\" y2=\"-1.8\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-3.1\" y1=\"-1.8\" x2=\"-2.8\" y2=\"-1.8\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-2.8\" y1=\"-1.8\" x2=\"-2.4\" y2=\"-2.2\" width=\"0.127\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"3.5\" y1=\"-1.25\" x2=\"3.5\" y2=\"-2.1\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"3.5\" y1=\"-2.1\" x2=\"3.5\" y2=\"-2.15\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"3.5\" y1=\"-2.1\" x2=\"4\" y2=\"-2.6\" width=\"0.127\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"3.9\" y1=\"-2.9\" x2=\"3.1\" y2=\"-2.1\" width=\"0.127\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.1\" y1=\"-2.1\" x2=\"3.1\" y2=\"-1.8\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"3.1\" y1=\"-1.8\" x2=\"2.8\" y2=\"-1.8\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"2.8\" y1=\"-1.8\" x2=\"2.4\" y2=\"-2.2\" width=\"0.127\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.4\" y1=\"-2.2\" x2=\"2.3\" y2=\"-2.2\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-2.5\" y1=\"3.7\" x2=\"3.8\" y2=\"3.7\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"3.8\" y1=\"3.7\" x2=\"3.8\" y2=\"1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"3.8\" y1=\"1.2\" x2=\"4.7\" y2=\"1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"4.7\" y1=\"1.2\" x2=\"4.7\" y2=\"-1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"4.7\" y1=\"-1.2\" x2=\"4.3\" y2=\"-1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"4.3\" y1=\"-1.2\" x2=\"4.3\" y2=\"-3.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"4.3\" y1=\"-3.2\" x2=\"-4.3\" y2=\"-3.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-4.3\" y1=\"-3.2\" x2=\"-4.3\" y2=\"-1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-4.3\" y1=\"-1.2\" x2=\"-4.7\" y2=\"-1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-4.7\" y1=\"-1.2\" x2=\"-4.7\" y2=\"1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-4.7\" y1=\"1.2\" x2=\"-3.8\" y2=\"1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-3.8\" y1=\"1.2\" x2=\"-3.8\" y2=\"3.7\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-3.8\" y1=\"3.7\" x2=\"-1.8\" y2=\"3.7\" width=\"0.127\" layer=\"39\"/>\n<text x=\"-4.50763125\" y=\"-0.901528125\" size=\"1.272159375\" layer=\"25\" rot=\"R90\">&gt;NAME</text>\n<text x=\"5.903740625\" y=\"0.1000625\" size=\"1.2708\" layer=\"27\" rot=\"R90\">&gt;VALUE</text>\n<smd name=\"1\" x=\"-1.3\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<smd name=\"2\" x=\"-0.65\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<smd name=\"3\" x=\"0\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<smd name=\"4\" x=\"0.65\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<smd name=\"5\" x=\"1.3\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<pad name=\"P$6\" x=\"-2.5\" y=\"2.7\" drill=\"0.9\"/>\n<pad name=\"P$7\" x=\"2.5\" y=\"2.7\" drill=\"0.9\"/>\n<pad name=\"P$8\" x=\"-3.5\" y=\"0\" drill=\"1.2\"/>\n<pad name=\"P$9\" x=\"3.5\" y=\"0\" drill=\"1.2\"/>\n<smd name=\"P$10\" x=\"-1\" y=\"0\" dx=\"1.5\" dy=\"1.55\" layer=\"1\"/>\n<smd name=\"P$11\" x=\"1\" y=\"0\" dx=\"1.5\" dy=\"1.55\" layer=\"1\"/>\n<smd name=\"P$12\" x=\"-3.05\" y=\"0\" dx=\"1.5\" dy=\"1.55\" layer=\"1\"/>\n<smd name=\"P$13\" x=\"3.05\" y=\"0\" dx=\"1.5\" dy=\"1.55\" layer=\"1\"/>\n</package>\n</packages>\n</library>\n<library name=\"MF_IC_Digital\">\n<packages>\n<package name=\"EFM8BB10F(2/4/8)G-A-QFN20\">\n<description>&lt;b&gt;Description:&lt;/b&gt; Silicon Labs Busy Bee QFN20 Package.&lt;br/&gt;</description>\n<smd name=\"PAD\" x=\"0\" y=\"0\" dx=\"1.6\" dy=\"1.6\" layer=\"1\" roundness=\"20\" cream=\"no\"/>\n<smd name=\"P$1\" x=\"-1.265\" y=\"1.265\" dx=\"0.34\" dy=\"0.34\" layer=\"1\"/>\n<smd name=\"P$2\" x=\"-1.355\" y=\"0.75\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$3\" x=\"-1.355\" y=\"0.25\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$4\" x=\"-1.355\" y=\"-0.25\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$5\" x=\"-1.355\" y=\"-0.75\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$6\" x=\"-1.265\" y=\"-1.265\" dx=\"0.34\" dy=\"0.34\" layer=\"1\"/>\n<smd name=\"P$7\" x=\"-0.75\" y=\"-1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$8\" x=\"-0.25\" y=\"-1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$9\" x=\"0.25\" y=\"-1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$10\" x=\"0.75\" y=\"-1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$11\" x=\"1.265\" y=\"-1.265\" dx=\"0.34\" dy=\"0.34\" layer=\"1\"/>\n<smd name=\"P$12\" x=\"1.355\" y=\"-0.75\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$13\" x=\"1.355\" y=\"-0.25\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$14\" x=\"1.355\" y=\"0.25\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$15\" x=\"1.355\" y=\"0.75\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$16\" x=\"1.265\" y=\"1.265\" dx=\"0.34\" dy=\"0.34\" layer=\"1\"/>\n<smd name=\"P$17\" x=\"0.75\" y=\"1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$18\" x=\"0.25\" y=\"1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$19\" x=\"-0.25\" y=\"1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$20\" x=\"-0.75\" y=\"1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<polygon width=\"0.127\" layer=\"31\">\n<vertex x=\"-0.6\" y=\"0.6\"/>\n<vertex x=\"-0.6\" y=\"0.1\"/>\n<vertex x=\"-0.1\" y=\"0.1\"/>\n<vertex x=\"-0.1\" y=\"0.6\"/>\n</polygon>\n<polygon width=\"0.127\" layer=\"31\">\n<vertex x=\"0.1\" y=\"0.6\"/>\n<vertex x=\"0.1\" y=\"0.1\"/>\n<vertex x=\"0.6\" y=\"0.1\"/>\n<vertex x=\"0.6\" y=\"0.6\"/>\n</polygon>\n<polygon width=\"0.127\" layer=\"31\">\n<vertex x=\"0.1\" y=\"-0.1\"/>\n<vertex x=\"0.1\" y=\"-0.6\"/>\n<vertex x=\"0.6\" y=\"-0.6\"/>\n<vertex x=\"0.6\" y=\"-0.1\"/>\n</polygon>\n<polygon width=\"0.127\" layer=\"31\">\n<vertex x=\"-0.6\" y=\"-0.1\"/>\n<vertex x=\"-0.6\" y=\"-0.6\"/>\n<vertex x=\"-0.1\" y=\"-0.6\"/>\n<vertex x=\"-0.1\" y=\"-0.1\"/>\n</polygon>\n<wire x1=\"-1.575\" y1=\"1.575\" x2=\"-1.1\" y2=\"1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"1.1\" y1=\"1.575\" x2=\"1.575\" y2=\"1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"1.575\" y1=\"1.575\" x2=\"1.575\" y2=\"1.1\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"1.575\" y1=\"-1.1\" x2=\"1.575\" y2=\"-1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"1.575\" y1=\"-1.575\" x2=\"1.1\" y2=\"-1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"-1.1\" y1=\"-1.575\" x2=\"-1.575\" y2=\"-1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"-1.575\" y1=\"-1.575\" x2=\"-1.575\" y2=\"-1.1\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"-1.575\" y1=\"1.1\" x2=\"-1.575\" y2=\"1.575\" width=\"0.15\" layer=\"21\"/>\n<polygon width=\"0.127\" layer=\"21\">\n<vertex x=\"-2.2\" y=\"1.3\" curve=\"90\"/>\n<vertex x=\"-2\" y=\"1.1\" curve=\"90\"/>\n<vertex x=\"-1.8\" y=\"1.3\" curve=\"90\"/>\n<vertex x=\"-2\" y=\"1.5\" curve=\"90\"/>\n</polygon>\n<text x=\"-1.575\" y=\"1.9\" size=\"1.016\" layer=\"25\" font=\"vector\" ratio=\"16\">&gt;NAME</text>\n</package>\n</packages>\n</library>\n<library name=\"resistor\">\n<packages>\n<package name=\"C0402K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0204 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 1005</description>\n<wire x1=\"-0.425\" y1=\"0.2\" x2=\"0.425\" y2=\"0.2\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"0.425\" y1=\"-0.2\" x2=\"-0.425\" y2=\"-0.2\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.6\" y=\"0\" dx=\"0.925\" dy=\"0.74\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.6\" y=\"0\" dx=\"0.925\" dy=\"0.74\" layer=\"1\"/>\n<text x=\"-0.5\" y=\"0.425\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.5\" y=\"-1.45\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.5\" y1=\"-0.25\" x2=\"-0.225\" y2=\"0.25\" layer=\"51\"/>\n<rectangle x1=\"0.225\" y1=\"-0.25\" x2=\"0.5\" y2=\"0.25\" layer=\"51\"/>\n</package>\n<package name=\"R0402\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.245\" y1=\"0.224\" x2=\"0.245\" y2=\"0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.245\" y1=\"-0.224\" x2=\"-0.245\" y2=\"-0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.762\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.032\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.554\" y1=\"-0.3048\" x2=\"-0.254\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"0.2588\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.4001\" x2=\"0.1999\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n</packages>\n</library>\n<library name=\"ftdichip\">\n<description>&lt;b&gt;FTDI (TM) CHIP&lt;/b&gt; Future Technology Devices International Ltd.&lt;p&gt;\nhttp://www.ftdichip.com</description>\n<packages>\n<package name=\"QFN16\">\n<description>&lt;b&gt;QFN-16 4 x 4 mm&lt;/b&gt;&lt;p&gt;\nSource: &lt;a href=\"http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT230X.pdf\"&gt; Data sheet &lt;/a&gt;</description>\n<wire x1=\"-1.9\" y1=\"1.9\" x2=\"-1.9\" y2=\"-1.9\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-1.9\" y1=\"-1.9\" x2=\"1.9\" y2=\"-1.9\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"1.9\" y1=\"-1.9\" x2=\"1.9\" y2=\"1.9\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"1.9\" y1=\"1.9\" x2=\"-1.9\" y2=\"1.9\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"TAB\" x=\"0\" y=\"0\" dx=\"1\" dy=\"1\" layer=\"1\" stop=\"no\"/>\n<smd name=\"1\" x=\"-1.725\" y=\"0.975\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" stop=\"no\"/>\n<smd name=\"2\" x=\"-1.725\" y=\"0.325\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" stop=\"no\"/>\n<smd name=\"3\" x=\"-1.725\" y=\"-0.325\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" stop=\"no\"/>\n<smd name=\"4\" x=\"-1.725\" y=\"-0.975\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" stop=\"no\"/>\n<smd name=\"5\" x=\"-0.975\" y=\"-1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R90\" stop=\"no\"/>\n<smd name=\"6\" x=\"-0.325\" y=\"-1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R90\" stop=\"no\"/>\n<smd name=\"7\" x=\"0.325\" y=\"-1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R90\" stop=\"no\"/>\n<smd name=\"8\" x=\"0.975\" y=\"-1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R90\" stop=\"no\"/>\n<smd name=\"9\" x=\"1.725\" y=\"-0.975\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R180\" stop=\"no\"/>\n<smd name=\"10\" x=\"1.725\" y=\"-0.325\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R180\" stop=\"no\"/>\n<smd name=\"11\" x=\"1.725\" y=\"0.325\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R180\" stop=\"no\"/>\n<smd name=\"12\" x=\"1.725\" y=\"0.975\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R180\" stop=\"no\"/>\n<smd name=\"13\" x=\"0.975\" y=\"1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R270\" stop=\"no\"/>\n<smd name=\"14\" x=\"0.325\" y=\"1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R270\" stop=\"no\"/>\n<smd name=\"15\" x=\"-0.325\" y=\"1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R270\" stop=\"no\"/>\n<smd name=\"16\" x=\"-0.975\" y=\"1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R270\" stop=\"no\"/>\n<polygon width=\"0.2032\" layer=\"1\">\n<vertex x=\"-0.9525\" y=\"-0.9525\"/>\n<vertex x=\"-0.9525\" y=\"0.635\"/>\n<vertex x=\"-0.635\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"-0.9525\"/>\n</polygon>\n<polygon width=\"0.254\" layer=\"29\">\n<vertex x=\"-0.9525\" y=\"-0.9525\"/>\n<vertex x=\"-0.9525\" y=\"0.635\"/>\n<vertex x=\"-0.635\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"-0.9525\"/>\n</polygon>\n<polygon width=\"0.15\" layer=\"31\">\n<vertex x=\"-0.9525\" y=\"-0.9525\"/>\n<vertex x=\"-0.9525\" y=\"0.635\"/>\n<vertex x=\"-0.635\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"-0.9525\"/>\n</polygon>\n<rectangle x1=\"-2.15\" y1=\"0.775\" x2=\"-1.3\" y2=\"1.175\" layer=\"29\"/>\n<rectangle x1=\"-2.15\" y1=\"0.125\" x2=\"-1.3\" y2=\"0.525\" layer=\"29\"/>\n<rectangle x1=\"-2.15\" y1=\"-0.525\" x2=\"-1.3\" y2=\"-0.125\" layer=\"29\"/>\n<rectangle x1=\"-2.15\" y1=\"-1.175\" x2=\"-1.3\" y2=\"-0.775\" layer=\"29\"/>\n<rectangle x1=\"-1.4\" y1=\"-1.925\" x2=\"-0.55\" y2=\"-1.525\" layer=\"29\" rot=\"R90\"/>\n<rectangle x1=\"-0.75\" y1=\"-1.925\" x2=\"0.1\" y2=\"-1.525\" layer=\"29\" rot=\"R90\"/>\n<rectangle x1=\"-0.1\" y1=\"-1.925\" x2=\"0.75\" y2=\"-1.525\" layer=\"29\" rot=\"R90\"/>\n<rectangle x1=\"0.55\" y1=\"-1.925\" x2=\"1.4\" y2=\"-1.525\" layer=\"29\" rot=\"R90\"/>\n<rectangle x1=\"1.3\" y1=\"-1.175\" x2=\"2.15\" y2=\"-0.775\" layer=\"29\" rot=\"R180\"/>\n<rectangle x1=\"1.3\" y1=\"-0.525\" x2=\"2.15\" y2=\"-0.125\" layer=\"29\" rot=\"R180\"/>\n<rectangle x1=\"1.3\" y1=\"0.125\" x2=\"2.15\" y2=\"0.525\" layer=\"29\" rot=\"R180\"/>\n<rectangle x1=\"1.3\" y1=\"0.775\" x2=\"2.15\" y2=\"1.175\" layer=\"29\" rot=\"R180\"/>\n<rectangle x1=\"0.55\" y1=\"1.525\" x2=\"1.4\" y2=\"1.925\" layer=\"29\" rot=\"R270\"/>\n<rectangle x1=\"-0.1\" y1=\"1.525\" x2=\"0.75\" y2=\"1.925\" layer=\"29\" rot=\"R270\"/>\n<rectangle x1=\"-0.75\" y1=\"1.525\" x2=\"0.1\" y2=\"1.925\" layer=\"29\" rot=\"R270\"/>\n<rectangle x1=\"-1.4\" y1=\"1.525\" x2=\"-0.55\" y2=\"1.925\" layer=\"29\" rot=\"R270\"/>\n<text x=\"-2.15\" y=\"2.277\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.15\" y=\"-4.055\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n</packages>\n</library>\n<library name=\"burr-brown\">\n<description>&lt;b&gt;Burr-Brown Components&lt;/b&gt;&lt;p&gt;\n&lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>\n<packages>\n<package name=\"SOT223\">\n<description>&lt;b&gt;Smal Outline Transistor&lt;/b&gt;</description>\n<wire x1=\"-3.124\" y1=\"1.731\" x2=\"-3.124\" y2=\"-1.729\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.124\" y1=\"-1.729\" x2=\"3.124\" y2=\"1.731\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.124\" y1=\"1.731\" x2=\"3.124\" y2=\"1.731\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.124\" y1=\"-1.729\" x2=\"-3.124\" y2=\"-1.729\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.2606\" y=\"-3.1496\" dx=\"1.4986\" dy=\"2.0066\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.0254\" y=\"-3.1496\" dx=\"1.4986\" dy=\"2.0066\" layer=\"1\"/>\n<smd name=\"3\" x=\"2.3114\" y=\"-3.1496\" dx=\"1.4986\" dy=\"2.0066\" layer=\"1\"/>\n<smd name=\"4\" x=\"0\" y=\"3.1496\" dx=\"3.81\" dy=\"2.0066\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"4.318\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.794\" y=\"-5.842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.524\" y1=\"1.778\" x2=\"1.524\" y2=\"3.302\" layer=\"51\"/>\n<rectangle x1=\"-2.667\" y1=\"-3.302\" x2=\"-1.905\" y2=\"-1.778\" layer=\"51\"/>\n<rectangle x1=\"1.905\" y1=\"-3.302\" x2=\"2.667\" y2=\"-1.778\" layer=\"51\"/>\n<rectangle x1=\"-0.381\" y1=\"-3.302\" x2=\"0.381\" y2=\"-1.778\" layer=\"51\"/>\n</package>\n</packages>\n</library>\n<library name=\"ZXCT1110W5-7\">\n<packages>\n<package name=\"SOT95P280X130-5N\">\n<wire x1=\"0.6096\" y1=\"1.5494\" x2=\"0.3048\" y2=\"1.5494\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3048\" y1=\"1.5494\" x2=\"-0.3048\" y2=\"1.5494\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"1.5494\" x2=\"-0.6096\" y2=\"1.5494\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3048\" y1=\"1.5494\" x2=\"-0.3048\" y2=\"1.5494\" width=\"0.1524\" layer=\"21\" curve=\"-180\"/>\n<wire x1=\"-0.8382\" y1=\"-1.5494\" x2=\"0.8382\" y2=\"-1.5494\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"-1.5494\" x2=\"0.8382\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"-1.1938\" x2=\"0.8382\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"-0.7112\" x2=\"0.8382\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"1.5494\" x2=\"0.3048\" y2=\"1.5494\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.3048\" y1=\"1.5494\" x2=\"-0.3048\" y2=\"1.5494\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.3048\" y1=\"1.5494\" x2=\"-0.8382\" y2=\"1.5494\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"1.5494\" x2=\"-0.8382\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"1.1938\" x2=\"-0.8382\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"0.7112\" x2=\"-0.8382\" y2=\"0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"0.254\" x2=\"-0.8382\" y2=\"-0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"-0.254\" x2=\"-0.8382\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"1.1938\" x2=\"-1.4986\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"1.1938\" x2=\"-1.4986\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"0.7112\" x2=\"-0.8382\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"0.254\" x2=\"-1.4986\" y2=\"0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"0.254\" x2=\"-1.4986\" y2=\"-0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"-0.254\" x2=\"-0.8382\" y2=\"-0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"-1.5494\" x2=\"-0.8382\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"-1.1938\" x2=\"-0.8382\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"-0.7112\" x2=\"-1.4986\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"-0.7112\" x2=\"-1.4986\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"-1.1938\" x2=\"-0.8382\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"-1.1938\" x2=\"1.4986\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"1.4986\" y1=\"-1.1938\" x2=\"1.4986\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"1.4986\" y1=\"-0.7112\" x2=\"0.8382\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"1.5494\" x2=\"0.8382\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"1.1938\" x2=\"0.8382\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"0.7112\" x2=\"1.4986\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"1.4986\" y1=\"0.7112\" x2=\"1.4986\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"1.4986\" y1=\"1.1938\" x2=\"0.8382\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.3048\" y1=\"1.5494\" x2=\"-0.3048\" y2=\"1.5494\" width=\"0\" layer=\"51\" curve=\"-180\"/>\n<text x=\"-3.457740625\" y=\"2.54245\" size=\"2.084809375\" layer=\"25\" ratio=\"10\" rot=\"SR0\">&gt;NAME</text>\n<text x=\"-3.45926875\" y=\"-4.45128125\" size=\"2.085740625\" layer=\"27\" ratio=\"10\" rot=\"SR0\">&gt;VALUE</text>\n<smd name=\"1\" x=\"-1.2954\" y=\"0.9398\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n<smd name=\"2\" x=\"-1.2954\" y=\"0\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n<smd name=\"3\" x=\"-1.2954\" y=\"-0.9398\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n<smd name=\"4\" x=\"1.2954\" y=\"-0.9398\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n<smd name=\"5\" x=\"1.2954\" y=\"0.9398\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n</package>\n</packages>\n</library>\n<library name=\"testpad\">\n<description>&lt;b&gt;Test Pins/Pads&lt;/b&gt;&lt;p&gt;\nCream on SMD OFF.&lt;br&gt;\nnew: Attribute TP_SIGNAL_NAME&lt;br&gt;\n&lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>\n<packages>\n<package name=\"B1,27\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<wire x1=\"-0.635\" y1=\"0\" x2=\"0.635\" y2=\"0\" width=\"0.0024\" layer=\"37\"/>\n<wire x1=\"0\" y1=\"0.635\" x2=\"0\" y2=\"-0.635\" width=\"0.0024\" layer=\"37\"/>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.27\" dy=\"1.27\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.635\" y=\"1.016\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-0.762\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n</packages>\n</library>\n<library name=\"pinhead\">\n<description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;\n&lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>\n<packages>\n<package name=\"1X04/90\">\n<description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>\n<wire x1=\"-5.08\" y1=\"-1.905\" x2=\"-2.54\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"-1.905\" x2=\"-2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"0.635\" x2=\"-5.08\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0.635\" x2=\"-5.08\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.81\" y1=\"6.985\" x2=\"-3.81\" y2=\"1.27\" width=\"0.762\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"-1.905\" x2=\"0\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0\" y1=\"-1.905\" x2=\"0\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0\" y1=\"0.635\" x2=\"-2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"6.985\" x2=\"-1.27\" y2=\"1.27\" width=\"0.762\" layer=\"21\"/>\n<wire x1=\"0\" y1=\"-1.905\" x2=\"2.54\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-1.905\" x2=\"2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"0.635\" x2=\"0\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.27\" y1=\"6.985\" x2=\"1.27\" y2=\"1.27\" width=\"0.762\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-1.905\" x2=\"5.08\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"-1.905\" x2=\"5.08\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"0.635\" x2=\"2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.81\" y1=\"6.985\" x2=\"3.81\" y2=\"1.27\" width=\"0.762\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"-3.81\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"2\" x=\"-1.27\" y=\"-3.81\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"3\" x=\"1.27\" y=\"-3.81\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"4\" x=\"3.81\" y=\"-3.81\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<text x=\"-5.715\" y=\"-3.81\" size=\"1.27\" layer=\"25\" ratio=\"10\" rot=\"R90\">&gt;NAME</text>\n<text x=\"6.985\" y=\"-4.445\" size=\"1.27\" layer=\"27\" rot=\"R90\">&gt;VALUE</text>\n<rectangle x1=\"-4.191\" y1=\"0.635\" x2=\"-3.429\" y2=\"1.143\" layer=\"21\"/>\n<rectangle x1=\"-1.651\" y1=\"0.635\" x2=\"-0.889\" y2=\"1.143\" layer=\"21\"/>\n<rectangle x1=\"0.889\" y1=\"0.635\" x2=\"1.651\" y2=\"1.143\" layer=\"21\"/>\n<rectangle x1=\"3.429\" y1=\"0.635\" x2=\"4.191\" y2=\"1.143\" layer=\"21\"/>\n<rectangle x1=\"-4.191\" y1=\"-2.921\" x2=\"-3.429\" y2=\"-1.905\" layer=\"21\"/>\n<rectangle x1=\"-1.651\" y1=\"-2.921\" x2=\"-0.889\" y2=\"-1.905\" layer=\"21\"/>\n<rectangle x1=\"0.889\" y1=\"-2.921\" x2=\"1.651\" y2=\"-1.905\" layer=\"21\"/>\n<rectangle x1=\"3.429\" y1=\"-2.921\" x2=\"4.191\" y2=\"-1.905\" layer=\"21\"/>\n</package>\n</packages>\n</library>\n</libraries>\n<attributes>\n</attributes>\n<variantdefs>\n</variantdefs>\n<classes>\n<class number=\"0\" name=\"default\" width=\"0\" drill=\"0\">\n</class>\n<class number=\"1\" name=\"power\" width=\"0.4064\" drill=\"0\">\n</class>\n</classes>\n<designrules name=\"NOA Eagle Rule 2016-06-12\">\n<description language=\"de\">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;\n&lt;p&gt;\nDie Standard-Design-Rules sind so gewählt, dass sie für \ndie meisten Anwendungen passen. Sollte ihre Platine \nbesondere Anforderungen haben, treffen Sie die erforderlichen\nEinstellungen hier und speichern die Design Rules unter \neinem neuen Namen ab.</description>\n<description language=\"en\">&lt;b&gt;EAGLE Design Rules&lt;/b&gt;\n&lt;p&gt;\nThe default Design Rules have been set to cover\na wide range of applications. Your particular design\nmay have different requirements, so please make the\nnecessary adjustments and save your customized\ndesign rules under a new name.</description>\n<description language=\"zh\">&lt;b&gt;NOA-Labs EAGLE Design Rules&lt;/b&gt;\n</description>\n<param name=\"layerSetup\" value=\"(1*16)\"/>\n<param name=\"mtCopper\" value=\"0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm\"/>\n<param name=\"mtIsolate\" value=\"1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm\"/>\n<param name=\"mdWireWire\" value=\"6mil\"/>\n<param name=\"mdWirePad\" value=\"6mil\"/>\n<param name=\"mdWireVia\" value=\"6mil\"/>\n<param name=\"mdPadPad\" value=\"6mil\"/>\n<param name=\"mdPadVia\" value=\"6mil\"/>\n<param name=\"mdViaVia\" value=\"6mil\"/>\n<param name=\"mdSmdPad\" value=\"0mil\"/>\n<param name=\"mdSmdVia\" value=\"0mil\"/>\n<param name=\"mdSmdSmd\" value=\"0mil\"/>\n<param name=\"mdViaViaSameLayer\" value=\"8mil\"/>\n<param name=\"mnLayersViaInSmd\" value=\"2\"/>\n<param name=\"mdCopperDimension\" value=\"0.4mm\"/>\n<param name=\"mdDrill\" value=\"10mil\"/>\n<param name=\"mdSmdStop\" value=\"0mil\"/>\n<param name=\"msWidth\" value=\"6mil\"/>\n<param name=\"msDrill\" value=\"0.3mm\"/>\n<param name=\"msMicroVia\" value=\"12mil\"/>\n<param name=\"msBlindViaRatio\" value=\"0.5\"/>\n<param name=\"rvPadTop\" value=\"0.25\"/>\n<param name=\"rvPadInner\" value=\"0.25\"/>\n<param name=\"rvPadBottom\" value=\"0.25\"/>\n<param name=\"rvViaOuter\" value=\"0.25\"/>\n<param name=\"rvViaInner\" value=\"0.25\"/>\n<param name=\"rvMicroViaOuter\" value=\"0.25\"/>\n<param name=\"rvMicroViaInner\" value=\"0.25\"/>\n<param name=\"rlMinPadTop\" value=\"10mil\"/>\n<param name=\"rlMaxPadTop\" value=\"20mil\"/>\n<param name=\"rlMinPadInner\" value=\"10mil\"/>\n<param name=\"rlMaxPadInner\" value=\"20mil\"/>\n<param name=\"rlMinPadBottom\" value=\"10mil\"/>\n<param name=\"rlMaxPadBottom\" value=\"20mil\"/>\n<param name=\"rlMinViaOuter\" value=\"6mil\"/>\n<param name=\"rlMaxViaOuter\" value=\"20mil\"/>\n<param name=\"rlMinViaInner\" value=\"6mil\"/>\n<param name=\"rlMaxViaInner\" value=\"20mil\"/>\n<param name=\"rlMinMicroViaOuter\" value=\"4mil\"/>\n<param name=\"rlMaxMicroViaOuter\" value=\"20mil\"/>\n<param name=\"rlMinMicroViaInner\" value=\"4mil\"/>\n<param name=\"rlMaxMicroViaInner\" value=\"20mil\"/>\n<param name=\"psTop\" value=\"-1\"/>\n<param name=\"psBottom\" value=\"-1\"/>\n<param name=\"psFirst\" value=\"0\"/>\n<param name=\"psElongationLong\" value=\"100\"/>\n<param name=\"psElongationOffset\" value=\"100\"/>\n<param name=\"mvStopFrame\" value=\"1\"/>\n<param name=\"mvCreamFrame\" value=\"0\"/>\n<param name=\"mlMinStopFrame\" value=\"2mil\"/>\n<param name=\"mlMaxStopFrame\" value=\"2mil\"/>\n<param name=\"mlMinCreamFrame\" value=\"0mil\"/>\n<param name=\"mlMaxCreamFrame\" value=\"0mil\"/>\n<param name=\"mlViaStopLimit\" value=\"25mil\"/>\n<param name=\"srRoundness\" value=\"0\"/>\n<param name=\"srMinRoundness\" value=\"0mil\"/>\n<param name=\"srMaxRoundness\" value=\"0mil\"/>\n<param name=\"slThermalIsolate\" value=\"10mil\"/>\n<param name=\"slThermalsForVias\" value=\"0\"/>\n<param name=\"dpMaxLengthDifference\" value=\"10mm\"/>\n<param name=\"dpGapFactor\" value=\"2.5\"/>\n<param name=\"checkGrid\" value=\"0\"/>\n<param name=\"checkAngle\" value=\"0\"/>\n<param name=\"checkFont\" value=\"1\"/>\n<param name=\"checkRestrict\" value=\"0\"/>\n<param name=\"useDiameter\" value=\"13\"/>\n<param name=\"maxErrors\" value=\"50\"/>\n</designrules>\n<autorouter>\n<pass name=\"Default\">\n<param name=\"RoutingGrid\" value=\"0.2mm\"/>\n<param name=\"tpViaShape\" value=\"round\"/>\n<param name=\"PrefDir.1\" value=\"|\"/>\n<param name=\"PrefDir.2\" value=\"0\"/>\n<param name=\"PrefDir.3\" value=\"0\"/>\n<param name=\"PrefDir.4\" value=\"0\"/>\n<param name=\"PrefDir.5\" value=\"0\"/>\n<param name=\"PrefDir.6\" value=\"0\"/>\n<param name=\"PrefDir.7\" value=\"0\"/>\n<param name=\"PrefDir.8\" value=\"0\"/>\n<param name=\"PrefDir.9\" value=\"0\"/>\n<param name=\"PrefDir.10\" value=\"0\"/>\n<param name=\"PrefDir.11\" value=\"0\"/>\n<param name=\"PrefDir.12\" value=\"0\"/>\n<param name=\"PrefDir.13\" value=\"0\"/>\n<param name=\"PrefDir.14\" value=\"0\"/>\n<param name=\"PrefDir.15\" value=\"0\"/>\n<param name=\"PrefDir.16\" value=\"-\"/>\n<param name=\"cfVia\" value=\"8\"/>\n<param name=\"cfNonPref\" value=\"5\"/>\n<param name=\"cfChangeDir\" value=\"2\"/>\n<param name=\"cfOrthStep\" value=\"2\"/>\n<param name=\"cfDiagStep\" value=\"3\"/>\n<param name=\"cfExtdStep\" value=\"0\"/>\n<param name=\"cfBonusStep\" value=\"1\"/>\n<param name=\"cfMalusStep\" value=\"1\"/>\n<param name=\"cfPadImpact\" value=\"4\"/>\n<param name=\"cfSmdImpact\" value=\"4\"/>\n<param name=\"cfBusImpact\" value=\"0\"/>\n<param name=\"cfHugging\" value=\"3\"/>\n<param name=\"cfAvoid\" value=\"4\"/>\n<param name=\"cfPolygon\" value=\"10\"/>\n<param name=\"cfBase.1\" value=\"0\"/>\n<param name=\"cfBase.2\" value=\"1\"/>\n<param name=\"cfBase.3\" value=\"1\"/>\n<param name=\"cfBase.4\" value=\"1\"/>\n<param name=\"cfBase.5\" value=\"1\"/>\n<param name=\"cfBase.6\" value=\"1\"/>\n<param name=\"cfBase.7\" value=\"1\"/>\n<param name=\"cfBase.8\" value=\"1\"/>\n<param name=\"cfBase.9\" value=\"1\"/>\n<param name=\"cfBase.10\" value=\"1\"/>\n<param name=\"cfBase.11\" value=\"1\"/>\n<param name=\"cfBase.12\" value=\"1\"/>\n<param name=\"cfBase.13\" value=\"1\"/>\n<param name=\"cfBase.14\" value=\"1\"/>\n<param name=\"cfBase.15\" value=\"1\"/>\n<param name=\"cfBase.16\" value=\"0\"/>\n<param name=\"mnVias\" value=\"20\"/>\n<param name=\"mnSegments\" value=\"9999\"/>\n<param name=\"mnExtdSteps\" value=\"9999\"/>\n<param name=\"mnRipupLevel\" value=\"10\"/>\n<param name=\"mnRipupSteps\" value=\"100\"/>\n<param name=\"mnRipupTotal\" value=\"100\"/>\n</pass>\n<pass name=\"Follow-me\" refer=\"Default\" active=\"yes\">\n<param name=\"cfVia\" value=\"88\"/>\n</pass>\n<pass name=\"Busses\" refer=\"Default\" active=\"yes\">\n<param name=\"cfNonPref\" value=\"4\"/>\n<param name=\"cfBusImpact\" value=\"4\"/>\n<param name=\"cfHugging\" value=\"0\"/>\n<param name=\"mnVias\" value=\"0\"/>\n</pass>\n<pass name=\"Route\" refer=\"Default\" active=\"yes\">\n</pass>\n</autorouter>\n<elements>\n<element name=\"U$1\" library=\"adafruit\" package=\"JD-T1800\" value=\"JD-T1800\" x=\"41.684\" y=\"39.938\" smashed=\"yes\"/>\n<element name=\"R6\" library=\"rcl\" package=\"R0402\" value=\"7.5\" x=\"60.5\" y=\"19.7\" smashed=\"yes\" rot=\"R270\">\n<attribute name=\"NAME\" x=\"56.965\" y=\"19.335\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"58.595\" y=\"20.335\" size=\"1.27\" layer=\"27\" rot=\"R270\"/>\n</element>\n<element name=\"J1\" library=\"10118194-0001LF\" package=\"FRAMATOME_10118194-0001LF\" value=\"10118194-0001LF\" x=\"12.044\" y=\"58.04\" smashed=\"yes\" rot=\"R270\">\n<attribute name=\"PACKAGE\" value=\"None\" x=\"12.044\" y=\"58.04\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"AVAILABILITY\" value=\"Good\" x=\"12.044\" y=\"58.04\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"MP\" value=\"10118194-0001LF\" x=\"12.044\" y=\"58.04\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"PRICE\" value=\"0.24 USD\" x=\"12.044\" y=\"58.04\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"DESCRIPTION\" value=\" Conn Micro USB Type B RCP 5 POS 0.65mm Solder RA SMD 5 Terminal 1 Port T/R \" x=\"12.044\" y=\"58.04\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"MF\" value=\"Amphenol\" x=\"12.044\" y=\"58.04\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"NAME\" x=\"16.142471875\" y=\"61.34763125\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"12.1440625\" y=\"52.136259375\" size=\"1.2708\" layer=\"27\"/>\n</element>\n<element name=\"U1\" library=\"MF_IC_Digital\" package=\"EFM8BB10F(2/4/8)G-A-QFN20\" value=\"EFM8BB10F2G-A-QFN20\" x=\"21.5\" y=\"39.7\" smashed=\"yes\" rot=\"R90\">\n<attribute name=\"HOUSEPART\" value=\"NO\" x=\"21.5\" y=\"39.7\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R90\" display=\"off\"/>\n<attribute name=\"MPN\" value=\"EFM8BB10F2G-A-QFN20\" x=\"21.5\" y=\"39.7\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R90\" display=\"off\"/>\n<attribute name=\"POPULATE\" value=\"1\" x=\"21.5\" y=\"39.7\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R90\" display=\"off\"/>\n<attribute name=\"URL\" value=\"http://www.silabs.com/products/mcu/8-bit/efm8-busy-bee/Pages/efm8-busy-bee.aspx\" x=\"21.5\" y=\"39.7\" size=\"0.08128125\" layer=\"27\" font=\"vector\" rot=\"R90\" display=\"off\"/>\n<attribute name=\"NAME\" x=\"19.675\" y=\"38.2\" size=\"1\" layer=\"25\" rot=\"R180\"/>\n</element>\n<element name=\"C3\" library=\"resistor\" package=\"C0402K\" value=\".1uF\" x=\"21\" y=\"50.5\" smashed=\"yes\" rot=\"R180\">\n<attribute name=\"NAME\" x=\"19.6\" y=\"50.875\" size=\"1\" layer=\"25\" rot=\"R180\"/>\n<attribute name=\"VALUE\" x=\"21.5\" y=\"51.95\" size=\"1.016\" layer=\"27\" rot=\"R180\"/>\n</element>\n<element name=\"C1\" library=\"resistor\" package=\"C0402K\" value=\".1uF\" x=\"21.1\" y=\"44.1\" smashed=\"yes\" rot=\"R180\">\n<attribute name=\"NAME\" x=\"19.7\" y=\"44.575\" size=\"1\" layer=\"25\" rot=\"R180\"/>\n<attribute name=\"VALUE\" x=\"21.6\" y=\"45.55\" size=\"1.016\" layer=\"27\" rot=\"R180\"/>\n</element>\n<element name=\"U2\" library=\"ftdichip\" package=\"QFN16\" value=\"FT230XQ\" x=\"21.4\" y=\"54.1\" smashed=\"yes\" rot=\"R180\">\n<attribute name=\"NAME\" x=\"26.15\" y=\"52.723\" size=\"1\" layer=\"25\" rot=\"R180\"/>\n<attribute name=\"VALUE\" x=\"23.55\" y=\"58.155\" size=\"1.27\" layer=\"27\" rot=\"R180\"/>\n</element>\n<element name=\"R1\" library=\"resistor\" package=\"R0402\" value=\"1K\" x=\"14.3\" y=\"26.7\" smashed=\"yes\" rot=\"R180\">\n<attribute name=\"NAME\" x=\"18.135\" y=\"27.238\" size=\"1\" layer=\"25\" rot=\"R180\"/>\n<attribute name=\"VALUE\" x=\"14.935\" y=\"28.732\" size=\"1.27\" layer=\"27\" rot=\"R180\"/>\n</element>\n<element name=\"R2\" library=\"resistor\" package=\"R0402\" value=\"1K21\" x=\"14.3\" y=\"24.7\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"16.365\" y=\"24.262\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"13.665\" y=\"22.668\" size=\"1.27\" layer=\"27\"/>\n</element>\n<element name=\"R5\" library=\"resistor\" package=\"R0402\" value=\"12K1\" x=\"13.4\" y=\"21.6\" smashed=\"yes\" rot=\"R90\">\n<attribute name=\"NAME\" x=\"14.035\" y=\"19.938\" size=\"1\" layer=\"25\" rot=\"R180\"/>\n<attribute name=\"VALUE\" x=\"15.432\" y=\"20.965\" size=\"1.27\" layer=\"27\" rot=\"R90\"/>\n</element>\n<element name=\"IC2\" library=\"burr-brown\" package=\"SOT223\" value=\"REG1117\" x=\"66.5\" y=\"21\" smashed=\"yes\" rot=\"R270\">\n<attribute name=\"OC_NEWARK\" value=\"14P6981\" x=\"66.5\" y=\"21\" size=\"1.778\" layer=\"27\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"MPN\" value=\"REG1117\" x=\"66.5\" y=\"21\" size=\"1.778\" layer=\"27\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"MF\" value=\"\" x=\"66.5\" y=\"21\" size=\"1.778\" layer=\"27\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"OC_FARNELL\" value=\"1097566\" x=\"66.5\" y=\"21\" size=\"1.778\" layer=\"27\" rot=\"R270\" display=\"off\"/>\n<attribute name=\"NAME\" x=\"68.76\" y=\"17.218\" size=\"1.27\" layer=\"25\" ratio=\"10\"/>\n<attribute name=\"VALUE\" x=\"60.658\" y=\"23.794\" size=\"1.27\" layer=\"27\" ratio=\"10\" rot=\"R270\"/>\n</element>\n<element name=\"U4\" library=\"ZXCT1110W5-7\" package=\"SOT95P280X130-5N\" value=\"ZXCT1110W5-7\" x=\"16.7\" y=\"21.9\" smashed=\"yes\">\n<attribute name=\"PACKAGE\" value=\"SOT-753 Diodes Inc.\" x=\"16.7\" y=\"21.9\" size=\"1.778\" layer=\"27\" display=\"off\"/>\n<attribute name=\"AVAILABILITY\" value=\"Good\" x=\"16.7\" y=\"21.9\" size=\"1.778\" layer=\"27\" display=\"off\"/>\n<attribute name=\"MP\" value=\"ZXCT1110W5-7\" x=\"16.7\" y=\"21.9\" size=\"1.778\" layer=\"27\" display=\"off\"/>\n<attribute name=\"PRICE\" value=\"0.57 USD\" x=\"16.7\" y=\"21.9\" size=\"1.778\" layer=\"27\" display=\"off\"/>\n<attribute name=\"DESCRIPTION\" value=\" Battery Management IC Automotive 5-Pin SOT-25 T/R \" x=\"16.7\" y=\"21.9\" size=\"1.778\" layer=\"27\" display=\"off\"/>\n<attribute name=\"MF\" value=\"Diodes Inc.\" x=\"16.7\" y=\"21.9\" size=\"1.778\" layer=\"27\" display=\"off\"/>\n<attribute name=\"NAME\" x=\"15.742259375\" y=\"18.84245\" size=\"1\" layer=\"25\" ratio=\"10\" rot=\"SR0\"/>\n<attribute name=\"VALUE\" x=\"13.24073125\" y=\"17.44871875\" size=\"2.085740625\" layer=\"27\" ratio=\"10\" rot=\"SR0\"/>\n</element>\n<element name=\"C5\" library=\"resistor\" package=\"C0402K\" value=\"10uF\" x=\"20.6\" y=\"60.8\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"22.1\" y=\"60.325\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"20.1\" y=\"59.35\" size=\"1.016\" layer=\"27\"/>\n</element>\n<element name=\"C4\" library=\"resistor\" package=\"C0402K\" value=\".1uF\" x=\"20.6\" y=\"59\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"22.1\" y=\"58.525\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"20.1\" y=\"57.55\" size=\"1.016\" layer=\"27\"/>\n</element>\n<element name=\"C2\" library=\"resistor\" package=\"C0402K\" value=\"1uF\" x=\"21\" y=\"48.5\" smashed=\"yes\" rot=\"R180\">\n<attribute name=\"NAME\" x=\"19.6\" y=\"48.875\" size=\"1\" layer=\"25\" rot=\"R180\"/>\n<attribute name=\"VALUE\" x=\"21.5\" y=\"49.95\" size=\"1.016\" layer=\"27\" rot=\"R180\"/>\n</element>\n<element name=\"TP1\" library=\"testpad\" package=\"B1,27\" value=\"PTR1B1,27\" x=\"22.21\" y=\"17.426\" rot=\"MR0\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" x=\"22.21\" y=\"17.426\" size=\"1.778\" layer=\"28\" rot=\"MR0\" display=\"off\"/>\n</element>\n<element name=\"TP2\" library=\"testpad\" package=\"B1,27\" value=\"PTR1B1,27\" x=\"19.68\" y=\"17.426\" rot=\"MR0\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" x=\"19.68\" y=\"17.426\" size=\"1.778\" layer=\"28\" rot=\"MR0\" display=\"off\"/>\n</element>\n<element name=\"TP3\" library=\"testpad\" package=\"B1,27\" value=\"PTR1B1,27\" x=\"17.138\" y=\"17.426\" rot=\"MR0\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" x=\"17.138\" y=\"17.426\" size=\"1.778\" layer=\"28\" rot=\"MR0\" display=\"off\"/>\n</element>\n<element name=\"TP4\" library=\"testpad\" package=\"B1,27\" value=\"PTR1B1,27\" x=\"14.607\" y=\"17.426\" rot=\"MR0\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" x=\"14.607\" y=\"17.426\" size=\"1.778\" layer=\"28\" rot=\"MR0\" display=\"off\"/>\n</element>\n<element name=\"R4\" library=\"rcl\" package=\"R0805\" value=\".1\" x=\"22\" y=\"20.5\" smashed=\"yes\" rot=\"R90\">\n<attribute name=\"NAME\" x=\"26.435\" y=\"20.83\" size=\"1\" layer=\"25\" rot=\"R180\"/>\n<attribute name=\"VALUE\" x=\"24.54\" y=\"19.865\" size=\"1.27\" layer=\"27\" rot=\"R90\"/>\n</element>\n<element name=\"C6\" library=\"resistor\" package=\"C0402K\" value=\".1uF\" x=\"60.5\" y=\"23.7\" smashed=\"yes\" rot=\"R90\">\n<attribute name=\"NAME\" x=\"56.9\" y=\"22.925\" size=\"1.016\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"61.95\" y=\"23.2\" size=\"1.016\" layer=\"27\" rot=\"R90\"/>\n</element>\n<element name=\"R3\" library=\"resistor\" package=\"R0402\" value=\"2K2\" x=\"22\" y=\"27.7\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"24.765\" y=\"27.262\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"21.365\" y=\"25.668\" size=\"1.27\" layer=\"27\"/>\n</element>\n<element name=\"R7\" library=\"resistor\" package=\"R0402\" value=\"4K3\" x=\"22\" y=\"25.6\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"24.765\" y=\"25.162\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"21.365\" y=\"23.568\" size=\"1.27\" layer=\"27\"/>\n</element>\n<element name=\"R8\" library=\"resistor\" package=\"R0402\" value=\"4K7\" x=\"22\" y=\"23.8\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"24.765\" y=\"23.462\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"21.365\" y=\"21.768\" size=\"1.27\" layer=\"27\"/>\n</element>\n<element name=\"R9\" library=\"resistor\" package=\"R0402\" value=\"2K2\" x=\"22\" y=\"34.7\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"24.765\" y=\"34.262\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"21.365\" y=\"32.668\" size=\"1.27\" layer=\"27\"/>\n</element>\n<element name=\"R10\" library=\"resistor\" package=\"R0402\" value=\"4K3\" x=\"22\" y=\"32.7\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"24.765\" y=\"32.262\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"21.365\" y=\"30.668\" size=\"1.27\" layer=\"27\"/>\n</element>\n<element name=\"R11\" library=\"resistor\" package=\"R0402\" value=\"4K7\" x=\"22\" y=\"30.7\" smashed=\"yes\">\n<attribute name=\"NAME\" x=\"24.765\" y=\"30.262\" size=\"1\" layer=\"25\"/>\n<attribute name=\"VALUE\" x=\"21.365\" y=\"28.668\" size=\"1.27\" layer=\"27\"/>\n</element>\n<element name=\"JP1\" library=\"pinhead\" package=\"1X04/90\" value=\"\" x=\"64.6\" y=\"57.2\" rot=\"R270\"/>\n<element name=\"JP2\" library=\"pinhead\" package=\"1X04/90\" value=\"\" x=\"64.6\" y=\"44.5\" rot=\"R270\"/>\n<element name=\"JP3\" library=\"pinhead\" package=\"1X04/90\" value=\"\" x=\"64.6\" y=\"31.8\" rot=\"R270\"/>\n</elements>\n<signals>\n<signal name=\"GND\">\n<contactref element=\"U$1\" pad=\"2\"/>\n<contactref element=\"U$1\" pad=\"13\"/>\n<contactref element=\"U$1\" pad=\"5\"/>\n<contactref element=\"R6\" pad=\"1\"/>\n<contactref element=\"C3\" pad=\"2\"/>\n<contactref element=\"C1\" pad=\"2\"/>\n<contactref element=\"C4\" pad=\"2\"/>\n<contactref element=\"C5\" pad=\"2\"/>\n<contactref element=\"C2\" pad=\"2\"/>\n<contactref element=\"U2\" pad=\"3\"/>\n<contactref element=\"TP2\" pad=\"TP\"/>\n<contactref element=\"R1\" pad=\"2\"/>\n<contactref element=\"IC2\" pad=\"1\"/>\n<contactref element=\"R5\" pad=\"2\"/>\n<contactref element=\"U4\" pad=\"2\"/>\n<contactref element=\"C6\" pad=\"2\"/>\n<contactref element=\"U1\" pad=\"P$3\"/>\n<contactref element=\"U1\" pad=\"P$12\"/>\n<contactref element=\"U1\" pad=\"PAD\"/>\n<contactref element=\"J1\" pad=\"5\"/>\n<polygon width=\"0.2\" layer=\"16\" isolate=\"0.3048\">\n<vertex x=\"10.7\" y=\"15.7\"/>\n<vertex x=\"72.3\" y=\"15.7\"/>\n<vertex x=\"10.6\" y=\"15.6\"/>\n</polygon>\n<contactref element=\"U2\" pad=\"13\"/>\n<wire x1=\"14.2\" y1=\"22.3\" x2=\"13.4\" y2=\"22.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"14.2\" y1=\"22\" x2=\"14.2\" y2=\"22.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"14.3\" y1=\"21.9\" x2=\"14.2\" y2=\"22\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15.4046\" y1=\"21.9\" x2=\"14.3\" y2=\"21.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"37.284\" y1=\"26.838\" x2=\"37.3\" y2=\"26.854\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"37.3\" y1=\"26.854\" x2=\"37.3\" y2=\"28.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"37.3\" y1=\"28.4\" x2=\"37.3\" y2=\"28.5\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"37.3\" y1=\"28.5\" x2=\"36.7\" y2=\"29.1\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"36.7\" y1=\"29.1\" x2=\"36.7\" y2=\"29.4\" width=\"0.4\" layer=\"1\"/>\n<via x=\"36.7\" y=\"29.4\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"36.7\" y1=\"29.4\" x2=\"37.7\" y2=\"30.4\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"37.7\" y1=\"30.4\" x2=\"37.7\" y2=\"31.4\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"43.684\" y1=\"26.838\" x2=\"43.7\" y2=\"26.854\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"43.7\" y1=\"26.854\" x2=\"43.7\" y2=\"29.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"46.084\" y1=\"26.838\" x2=\"46.1\" y2=\"26.854\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"46.1\" y1=\"26.854\" x2=\"46.1\" y2=\"29.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"46.1\" y1=\"29.8\" x2=\"44.9\" y2=\"31\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"43.7\" y1=\"29.8\" x2=\"44.9\" y2=\"31\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"44.9\" y1=\"31\" x2=\"44.9\" y2=\"31.6\" width=\"0.4\" layer=\"1\"/>\n<via x=\"44.9\" y=\"31.6\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"44.9\" y1=\"31.6\" x2=\"43.8\" y2=\"31.6\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"13.65\" y1=\"26.7\" x2=\"13.65\" y2=\"27.25\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"13.65\" y1=\"27.25\" x2=\"14.3\" y2=\"27.9\" width=\"0.2\" layer=\"1\"/>\n<via x=\"14.3\" y=\"27.9\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"14.3\" y1=\"27.9\" x2=\"14.3\" y2=\"28.2\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"14.3\" y1=\"28.2\" x2=\"14.4\" y2=\"28.3\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"12.9\" y1=\"25.7\" x2=\"12.8\" y2=\"25.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"13.7\" y1=\"25.7\" x2=\"12.9\" y2=\"25.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"13.7\" y1=\"26.7\" x2=\"13.7\" y2=\"25.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"13.7\" y1=\"26.7\" x2=\"13.65\" y2=\"26.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"12.8\" y1=\"22.3\" x2=\"12.8\" y2=\"25.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"13.4\" y1=\"22.3\" x2=\"12.8\" y2=\"22.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"13.4\" y1=\"22.3\" x2=\"13.4\" y2=\"22.25\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"39.7\" x2=\"21.5\" y2=\"39.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"38.4\" x2=\"21.3\" y2=\"39.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"38.4\" x2=\"21.25\" y2=\"38.345\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"38.3\" x2=\"21.3\" y2=\"36.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"38.3\" x2=\"21.25\" y2=\"38.345\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"36.7\" x2=\"21.8\" y2=\"36.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.8\" y1=\"36\" x2=\"22.1\" y2=\"36\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"21.8\" y1=\"36.2\" x2=\"21.8\" y2=\"36\" width=\"0.2\" layer=\"1\"/>\n<via x=\"21.8\" y=\"36\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"20.4\" y1=\"44.1\" x2=\"20.4\" y2=\"48.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.5\" y1=\"44.1\" x2=\"20.4\" y2=\"44.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"48.6\" x2=\"20.4\" y2=\"50.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.3\" y1=\"48.5\" x2=\"20.4\" y2=\"48.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"48.4\" x2=\"20.3\" y2=\"48.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"48.4\" x2=\"20.4\" y2=\"48.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.3\" y1=\"50.5\" x2=\"20.4\" y2=\"50.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"50.4\" x2=\"20.3\" y2=\"50.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"52.3\" x2=\"20.425\" y2=\"52.375\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"50.4\" x2=\"20.4\" y2=\"50.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.1\" y1=\"54.4\" x2=\"24.2\" y2=\"54.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.2\" y1=\"54.4\" x2=\"24.1\" y2=\"54.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.2\" y1=\"54.4\" x2=\"23.125\" y2=\"54.425\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.2\" y1=\"54.9\" x2=\"24.4\" y2=\"54.9\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"24.2\" y1=\"54.5\" x2=\"24.2\" y2=\"54.9\" width=\"0.2\" layer=\"1\"/>\n<via x=\"24.2\" y=\"54.9\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"21.2\" y1=\"60.8\" x2=\"21.2\" y2=\"59\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22\" y1=\"59\" x2=\"22\" y2=\"60\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.2\" y1=\"59\" x2=\"22\" y2=\"59\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22\" y1=\"60\" x2=\"22.7\" y2=\"60\" width=\"0.2\" layer=\"16\"/>\n<via x=\"22\" y=\"60\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"16.9\" y1=\"56.7\" x2=\"17.3\" y2=\"56.3\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"14.8\" y1=\"56.7\" x2=\"16.9\" y2=\"56.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"14.8\" y1=\"56.7\" x2=\"14.719\" y2=\"56.74\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"17.3\" y1=\"56.3\" x2=\"18.1\" y2=\"56.3\" width=\"0.4\" layer=\"16\"/>\n<via x=\"17.3\" y=\"56.3\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"60.5\" y1=\"24.3\" x2=\"60.5\" y2=\"24.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"63.3\" y1=\"23.3\" x2=\"63.3504\" y2=\"23.2606\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"61.9\" y1=\"23.3\" x2=\"61.9\" y2=\"24.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"61.9\" y1=\"24.4\" x2=\"61.9\" y2=\"25\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"62\" y1=\"25.2\" x2=\"62.8\" y2=\"25.2\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"62\" y1=\"25.1\" x2=\"62\" y2=\"25.2\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"62\" y1=\"25.1\" x2=\"61.9\" y2=\"25\" width=\"0.4\" layer=\"1\"/>\n<via x=\"62\" y=\"25.2\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"62.9\" y1=\"25.3\" x2=\"63\" y2=\"25.3\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"62.9\" y1=\"25.3\" x2=\"62.8\" y2=\"25.2\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"59.3\" y1=\"20.5\" x2=\"59.3\" y2=\"21.2\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"59.4\" y1=\"20.4\" x2=\"59.3\" y2=\"20.5\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"60.5\" y1=\"20.4\" x2=\"59.4\" y2=\"20.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"60.5\" y1=\"20.4\" x2=\"60.5\" y2=\"20.35\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"59.2\" y1=\"21.3\" x2=\"58.3\" y2=\"21.3\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"59.2\" y1=\"21.3\" x2=\"59.3\" y2=\"21.2\" width=\"0.4\" layer=\"1\"/>\n<via x=\"59.2\" y=\"21.3\" extent=\"1-16\" drill=\"0.3\"/>\n<polygon width=\"0.4\" layer=\"16\" isolate=\"0.2\">\n<vertex x=\"10.6\" y=\"15.7\"/>\n<vertex x=\"72.4\" y=\"15.7\"/>\n<vertex x=\"72.4\" y=\"64.2\"/>\n<vertex x=\"10.6\" y=\"64.2\"/>\n</polygon>\n<wire x1=\"20.5\" y1=\"52.3\" x2=\"20.4\" y2=\"52.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"52.3\" x2=\"20.4\" y2=\"50.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.7\" y1=\"50.5\" x2=\"19.7\" y2=\"51.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.3\" y1=\"50.5\" x2=\"19.7\" y2=\"50.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.3\" y1=\"50.5\" x2=\"20.4\" y2=\"50.5\" width=\"0.2\" layer=\"1\"/>\n<via x=\"19.7\" y=\"51.3\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"19.7\" y1=\"51.3\" x2=\"19.4\" y2=\"51.3\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"19.4\" y1=\"51.3\" x2=\"19.3\" y2=\"51.4\" width=\"0.2\" layer=\"16\"/>\n<contactref element=\"U$1\" pad=\"12\"/>\n<wire x1=\"22\" y1=\"39.7\" x2=\"21.5\" y2=\"39.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22\" y1=\"40.5\" x2=\"22\" y2=\"39.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.3\" y1=\"40.8\" x2=\"22\" y2=\"40.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.3\" y1=\"41\" x2=\"22.3\" y2=\"40.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.3\" y1=\"41\" x2=\"22.25\" y2=\"41.055\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"38.1\" y1=\"28.3\" x2=\"38\" y2=\"28.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"38.1\" y1=\"26.9\" x2=\"38.1\" y2=\"28.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"38.1\" y1=\"26.9\" x2=\"38.084\" y2=\"26.838\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"37.3\" y1=\"28.4\" x2=\"38\" y2=\"28.4\" width=\"0.2\" layer=\"1\"/>\n<contactref element=\"JP1\" pad=\"1\"/>\n<contactref element=\"JP3\" pad=\"1\"/>\n<contactref element=\"JP2\" pad=\"1\"/>\n<wire x1=\"63.3\" y1=\"23.3\" x2=\"61.9\" y2=\"23.3\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"60.5\" y1=\"24.4\" x2=\"61.9\" y2=\"24.4\" width=\"0.4\" layer=\"1\"/>\n</signal>\n<signal name=\"N$4\">\n<contactref element=\"U$1\" pad=\"3\"/>\n<contactref element=\"R6\" pad=\"2\"/>\n<wire x1=\"45.3\" y1=\"26.9\" x2=\"45.284\" y2=\"26.838\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"45.7\" y1=\"25.4\" x2=\"45.7\" y2=\"23.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"45.3\" y1=\"25.8\" x2=\"45.7\" y2=\"25.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"45.3\" y1=\"26.8\" x2=\"45.3\" y2=\"25.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"45.3\" y1=\"26.8\" x2=\"45.284\" y2=\"26.838\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"50.3\" y1=\"19.1\" x2=\"45.7\" y2=\"23.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"60.5\" y1=\"19.1\" x2=\"50.3\" y2=\"19.1\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"60.5\" y1=\"19.1\" x2=\"60.5\" y2=\"19.05\" width=\"0.4\" layer=\"1\"/>\n</signal>\n<signal name=\"3V3\">\n<contactref element=\"U1\" pad=\"P$4\"/>\n<contactref element=\"C3\" pad=\"1\"/>\n<contactref element=\"C1\" pad=\"1\"/>\n<contactref element=\"U$1\" pad=\"4\"/>\n<contactref element=\"C2\" pad=\"1\"/>\n<contactref element=\"U2\" pad=\"8\"/>\n<contactref element=\"U2\" pad=\"1\"/>\n<contactref element=\"TP1\" pad=\"TP\"/>\n<contactref element=\"U$1\" pad=\"10\"/>\n<contactref element=\"U$1\" pad=\"11\"/>\n<wire x1=\"38.9\" y1=\"26.8\" x2=\"38.884\" y2=\"26.838\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"38.9\" y1=\"24\" x2=\"38.3\" y2=\"23.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"38.9\" y1=\"26.7\" x2=\"38.9\" y2=\"24\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"38.9\" y1=\"26.7\" x2=\"38.884\" y2=\"26.838\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"39.684\" y1=\"26.838\" x2=\"39.684\" y2=\"23.884\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"39.684\" y1=\"23.884\" x2=\"39.2\" y2=\"23.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"44.484\" y1=\"26.838\" x2=\"44.484\" y2=\"23.784\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"44.484\" y1=\"23.784\" x2=\"44.1\" y2=\"23.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"44.1\" y1=\"23.4\" x2=\"39.2\" y2=\"23.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"22.3\" y1=\"17.4\" x2=\"22.21\" y2=\"17.426\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"21.8\" y1=\"38.3\" x2=\"21.75\" y2=\"38.345\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.2\" y1=\"36.8\" x2=\"25.5\" y2=\"36.8\" width=\"0.4\" layer=\"16\"/>\n<via x=\"22.2\" y=\"36.8\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"25.5\" y1=\"36.8\" x2=\"25.5\" y2=\"45\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"25.5\" y1=\"45\" x2=\"25.5\" y2=\"49.4\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"25.5\" y1=\"49.4\" x2=\"25.5\" y2=\"51.8\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"25.5\" y1=\"51.8\" x2=\"25.5\" y2=\"57.8\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"23.2\" y1=\"53.1\" x2=\"23.125\" y2=\"53.125\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.6\" y1=\"50.5\" x2=\"21.6\" y2=\"49.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.6\" y1=\"49.4\" x2=\"21.6\" y2=\"48.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.6\" y1=\"49.4\" x2=\"25.5\" y2=\"49.4\" width=\"0.4\" layer=\"16\"/>\n<via x=\"21.6\" y=\"49.4\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"22.1\" y1=\"45\" x2=\"25.5\" y2=\"45\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"22.1\" y1=\"44.1\" x2=\"22.1\" y2=\"45\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.7\" y1=\"44.1\" x2=\"22.1\" y2=\"44.1\" width=\"0.2\" layer=\"1\"/>\n<via x=\"22.1\" y=\"45\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"23.7\" y1=\"53.1\" x2=\"23.7\" y2=\"51.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.3\" y1=\"53.1\" x2=\"23.7\" y2=\"53.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.3\" y1=\"53.1\" x2=\"23.125\" y2=\"53.125\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.7\" y1=\"51.8\" x2=\"23.7\" y2=\"51.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"25.5\" y1=\"51.8\" x2=\"23.7\" y2=\"51.8\" width=\"0.4\" layer=\"16\"/>\n<via x=\"23.7\" y=\"51.8\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"20.4\" y1=\"56.8\" x2=\"20.8\" y2=\"57.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"55.9\" x2=\"20.4\" y2=\"56.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"55.9\" x2=\"20.425\" y2=\"55.825\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.8\" y1=\"57.3\" x2=\"20.8\" y2=\"57.2\" width=\"0.2\" layer=\"1\"/>\n<via x=\"20.8\" y=\"57.3\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"39.2\" y1=\"23.4\" x2=\"38.3\" y2=\"23.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"29.8\" y1=\"36.8\" x2=\"25.5\" y2=\"36.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"35.6\" y1=\"31\" x2=\"29.8\" y2=\"36.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"35.6\" y1=\"25.9\" x2=\"35.6\" y2=\"31\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"38.2\" y1=\"23.3\" x2=\"35.6\" y2=\"25.9\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"38.2\" y1=\"23.3\" x2=\"38.3\" y2=\"23.4\" width=\"0.4\" layer=\"1\"/>\n<via x=\"25.5\" y=\"36.8\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"22.8\" y1=\"17.4\" x2=\"24.5\" y2=\"19.1\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"22.5\" y1=\"17.4\" x2=\"22.8\" y2=\"17.4\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"22.5\" y1=\"17.4\" x2=\"22.21\" y2=\"17.426\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"38.1\" y1=\"19.1\" x2=\"24.5\" y2=\"19.1\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"38.1\" y1=\"23.2\" x2=\"38.1\" y2=\"19.1\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"38.1\" y1=\"23.2\" x2=\"38.2\" y2=\"23.3\" width=\"0.4\" layer=\"1\"/>\n<via x=\"38.1\" y=\"19.1\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"20.8\" y1=\"57.3\" x2=\"21.4\" y2=\"57.9\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"21.4\" y1=\"57.9\" x2=\"25.4\" y2=\"57.9\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"25.4\" y1=\"57.9\" x2=\"25.5\" y2=\"57.8\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"21.8\" y1=\"37.2\" x2=\"22.2\" y2=\"36.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.8\" y1=\"38.2\" x2=\"21.8\" y2=\"37.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.8\" y1=\"38.2\" x2=\"21.75\" y2=\"38.345\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"5V\">\n<contactref element=\"C5\" pad=\"1\"/>\n<contactref element=\"C4\" pad=\"1\"/>\n<contactref element=\"U2\" pad=\"10\"/>\n<contactref element=\"R2\" pad=\"1\"/>\n<contactref element=\"U4\" pad=\"4\"/>\n<contactref element=\"R4\" pad=\"1\"/>\n<contactref element=\"J1\" pad=\"1\"/>\n<wire x1=\"18\" y1=\"21\" x2=\"17.9954\" y2=\"20.9602\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"18.6\" y1=\"21\" x2=\"18.6\" y2=\"19.9\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"18.1\" y1=\"21\" x2=\"18.6\" y2=\"21\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"18.1\" y1=\"21\" x2=\"17.9954\" y2=\"20.9602\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"18.9\" y1=\"19.6\" x2=\"18.6\" y2=\"19.9\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"22\" y1=\"19.6\" x2=\"18.9\" y2=\"19.6\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"22\" y1=\"19.6\" x2=\"22\" y2=\"19.55\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"16.6\" y1=\"21.1\" x2=\"16.6\" y2=\"23.5\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"16.7\" y1=\"21\" x2=\"16.6\" y2=\"21.1\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"17.8\" y1=\"21\" x2=\"16.7\" y2=\"21\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"17.8\" y1=\"21\" x2=\"17.9954\" y2=\"20.9602\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"16.4\" y1=\"23.7\" x2=\"16.6\" y2=\"23.5\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"13.7\" y1=\"23.7\" x2=\"16.2\" y2=\"23.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"16.2\" y1=\"23.7\" x2=\"16.4\" y2=\"23.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"13.7\" y1=\"24.7\" x2=\"13.7\" y2=\"23.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"13.7\" y1=\"24.7\" x2=\"13.65\" y2=\"24.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"14.8\" y1=\"59.3\" x2=\"17.2\" y2=\"59.3\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"14.8\" y1=\"59.3\" x2=\"14.719\" y2=\"59.34\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"17.5\" y1=\"59\" x2=\"17.2\" y2=\"59.3\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"20\" y1=\"59\" x2=\"17.5\" y2=\"59\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"20\" y1=\"59\" x2=\"20\" y2=\"60.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"16.2\" y1=\"23.7\" x2=\"16.2\" y2=\"28.4\" width=\"0.4\" layer=\"1\"/>\n<via x=\"16.2\" y=\"28.4\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"16.2\" y1=\"28.4\" x2=\"16.2\" y2=\"54.4\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"16.2\" y1=\"54.4\" x2=\"16.2\" y2=\"59.2\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"16.2\" y1=\"59.2\" x2=\"17.1\" y2=\"60.1\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"17.2\" y1=\"59.3\" x2=\"17.2\" y2=\"60\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"17.2\" y1=\"60\" x2=\"17.1\" y2=\"60.1\" width=\"0.4\" layer=\"1\"/>\n<via x=\"17.1\" y=\"60.1\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"19.675\" y1=\"54.425\" x2=\"16.225\" y2=\"54.425\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"16.225\" y1=\"54.425\" x2=\"16.2\" y2=\"54.4\" width=\"0.4\" layer=\"1\"/>\n<via x=\"16.2\" y=\"54.4\" extent=\"1-16\" drill=\"0.3\"/>\n</signal>\n<signal name=\"TXD\">\n<contactref element=\"U2\" pad=\"15\"/>\n<contactref element=\"U1\" pad=\"P$17\"/>\n<wire x1=\"18.4\" y1=\"40.6\" x2=\"18.1\" y2=\"40.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"18.9\" y1=\"40.6\" x2=\"18.4\" y2=\"40.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19\" y1=\"40.5\" x2=\"18.9\" y2=\"40.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"40.5\" x2=\"19\" y2=\"40.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"40.5\" x2=\"20.145\" y2=\"40.45\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"18.1\" y1=\"40.4\" x2=\"18.1\" y2=\"40.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.6\" y1=\"42.9\" x2=\"18.1\" y2=\"40.4\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"22.7\" y1=\"42.9\" x2=\"20.6\" y2=\"42.9\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"22.7\" y1=\"50.6\" x2=\"22.7\" y2=\"42.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.7\" y1=\"51.6\" x2=\"22.7\" y2=\"50.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.7\" y1=\"52.3\" x2=\"21.7\" y2=\"51.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.7\" y1=\"52.3\" x2=\"21.725\" y2=\"52.375\" width=\"0.2\" layer=\"1\"/>\n<via x=\"18.1\" y=\"40.4\" extent=\"1-16\" drill=\"0.3\"/>\n<via x=\"22.7\" y=\"42.9\" extent=\"1-16\" drill=\"0.3\"/>\n</signal>\n<signal name=\"RXD\">\n<contactref element=\"U2\" pad=\"2\"/>\n<contactref element=\"U1\" pad=\"P$18\"/>\n<wire x1=\"18.7\" y1=\"39.8\" x2=\"17.9\" y2=\"39.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"18.7\" y1=\"39.9\" x2=\"18.7\" y2=\"39.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"18.8\" y1=\"40\" x2=\"18.7\" y2=\"39.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"40\" x2=\"18.8\" y2=\"40\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"40\" x2=\"20.145\" y2=\"39.95\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"17.3\" y1=\"40.4\" x2=\"17.9\" y2=\"39.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"17.9\" y1=\"41\" x2=\"17.3\" y2=\"40.4\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"18.2\" y1=\"41\" x2=\"17.9\" y2=\"41\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"20.5\" y1=\"43.3\" x2=\"18.2\" y2=\"41\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"22.3\" y1=\"43.3\" x2=\"20.5\" y2=\"43.3\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"22.5\" y1=\"43.5\" x2=\"22.3\" y2=\"43.3\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"23.3\" y1=\"43.5\" x2=\"22.5\" y2=\"43.5\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"23.2\" y1=\"53.8\" x2=\"23.125\" y2=\"53.775\" width=\"0.2\" layer=\"1\"/>\n<via x=\"17.3\" y=\"40.4\" extent=\"1-16\" drill=\"0.3\"/>\n<via x=\"23.3\" y=\"43.5\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"24.3\" y1=\"52\" x2=\"24.3\" y2=\"51.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.1\" y1=\"52.2\" x2=\"24.3\" y2=\"52\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.1\" y1=\"53.7\" x2=\"24.1\" y2=\"52.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24\" y1=\"53.8\" x2=\"24.1\" y2=\"53.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.3\" y1=\"53.8\" x2=\"24\" y2=\"53.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.3\" y1=\"53.8\" x2=\"23.125\" y2=\"53.775\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.1\" y1=\"50.3\" x2=\"24.3\" y2=\"51.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.1\" y1=\"43.7\" x2=\"23.1\" y2=\"50.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.1\" y1=\"43.7\" x2=\"23.3\" y2=\"43.5\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"N$19\">\n<contactref element=\"U2\" pad=\"6\"/>\n<contactref element=\"J1\" pad=\"3\"/>\n<wire x1=\"21.8\" y1=\"56.7\" x2=\"19.2\" y2=\"56.7\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"21.7\" y1=\"56.7\" x2=\"21.8\" y2=\"56.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.7\" y1=\"55.9\" x2=\"21.7\" y2=\"56.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.7\" y1=\"55.9\" x2=\"21.725\" y2=\"55.825\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"18.3\" y1=\"57.6\" x2=\"19.2\" y2=\"56.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"16.1\" y1=\"57.6\" x2=\"18.3\" y2=\"57.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15.7\" y1=\"58\" x2=\"16.1\" y2=\"57.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"14.8\" y1=\"58\" x2=\"15.7\" y2=\"58\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"14.8\" y1=\"58\" x2=\"14.719\" y2=\"58.04\" width=\"0.2\" layer=\"1\"/>\n<via x=\"19.2\" y=\"56.7\" extent=\"1-16\" drill=\"0.3\"/>\n<via x=\"21.8\" y=\"56.7\" extent=\"1-16\" drill=\"0.3\"/>\n</signal>\n<signal name=\"N$20\">\n<contactref element=\"U2\" pad=\"7\"/>\n<contactref element=\"J1\" pad=\"2\"/>\n<wire x1=\"21.1\" y1=\"56.8\" x2=\"21.1\" y2=\"55.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"57.1\" x2=\"21.1\" y2=\"56.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"57.5\" x2=\"21.4\" y2=\"57.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.9\" y1=\"58\" x2=\"21.4\" y2=\"57.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"16.2\" y1=\"58\" x2=\"20.9\" y2=\"58\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15.5\" y1=\"58.7\" x2=\"16.2\" y2=\"58\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"14.8\" y1=\"58.7\" x2=\"15.5\" y2=\"58.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.1\" y1=\"55.9\" x2=\"21.075\" y2=\"55.825\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"14.8\" y1=\"58.7\" x2=\"14.719\" y2=\"58.69\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"C2D\">\n<contactref element=\"TP3\" pad=\"TP\"/>\n<contactref element=\"U1\" pad=\"P$6\"/>\n<contactref element=\"R8\" pad=\"1\"/>\n<wire x1=\"23.5\" y1=\"30.1\" x2=\"23\" y2=\"29.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.5\" y1=\"38.2\" x2=\"23.5\" y2=\"30.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.3\" y1=\"38.4\" x2=\"23.5\" y2=\"38.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.8\" y1=\"38.4\" x2=\"23.3\" y2=\"38.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.8\" y1=\"38.4\" x2=\"22.765\" y2=\"38.435\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"25.6\" x2=\"20.25\" y2=\"25.45\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.25\" y1=\"25.45\" x2=\"21.4\" y2=\"24.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"28.5\" x2=\"20.1\" y2=\"25.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.2\" y1=\"29.6\" x2=\"20.1\" y2=\"28.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23\" y1=\"29.6\" x2=\"21.2\" y2=\"29.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"23.8\" x2=\"21.4\" y2=\"24.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"23.8\" x2=\"21.35\" y2=\"23.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"18.2\" y1=\"24.5\" x2=\"19.1\" y2=\"25.4\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"18.2\" y1=\"17.4\" x2=\"18.2\" y2=\"24.5\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"17.2\" y1=\"17.4\" x2=\"18.2\" y2=\"17.4\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"17.2\" y1=\"17.4\" x2=\"17.138\" y2=\"17.426\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"20.2\" y1=\"25.4\" x2=\"19.1\" y2=\"25.4\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"20.2\" y1=\"25.4\" x2=\"20.25\" y2=\"25.45\" width=\"0.2\" layer=\"1\"/>\n<via x=\"20.2\" y=\"25.4\" extent=\"1-16\" drill=\"0.3\"/>\n</signal>\n<signal name=\"C2CK\">\n<contactref element=\"TP4\" pad=\"TP\"/>\n<contactref element=\"U1\" pad=\"P$5\"/>\n<wire x1=\"22\" y1=\"28.8\" x2=\"17.8\" y2=\"24.6\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"22\" y1=\"33.9\" x2=\"22\" y2=\"28.8\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"22\" y1=\"35.3\" x2=\"22\" y2=\"33.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.3\" y1=\"38.3\" x2=\"22.25\" y2=\"38.345\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"17.8\" y1=\"18.6\" x2=\"17.8\" y2=\"24.6\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"17.2\" y1=\"18.6\" x2=\"17.8\" y2=\"18.6\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"16.9\" y1=\"18.3\" x2=\"17.2\" y2=\"18.6\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"16.7\" y1=\"18.3\" x2=\"16.9\" y2=\"18.3\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"15.8\" y1=\"17.4\" x2=\"16.7\" y2=\"18.3\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"14.7\" y1=\"17.4\" x2=\"15.8\" y2=\"17.4\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"14.7\" y1=\"17.4\" x2=\"14.607\" y2=\"17.426\" width=\"0.2\" layer=\"16\"/>\n<via x=\"22\" y=\"33.9\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"22.5\" y1=\"37.5\" x2=\"22.8\" y2=\"37.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.5\" y1=\"38\" x2=\"22.5\" y2=\"37.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.3\" y1=\"38.2\" x2=\"22.5\" y2=\"38\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.3\" y1=\"38.2\" x2=\"22.25\" y2=\"38.345\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.8\" y1=\"37.2\" x2=\"22.8\" y2=\"36.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.8\" y1=\"36.1\" x2=\"22\" y2=\"35.3\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"A.V\">\n<contactref element=\"R1\" pad=\"1\"/>\n<contactref element=\"R2\" pad=\"2\"/>\n<contactref element=\"U1\" pad=\"P$16\"/>\n<wire x1=\"20.2\" y1=\"41\" x2=\"17\" y2=\"41\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.2\" y1=\"41\" x2=\"20.235\" y2=\"40.965\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15\" y1=\"26.7\" x2=\"15\" y2=\"24.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15\" y1=\"24.7\" x2=\"14.95\" y2=\"24.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"16.7\" y1=\"29.2\" x2=\"16.6\" y2=\"29.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"16.7\" y1=\"40.7\" x2=\"16.7\" y2=\"29.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"17\" y1=\"41\" x2=\"16.7\" y2=\"40.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15\" y1=\"29.1\" x2=\"16.6\" y2=\"29.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15\" y1=\"26.7\" x2=\"15\" y2=\"29.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15\" y1=\"26.7\" x2=\"14.95\" y2=\"26.7\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"5VB\">\n<contactref element=\"U4\" pad=\"5\"/>\n<contactref element=\"R4\" pad=\"2\"/>\n<contactref element=\"IC2\" pad=\"3\"/>\n<wire x1=\"19.4\" y1=\"21.5\" x2=\"22\" y2=\"21.5\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"19.4\" y1=\"22.7\" x2=\"19.4\" y2=\"21.5\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"19.3\" y1=\"22.8\" x2=\"19.4\" y2=\"22.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"18\" y1=\"22.8\" x2=\"19.3\" y2=\"22.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"22\" y1=\"21.5\" x2=\"22\" y2=\"21.45\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"18\" y1=\"22.8\" x2=\"17.9954\" y2=\"22.8398\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"23.4\" y1=\"16.8\" x2=\"23.6\" y2=\"16.6\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"23.4\" y1=\"21.4\" x2=\"23.4\" y2=\"16.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"23.3\" y1=\"21.5\" x2=\"23.4\" y2=\"21.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"22.1\" y1=\"21.5\" x2=\"23.3\" y2=\"21.5\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"22.1\" y1=\"21.5\" x2=\"22\" y2=\"21.45\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"63.1\" y1=\"16.6\" x2=\"23.6\" y2=\"16.6\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"63.3\" y1=\"16.8\" x2=\"63.1\" y2=\"16.6\" width=\"0.4\" layer=\"16\"/>\n<wire x1=\"63.3\" y1=\"18.6\" x2=\"63.3\" y2=\"16.8\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"63.3\" y1=\"18.6\" x2=\"63.3504\" y2=\"18.6886\" width=\"0.4\" layer=\"1\"/>\n<via x=\"23.4\" y=\"16.8\" extent=\"1-16\" drill=\"0.3\"/>\n<via x=\"63.3\" y=\"16.8\" extent=\"1-16\" drill=\"0.3\"/>\n</signal>\n<signal name=\"3V3B\">\n<contactref element=\"IC2\" pad=\"2\"/>\n<contactref element=\"C6\" pad=\"1\"/>\n<contactref element=\"JP1\" pad=\"2\"/>\n<contactref element=\"JP3\" pad=\"2\"/>\n<contactref element=\"JP2\" pad=\"2\"/>\n<wire x1=\"60.79\" y1=\"58.47\" x2=\"63.53\" y2=\"58.47\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"63.53\" y1=\"58.47\" x2=\"64.4\" y2=\"57.6\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"64.4\" y1=\"57.6\" x2=\"64.4\" y2=\"45.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"64.4\" y1=\"45.7\" x2=\"64.4\" y2=\"33.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"64.4\" y1=\"33.4\" x2=\"64.4\" y2=\"25.9\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"64.4\" y1=\"25.9\" x2=\"65.6\" y2=\"24.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"65.6\" y1=\"24.7\" x2=\"65.6\" y2=\"21.3\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"65.6\" y1=\"21.3\" x2=\"65.5\" y2=\"21.3\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"65.5\" y1=\"21.3\" x2=\"65.1\" y2=\"20.9\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"65.1\" y1=\"20.9\" x2=\"63.425\" y2=\"20.9\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"63.425\" y1=\"20.9\" x2=\"63.3504\" y2=\"20.9746\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"60.79\" y1=\"45.77\" x2=\"64.33\" y2=\"45.77\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"64.33\" y1=\"45.77\" x2=\"64.4\" y2=\"45.7\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"60.79\" y1=\"33.07\" x2=\"64.07\" y2=\"33.07\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"64.07\" y1=\"33.07\" x2=\"64.4\" y2=\"33.4\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"63.3504\" y1=\"20.9746\" x2=\"62.1254\" y2=\"20.9746\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"62.1254\" y1=\"20.9746\" x2=\"60.5\" y2=\"22.6\" width=\"0.4\" layer=\"1\"/>\n<wire x1=\"60.5\" y1=\"23.1\" x2=\"60.5\" y2=\"22.6\" width=\"0.4\" layer=\"1\"/>\n</signal>\n<signal name=\"A.C\">\n<contactref element=\"U4\" pad=\"3\"/>\n<contactref element=\"R5\" pad=\"1\"/>\n<contactref element=\"U1\" pad=\"P$15\"/>\n<wire x1=\"19.8\" y1=\"41.6\" x2=\"19.6\" y2=\"41.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.8\" y1=\"41.6\" x2=\"19.8\" y2=\"41.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.8\" y1=\"41.1\" x2=\"20.8\" y2=\"41.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.8\" y1=\"41.1\" x2=\"20.75\" y2=\"41.055\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"12.4\" y1=\"21.1\" x2=\"12.4\" y2=\"28.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"12.5\" y1=\"21\" x2=\"12.4\" y2=\"21.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"13.4\" y1=\"21\" x2=\"12.5\" y2=\"21\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15.4\" y1=\"21\" x2=\"13.4\" y2=\"21\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"13.4\" y1=\"21\" x2=\"13.4\" y2=\"20.95\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"15.4\" y1=\"21\" x2=\"15.4046\" y2=\"20.9602\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"12.4\" y1=\"28.6\" x2=\"14.6\" y2=\"28.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"14.6\" y1=\"29.2\" x2=\"14.6\" y2=\"28.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"14.9\" y1=\"29.5\" x2=\"14.6\" y2=\"29.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"16.3\" y1=\"29.5\" x2=\"14.9\" y2=\"29.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"16.3\" y1=\"40.8\" x2=\"16.3\" y2=\"29.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"16.3\" y1=\"40.8\" x2=\"16.9\" y2=\"41.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.6\" y1=\"41.4\" x2=\"16.9\" y2=\"41.4\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"CLOCK\">\n<contactref element=\"U$1\" pad=\"9\"/>\n<contactref element=\"U1\" pad=\"P$11\"/>\n<wire x1=\"24\" y1=\"40.9\" x2=\"26.9\" y2=\"40.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.9\" y1=\"41\" x2=\"24\" y2=\"40.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.8\" y1=\"41\" x2=\"23.9\" y2=\"41\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.8\" y1=\"41\" x2=\"22.765\" y2=\"40.965\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"39.5\" y1=\"28.3\" x2=\"26.9\" y2=\"40.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"40.5\" y1=\"28.3\" x2=\"39.5\" y2=\"28.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"40.5\" y1=\"26.9\" x2=\"40.5\" y2=\"28.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"40.5\" y1=\"26.9\" x2=\"40.484\" y2=\"26.838\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"DATA\">\n<contactref element=\"U$1\" pad=\"8\"/>\n<contactref element=\"U1\" pad=\"P$13\"/>\n<wire x1=\"24.1\" y1=\"41.3\" x2=\"27\" y2=\"41.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24\" y1=\"41.4\" x2=\"24.1\" y2=\"41.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.4\" y1=\"41.4\" x2=\"24\" y2=\"41.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"41.9\" x2=\"23.4\" y2=\"41.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.1\" y1=\"41.9\" x2=\"22.9\" y2=\"41.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.1\" y1=\"41.7\" x2=\"22.1\" y2=\"41.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.8\" y1=\"41.4\" x2=\"22.1\" y2=\"41.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.8\" y1=\"41.1\" x2=\"21.8\" y2=\"41.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.8\" y1=\"41.1\" x2=\"21.75\" y2=\"41.055\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"39.6\" y1=\"28.7\" x2=\"27\" y2=\"41.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"41.3\" y1=\"28.7\" x2=\"39.6\" y2=\"28.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"41.3\" y1=\"26.9\" x2=\"41.3\" y2=\"28.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"41.3\" y1=\"26.9\" x2=\"41.284\" y2=\"26.838\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"RS/DC\">\n<contactref element=\"U$1\" pad=\"7\"/>\n<contactref element=\"U1\" pad=\"P$14\"/>\n<wire x1=\"24.1\" y1=\"41.8\" x2=\"24.2\" y2=\"41.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.5\" y1=\"41.8\" x2=\"24.1\" y2=\"41.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23\" y1=\"42.3\" x2=\"23.5\" y2=\"41.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"42.3\" x2=\"23\" y2=\"42.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"41.1\" x2=\"21.3\" y2=\"42.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"41.1\" x2=\"21.25\" y2=\"41.055\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"27.1\" y1=\"41.7\" x2=\"24.2\" y2=\"41.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"39.7\" y1=\"29.1\" x2=\"27.1\" y2=\"41.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"41.7\" y1=\"29.1\" x2=\"39.7\" y2=\"29.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"41.7\" y1=\"28.5\" x2=\"41.7\" y2=\"29.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"42.1\" y1=\"28.1\" x2=\"41.7\" y2=\"28.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"42.1\" y1=\"26.9\" x2=\"42.1\" y2=\"28.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"42.1\" y1=\"26.9\" x2=\"42.084\" y2=\"26.838\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"SCL\">\n<contactref element=\"U1\" pad=\"P$9\"/>\n<contactref element=\"R8\" pad=\"2\"/>\n<contactref element=\"R3\" pad=\"2\"/>\n<contactref element=\"R7\" pad=\"2\"/>\n<wire x1=\"22.65\" y1=\"27.7\" x2=\"22.65\" y2=\"25.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.65\" y1=\"25.6\" x2=\"22.65\" y2=\"23.8\" width=\"0.2\" layer=\"1\"/>\n<contactref element=\"JP1\" pad=\"4\"/>\n<contactref element=\"JP3\" pad=\"4\"/>\n<contactref element=\"JP2\" pad=\"4\"/>\n<wire x1=\"22.7\" y1=\"28.3\" x2=\"22.7\" y2=\"27.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.8\" y1=\"28.4\" x2=\"22.7\" y2=\"28.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.3\" y1=\"28.4\" x2=\"22.8\" y2=\"28.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.7\" y1=\"29.8\" x2=\"23.3\" y2=\"28.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.7\" y1=\"39.5\" x2=\"24.7\" y2=\"38.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.7\" y1=\"38.9\" x2=\"24.7\" y2=\"29.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.2\" y1=\"40\" x2=\"24.7\" y2=\"39.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"40\" x2=\"24.2\" y2=\"40\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"27.7\" x2=\"22.65\" y2=\"27.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"40\" x2=\"22.855\" y2=\"39.95\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.7\" y1=\"38.9\" x2=\"26.9\" y2=\"38.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"59.6\" y1=\"40.7\" x2=\"60.7\" y2=\"40.7\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"59.5\" y1=\"40.6\" x2=\"59.6\" y2=\"40.7\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"26.9\" y1=\"39.6\" x2=\"58.5\" y2=\"39.6\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"26.9\" y1=\"38.9\" x2=\"26.9\" y2=\"39.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"60.7\" y1=\"40.7\" x2=\"60.79\" y2=\"40.69\" width=\"0.2\" layer=\"16\"/>\n<via x=\"26.9\" y=\"39.6\" extent=\"1-16\" drill=\"0.3\"/>\n<wire x1=\"60.79\" y1=\"27.99\" x2=\"62.59\" y2=\"27.99\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"62.59\" y1=\"27.99\" x2=\"63.4\" y2=\"28.8\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"63.4\" y1=\"28.8\" x2=\"63.4\" y2=\"40.6\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"63.4\" y1=\"40.6\" x2=\"63.4\" y2=\"52.8\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"60.79\" y1=\"53.39\" x2=\"62.81\" y2=\"53.39\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"62.81\" y1=\"53.39\" x2=\"63.4\" y2=\"52.8\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"58.5\" y1=\"39.6\" x2=\"59.5\" y2=\"40.6\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"59.5\" y1=\"40.6\" x2=\"63.4\" y2=\"40.6\" width=\"0.2\" layer=\"16\"/>\n</signal>\n<signal name=\"N$2\">\n<contactref element=\"U1\" pad=\"P$7\"/>\n<contactref element=\"R7\" pad=\"1\"/>\n<wire x1=\"23.9\" y1=\"30\" x2=\"23.1\" y2=\"29.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.9\" y1=\"38.9\" x2=\"23.9\" y2=\"30\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.8\" y1=\"39\" x2=\"23.9\" y2=\"38.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"39\" x2=\"23.8\" y2=\"39\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"39\" x2=\"22.855\" y2=\"38.95\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.5\" y1=\"26.6\" x2=\"21.4\" y2=\"26.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.5\" y1=\"28.4\" x2=\"20.5\" y2=\"26.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.3\" y1=\"29.2\" x2=\"20.5\" y2=\"28.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"23.1\" y1=\"29.2\" x2=\"21.3\" y2=\"29.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"25.6\" x2=\"21.4\" y2=\"26.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"25.6\" x2=\"21.35\" y2=\"25.6\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"N$3\">\n<contactref element=\"U1\" pad=\"P$8\"/>\n<contactref element=\"R3\" pad=\"1\"/>\n<wire x1=\"24.3\" y1=\"29.9\" x2=\"23.2\" y2=\"28.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.3\" y1=\"39.4\" x2=\"24.3\" y2=\"29.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"24.2\" y1=\"39.5\" x2=\"24.3\" y2=\"39.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"39.5\" x2=\"24.2\" y2=\"39.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"39.5\" x2=\"22.855\" y2=\"39.45\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"28.8\" x2=\"23.2\" y2=\"28.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"27.7\" x2=\"21.4\" y2=\"28.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"27.7\" x2=\"21.35\" y2=\"27.7\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"C2D1\">\n<contactref element=\"R11\" pad=\"1\"/>\n<contactref element=\"U1\" pad=\"P$19\"/>\n<wire x1=\"19.7\" y1=\"30.9\" x2=\"20.2\" y2=\"30.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.7\" y1=\"36.1\" x2=\"19.7\" y2=\"30.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.6\" y1=\"36.2\" x2=\"19.7\" y2=\"36.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.6\" y1=\"37.1\" x2=\"19.6\" y2=\"36.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.3\" y1=\"37.4\" x2=\"19.6\" y2=\"37.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.3\" y1=\"37.7\" x2=\"19.3\" y2=\"37.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.2\" y1=\"37.8\" x2=\"19.3\" y2=\"37.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.2\" y1=\"39.4\" x2=\"19.2\" y2=\"37.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.3\" y1=\"39.5\" x2=\"19.2\" y2=\"39.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"39.5\" x2=\"19.3\" y2=\"39.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"39.5\" x2=\"20.145\" y2=\"39.45\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"30.4\" x2=\"20.2\" y2=\"30.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"30.7\" x2=\"21.4\" y2=\"30.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"30.7\" x2=\"21.35\" y2=\"30.7\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"N$1\">\n<contactref element=\"R10\" pad=\"1\"/>\n<contactref element=\"U1\" pad=\"P$1\"/>\n<wire x1=\"21.4\" y1=\"32.7\" x2=\"21.4\" y2=\"33.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"32.7\" x2=\"21.35\" y2=\"32.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.1\" y1=\"33.7\" x2=\"21.4\" y2=\"33.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.5\" y1=\"33.7\" x2=\"21.1\" y2=\"33.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.5\" y1=\"36.3\" x2=\"20.5\" y2=\"33.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"36.4\" x2=\"20.5\" y2=\"36.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.4\" y1=\"37.3\" x2=\"20.4\" y2=\"36.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"37.6\" x2=\"20.4\" y2=\"37.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"38.4\" x2=\"20.1\" y2=\"37.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.2\" y1=\"38.5\" x2=\"20.1\" y2=\"38.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.2\" y1=\"38.5\" x2=\"20.235\" y2=\"38.435\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"SDA\">\n<contactref element=\"R9\" pad=\"2\"/>\n<contactref element=\"R10\" pad=\"2\"/>\n<contactref element=\"U1\" pad=\"P$20\"/>\n<contactref element=\"R11\" pad=\"2\"/>\n<wire x1=\"22.7\" y1=\"31.3\" x2=\"22.7\" y2=\"30.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.3\" y1=\"31.7\" x2=\"22.65\" y2=\"31.35\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.65\" y1=\"31.35\" x2=\"22.7\" y2=\"31.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"31.7\" x2=\"22.3\" y2=\"31.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"36.2\" x2=\"20.1\" y2=\"31.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20\" y1=\"36.3\" x2=\"20.1\" y2=\"36.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20\" y1=\"37.2\" x2=\"20\" y2=\"36.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.7\" y1=\"37.5\" x2=\"20\" y2=\"37.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.7\" y1=\"37.8\" x2=\"19.7\" y2=\"37.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.6\" y1=\"37.9\" x2=\"19.7\" y2=\"37.8\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.6\" y1=\"38.9\" x2=\"19.6\" y2=\"37.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"19.7\" y1=\"39\" x2=\"19.6\" y2=\"38.9\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"39\" x2=\"19.7\" y2=\"39\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"30.7\" x2=\"22.65\" y2=\"30.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.1\" y1=\"39\" x2=\"20.145\" y2=\"38.95\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"34.7\" x2=\"22.7\" y2=\"32.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"34.7\" x2=\"22.65\" y2=\"34.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"32.7\" x2=\"22.7\" y2=\"31.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"31.7\" x2=\"22.7\" y2=\"31.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"31.4\" x2=\"22.65\" y2=\"31.35\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"32.7\" x2=\"22.65\" y2=\"32.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.7\" y1=\"31.7\" x2=\"24\" y2=\"31.7\" width=\"0.2\" layer=\"16\"/>\n<via x=\"22.7\" y=\"31.7\" extent=\"1-16\" drill=\"0.3\"/>\n<contactref element=\"JP1\" pad=\"3\"/>\n<contactref element=\"JP3\" pad=\"3\"/>\n<contactref element=\"JP2\" pad=\"3\"/>\n<wire x1=\"24\" y1=\"31.7\" x2=\"24.2\" y2=\"31.7\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"59\" y1=\"30.5\" x2=\"60.7\" y2=\"30.5\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"58.5\" y1=\"31\" x2=\"59\" y2=\"30.5\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"44.7\" y1=\"31\" x2=\"58.5\" y2=\"31\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"44.6\" y1=\"31.1\" x2=\"44.7\" y2=\"31\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"38.7\" y1=\"31.1\" x2=\"44.6\" y2=\"31.1\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"37.9\" y1=\"31.9\" x2=\"38.7\" y2=\"31.1\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"24.2\" y1=\"31.9\" x2=\"37.9\" y2=\"31.9\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"24\" y1=\"31.7\" x2=\"24.2\" y2=\"31.9\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"60.7\" y1=\"30.5\" x2=\"60.79\" y2=\"30.53\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"60.79\" y1=\"55.93\" x2=\"59.33\" y2=\"55.93\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"59.33\" y1=\"55.93\" x2=\"57.7\" y2=\"54.3\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"57.7\" y1=\"54.3\" x2=\"57.7\" y2=\"43.2\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"57.7\" y1=\"43.2\" x2=\"57.7\" y2=\"32\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"57.7\" y1=\"32\" x2=\"59.2\" y2=\"30.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"59.2\" y1=\"30.5\" x2=\"60.76\" y2=\"30.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"60.76\" y1=\"30.5\" x2=\"60.79\" y2=\"30.53\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"60.79\" y1=\"43.23\" x2=\"57.73\" y2=\"43.23\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"57.73\" y1=\"43.23\" x2=\"57.7\" y2=\"43.2\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"N$5\">\n<contactref element=\"U1\" pad=\"P$2\"/>\n<contactref element=\"R9\" pad=\"1\"/>\n<wire x1=\"20.8\" y1=\"38.3\" x2=\"20.8\" y2=\"36.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.8\" y1=\"38.3\" x2=\"20.75\" y2=\"38.345\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"35.6\" x2=\"21.4\" y2=\"34.7\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.9\" y1=\"36.1\" x2=\"21.4\" y2=\"35.6\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.9\" y1=\"36.4\" x2=\"20.9\" y2=\"36.1\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"20.8\" y1=\"36.5\" x2=\"20.9\" y2=\"36.4\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"21.4\" y1=\"34.7\" x2=\"21.35\" y2=\"34.7\" width=\"0.2\" layer=\"1\"/>\n</signal>\n<signal name=\"RESET\">\n<contactref element=\"U$1\" pad=\"6\"/>\n<contactref element=\"U1\" pad=\"P$10\"/>\n<wire x1=\"26.8\" y1=\"40.5\" x2=\"37.8\" y2=\"29.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"40.5\" x2=\"26.8\" y2=\"40.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"22.9\" y1=\"40.5\" x2=\"22.855\" y2=\"40.45\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"37.8\" y1=\"29\" x2=\"37.8\" y2=\"29.5\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"38\" y1=\"28.8\" x2=\"37.8\" y2=\"29\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"42.7\" y1=\"28.8\" x2=\"38\" y2=\"28.8\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"42.9\" y1=\"29\" x2=\"42.7\" y2=\"28.8\" width=\"0.2\" layer=\"16\"/>\n<wire x1=\"42.9\" y1=\"26.9\" x2=\"42.9\" y2=\"29\" width=\"0.2\" layer=\"1\"/>\n<wire x1=\"42.9\" y1=\"26.9\" x2=\"42.884\" y2=\"26.838\" width=\"0.2\" layer=\"1\"/>\n<via x=\"37.8\" y=\"29\" extent=\"1-16\" drill=\"0.3\"/>\n<via x=\"42.9\" y=\"29\" extent=\"1-16\" drill=\"0.3\"/>\n</signal>\n</signals>\n</board>\n</drawing>\n</eagle>\n"
  },
  {
    "path": "hardware/i2cdriver.sch",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE eagle SYSTEM \"eagle.dtd\">\n<eagle version=\"6.4\">\n<drawing>\n<settings>\n<setting alwaysvectorfont=\"no\"/>\n<setting verticaltext=\"up\"/>\n</settings>\n<grid distance=\"0.05\" unitdist=\"inch\" unit=\"inch\" style=\"lines\" multiple=\"1\" display=\"no\" altdistance=\"0.01\" altunitdist=\"inch\" altunit=\"inch\"/>\n<layers>\n<layer number=\"1\" name=\"Top\" color=\"4\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"2\" name=\"Route2\" color=\"1\" fill=\"3\" visible=\"no\" active=\"no\"/>\n<layer number=\"3\" name=\"Route3\" color=\"4\" fill=\"3\" visible=\"no\" active=\"no\"/>\n<layer number=\"4\" name=\"Route4\" color=\"1\" fill=\"4\" visible=\"no\" active=\"no\"/>\n<layer number=\"5\" name=\"Route5\" color=\"4\" fill=\"4\" visible=\"no\" active=\"no\"/>\n<layer number=\"6\" name=\"Route6\" color=\"1\" fill=\"8\" visible=\"no\" active=\"no\"/>\n<layer number=\"7\" name=\"Route7\" color=\"4\" fill=\"8\" visible=\"no\" active=\"no\"/>\n<layer number=\"8\" name=\"Route8\" color=\"1\" fill=\"2\" visible=\"no\" active=\"no\"/>\n<layer number=\"9\" name=\"Route9\" color=\"4\" fill=\"2\" visible=\"no\" active=\"no\"/>\n<layer number=\"10\" name=\"Route10\" color=\"1\" fill=\"7\" visible=\"no\" active=\"no\"/>\n<layer number=\"11\" name=\"Route11\" color=\"4\" fill=\"7\" visible=\"no\" active=\"no\"/>\n<layer number=\"12\" name=\"Route12\" color=\"1\" fill=\"5\" visible=\"no\" active=\"no\"/>\n<layer number=\"13\" name=\"Route13\" color=\"4\" fill=\"5\" visible=\"no\" active=\"no\"/>\n<layer number=\"14\" name=\"Route14\" color=\"1\" fill=\"6\" visible=\"no\" active=\"no\"/>\n<layer number=\"15\" name=\"Route15\" color=\"4\" fill=\"6\" visible=\"no\" active=\"no\"/>\n<layer number=\"16\" name=\"Bottom\" color=\"1\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"17\" name=\"Pads\" color=\"2\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"18\" name=\"Vias\" color=\"2\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"19\" name=\"Unrouted\" color=\"6\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"20\" name=\"Dimension\" color=\"15\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"21\" name=\"tPlace\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"22\" name=\"bPlace\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"23\" name=\"tOrigins\" color=\"15\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"24\" name=\"bOrigins\" color=\"15\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"25\" name=\"tNames\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"26\" name=\"bNames\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"27\" name=\"tValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"28\" name=\"bValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"29\" name=\"tStop\" color=\"7\" fill=\"3\" visible=\"no\" active=\"no\"/>\n<layer number=\"30\" name=\"bStop\" color=\"7\" fill=\"6\" visible=\"no\" active=\"no\"/>\n<layer number=\"31\" name=\"tCream\" color=\"7\" fill=\"4\" visible=\"no\" active=\"no\"/>\n<layer number=\"32\" name=\"bCream\" color=\"7\" fill=\"5\" visible=\"no\" active=\"no\"/>\n<layer number=\"33\" name=\"tFinish\" color=\"6\" fill=\"3\" visible=\"no\" active=\"no\"/>\n<layer number=\"34\" name=\"bFinish\" color=\"6\" fill=\"6\" visible=\"no\" active=\"no\"/>\n<layer number=\"35\" name=\"tGlue\" color=\"7\" fill=\"4\" visible=\"no\" active=\"no\"/>\n<layer number=\"36\" name=\"bGlue\" color=\"7\" fill=\"5\" visible=\"no\" active=\"no\"/>\n<layer number=\"37\" name=\"tTest\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"38\" name=\"bTest\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"39\" name=\"tKeepout\" color=\"4\" fill=\"11\" visible=\"no\" active=\"no\"/>\n<layer number=\"40\" name=\"bKeepout\" color=\"1\" fill=\"11\" visible=\"no\" active=\"no\"/>\n<layer number=\"41\" name=\"tRestrict\" color=\"4\" fill=\"10\" visible=\"no\" active=\"no\"/>\n<layer number=\"42\" name=\"bRestrict\" color=\"1\" fill=\"10\" visible=\"no\" active=\"no\"/>\n<layer number=\"43\" name=\"vRestrict\" color=\"2\" fill=\"10\" visible=\"no\" active=\"no\"/>\n<layer number=\"44\" name=\"Drills\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"45\" name=\"Holes\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"46\" name=\"Milling\" color=\"3\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"47\" name=\"Measures\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"48\" name=\"Document\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"49\" name=\"Reference\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"50\" name=\"dxf\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"51\" name=\"tDocu\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"52\" name=\"bDocu\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"53\" name=\"tGND_GNDA\" color=\"7\" fill=\"9\" visible=\"no\" active=\"no\"/>\n<layer number=\"54\" name=\"bGND_GNDA\" color=\"1\" fill=\"9\" visible=\"no\" active=\"no\"/>\n<layer number=\"56\" name=\"wert\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"57\" name=\"tCAD\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"58\" name=\"bCAD\" color=\"11\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"59\" name=\"tCarbon\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"60\" name=\"bCarbon\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"90\" name=\"Modules\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"91\" name=\"Nets\" color=\"2\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"92\" name=\"Busses\" color=\"1\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"93\" name=\"Pins\" color=\"2\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"94\" name=\"Symbols\" color=\"4\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"95\" name=\"Names\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"96\" name=\"Values\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"97\" name=\"Info\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"98\" name=\"Guide\" color=\"6\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"99\" name=\"SpiceOrder\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"100\" name=\"Muster\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"101\" name=\"Patch_Top\" color=\"12\" fill=\"4\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"102\" name=\"Vscore\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"103\" name=\"fp3\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"104\" name=\"Name\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"105\" name=\"Beschreib\" color=\"9\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"106\" name=\"BGA-Top\" color=\"4\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"107\" name=\"BD-Top\" color=\"5\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"108\" name=\"fp8\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"109\" name=\"fp9\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"110\" name=\"fp0\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"111\" name=\"111\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"112\" name=\"tSilk\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"113\" name=\"ReferenceLS\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"114\" name=\"Route14\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"115\" name=\"115bmp\" color=\"1\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"116\" name=\"Patch_BOT\" color=\"9\" fill=\"4\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"117\" name=\"mPads\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"118\" name=\"Rect_Pads\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"119\" name=\"mUnrouted\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"120\" name=\"mDimension\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"121\" name=\"_tsilk\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"122\" name=\"_bsilk\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"123\" name=\"tTestmark\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"124\" name=\"bTestmark\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"125\" name=\"_tNames\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"126\" name=\"_bNames\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"127\" name=\"_tValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"128\" name=\"_bValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"129\" name=\"Mask\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"130\" name=\"mbStop\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"131\" name=\"tAdjust\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"132\" name=\"bAdjust\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"133\" name=\"mtFinish\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"134\" name=\"mbFinish\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"135\" name=\"mtGlue\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"136\" name=\"mbGlue\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"137\" name=\"mtTest\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"138\" name=\"mbTest\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"139\" name=\"mtKeepout\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"140\" name=\"mbKeepout\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"141\" name=\"mtRestrict\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"142\" name=\"mbRestrict\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"143\" name=\"mvRestrict\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"144\" name=\"Drill_legend\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"145\" name=\"mHoles\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"146\" name=\"mMilling\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"147\" name=\"mMeasures\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"148\" name=\"mDocument\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"149\" name=\"mReference\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"150\" name=\"Notes\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"151\" name=\"HeatSink\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"152\" name=\"_bDocu\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"153\" name=\"FabDoc1\" color=\"6\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"154\" name=\"FabDoc2\" color=\"2\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"155\" name=\"FabDoc3\" color=\"7\" fill=\"15\" visible=\"no\" active=\"no\"/>\n<layer number=\"191\" name=\"mNets\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"192\" name=\"mBusses\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"193\" name=\"mPins\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"194\" name=\"mSymbols\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"195\" name=\"mNames\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"196\" name=\"mValues\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"199\" name=\"Contour\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"200\" name=\"200bmp\" color=\"1\" fill=\"10\" visible=\"no\" active=\"no\"/>\n<layer number=\"201\" name=\"201bmp\" color=\"2\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"202\" name=\"202bmp\" color=\"3\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"203\" name=\"203bmp\" color=\"4\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"204\" name=\"204bmp\" color=\"5\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"205\" name=\"205bmp\" color=\"6\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"206\" name=\"206bmp\" color=\"7\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"207\" name=\"207bmp\" color=\"8\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"208\" name=\"208bmp\" color=\"9\" fill=\"10\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"209\" name=\"209bmp\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"210\" name=\"210bmp\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"211\" name=\"211bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"212\" name=\"212bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"213\" name=\"213bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"214\" name=\"214bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"215\" name=\"215bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"216\" name=\"216bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"217\" name=\"217bmp\" color=\"18\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"218\" name=\"218bmp\" color=\"19\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"219\" name=\"219bmp\" color=\"20\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"220\" name=\"220bmp\" color=\"21\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"221\" name=\"221bmp\" color=\"22\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"222\" name=\"222bmp\" color=\"23\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"223\" name=\"223bmp\" color=\"24\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"224\" name=\"224bmp\" color=\"25\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"225\" name=\"225bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"226\" name=\"226bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"227\" name=\"227bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"228\" name=\"228bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"229\" name=\"229bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"230\" name=\"230bmp\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"231\" name=\"Eagle3D_PG1\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"232\" name=\"Eagle3D_PG2\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"233\" name=\"Eagle3D_PG3\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"248\" name=\"Housing\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"249\" name=\"Edge\" color=\"7\" fill=\"1\" visible=\"no\" active=\"yes\"/>\n<layer number=\"250\" name=\"Descript\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"251\" name=\"SMDround\" color=\"7\" fill=\"1\" visible=\"no\" active=\"no\"/>\n<layer number=\"254\" name=\"cooling\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n<layer number=\"255\" name=\"routoute\" color=\"7\" fill=\"1\" visible=\"yes\" active=\"yes\"/>\n</layers>\n<schematic xreflabel=\"%F%N/%S.%C%R\" xrefpart=\"/%S.%C%R\">\n<libraries>\n<library name=\"adafruit\">\n<packages>\n<package name=\"JD-T1800\">\n<wire x1=\"-17\" y1=\"23\" x2=\"17\" y2=\"23\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"17\" y1=\"23\" x2=\"17\" y2=\"-23\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"17\" y1=\"-23\" x2=\"-17\" y2=\"-23\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-17\" y1=\"-23\" x2=\"-17\" y2=\"23\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-5.2\" y1=\"-12.9\" x2=\"5.2\" y2=\"-12.9\" width=\"0.127\" layer=\"21\"/>\n<smd name=\"13\" x=\"-4.4\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"12\" x=\"-3.6\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"11\" x=\"-2.8\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"10\" x=\"-2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"9\" x=\"-1.2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"8\" x=\"-0.4\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"7\" x=\"0.4\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"6\" x=\"1.2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"5\" x=\"2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"4\" x=\"2.8\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"3\" x=\"3.6\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"2\" x=\"4.4\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"1\" x=\"5.2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<smd name=\"14\" x=\"-5.2\" y=\"-13.1\" dx=\"2\" dy=\"0.5\" layer=\"1\" rot=\"R90\"/>\n<hole x=\"-12.8\" y=\"-16.9\" drill=\"0.6\"/>\n<hole x=\"7.65\" y=\"-16.9\" drill=\"0.6\"/>\n</package>\n</packages>\n<symbols>\n<symbol name=\"JD-T1800\">\n<wire x1=\"-17.78\" y1=\"17.78\" x2=\"17.78\" y2=\"17.78\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"17.78\" y1=\"17.78\" x2=\"17.78\" y2=\"-15.24\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"17.78\" y1=\"-15.24\" x2=\"-17.78\" y2=\"-15.24\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"-17.78\" y1=\"-15.24\" x2=\"-17.78\" y2=\"17.78\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"-7.62\" y1=\"15.24\" x2=\"15.24\" y2=\"15.24\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"15.24\" y1=\"15.24\" x2=\"15.24\" y2=\"-12.7\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"15.24\" y1=\"-12.7\" x2=\"-7.62\" y2=\"-12.7\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"-7.62\" y1=\"-12.7\" x2=\"-7.62\" y2=\"15.24\" width=\"0.254\" layer=\"94\"/>\n<text x=\"-5.08\" y=\"7.62\" size=\"2.54\" layer=\"94\">JD-T1800</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"2.54\" layer=\"94\">128x160</text>\n<text x=\"-5.08\" y=\"-7.62\" size=\"2.54\" layer=\"94\">18-bit color</text>\n<text x=\"-5.08\" y=\"2.54\" size=\"2.54\" layer=\"94\">1.8\" TFT</text>\n<pin name=\"GND\" x=\"-22.86\" y=\"15.24\" length=\"middle\" direction=\"pwr\"/>\n<pin name=\"LEDK\" x=\"-22.86\" y=\"12.7\" length=\"middle\" direction=\"in\"/>\n<pin name=\"LEDA\" x=\"-22.86\" y=\"10.16\" length=\"middle\" direction=\"in\"/>\n<pin name=\"GND2\" x=\"-22.86\" y=\"-12.7\" length=\"middle\" direction=\"pwr\"/>\n<pin name=\"RESET\" x=\"-22.86\" y=\"5.08\" length=\"middle\" direction=\"in\"/>\n<pin name=\"RS/DC\" x=\"-22.86\" y=\"2.54\" length=\"middle\" direction=\"in\"/>\n<pin name=\"DATA\" x=\"-22.86\" y=\"0\" length=\"middle\"/>\n<pin name=\"CLOCK\" x=\"-22.86\" y=\"-2.54\" length=\"middle\" direction=\"in\"/>\n<pin name=\"VCC\" x=\"-22.86\" y=\"-5.08\" length=\"middle\" direction=\"pwr\"/>\n<pin name=\"VCC2\" x=\"-22.86\" y=\"-7.62\" length=\"middle\" direction=\"pwr\"/>\n<pin name=\"CS\" x=\"-22.86\" y=\"-10.16\" length=\"middle\" direction=\"in\"/>\n<pin name=\"GND1\" x=\"-22.86\" y=\"7.62\" length=\"middle\" direction=\"pwr\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"JD-T1800\" prefix=\"LCD\">\n<gates>\n<gate name=\"G$1\" symbol=\"JD-T1800\" x=\"0\" y=\"-2.54\"/>\n</gates>\n<devices>\n<device name=\"\" package=\"JD-T1800\">\n<connects>\n<connect gate=\"G$1\" pin=\"CLOCK\" pad=\"9\"/>\n<connect gate=\"G$1\" pin=\"CS\" pad=\"12\"/>\n<connect gate=\"G$1\" pin=\"DATA\" pad=\"8\"/>\n<connect gate=\"G$1\" pin=\"GND\" pad=\"2\"/>\n<connect gate=\"G$1\" pin=\"GND1\" pad=\"5\"/>\n<connect gate=\"G$1\" pin=\"GND2\" pad=\"13\"/>\n<connect gate=\"G$1\" pin=\"LEDA\" pad=\"4\"/>\n<connect gate=\"G$1\" pin=\"LEDK\" pad=\"3\"/>\n<connect gate=\"G$1\" pin=\"RESET\" pad=\"6\"/>\n<connect gate=\"G$1\" pin=\"RS/DC\" pad=\"7\"/>\n<connect gate=\"G$1\" pin=\"VCC\" pad=\"10\"/>\n<connect gate=\"G$1\" pin=\"VCC2\" pad=\"11\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"supply1\">\n<packages>\n</packages>\n<symbols>\n<symbol name=\"+3V3\">\n<wire x1=\"1.27\" y1=\"-1.905\" x2=\"0\" y2=\"0\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"0\" y1=\"0\" x2=\"-1.27\" y2=\"-1.905\" width=\"0.254\" layer=\"94\"/>\n<text x=\"-2.54\" y=\"-5.08\" size=\"1.778\" layer=\"96\" rot=\"R90\">&gt;VALUE</text>\n<pin name=\"+3V3\" x=\"0\" y=\"-2.54\" visible=\"off\" length=\"short\" direction=\"sup\" rot=\"R90\"/>\n</symbol>\n<symbol name=\"GND\">\n<wire x1=\"-1.905\" y1=\"0\" x2=\"1.905\" y2=\"0\" width=\"0.254\" layer=\"94\"/>\n<text x=\"-2.54\" y=\"-2.54\" size=\"1.778\" layer=\"96\">&gt;VALUE</text>\n<pin name=\"GND\" x=\"0\" y=\"2.54\" visible=\"off\" length=\"short\" direction=\"sup\" rot=\"R270\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"+3V3\" prefix=\"+3V3\">\n<description>&lt;b&gt;SUPPLY SYMBOL&lt;/b&gt;</description>\n<gates>\n<gate name=\"G$1\" symbol=\"+3V3\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"\">\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n</devices>\n</deviceset>\n<deviceset name=\"GND\" prefix=\"GND\">\n<description>&lt;b&gt;SUPPLY SYMBOL&lt;/b&gt;</description>\n<gates>\n<gate name=\"1\" symbol=\"GND\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"\">\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"rcl\">\n<description>&lt;b&gt;Resistors, Capacitors, Inductors&lt;/b&gt;&lt;p&gt;\nBased on the previous libraries:\n&lt;ul&gt;\n&lt;li&gt;r.lbr\n&lt;li&gt;cap.lbr \n&lt;li&gt;cap-fe.lbr\n&lt;li&gt;captant.lbr\n&lt;li&gt;polcap.lbr\n&lt;li&gt;ipc-smd.lbr\n&lt;/ul&gt;\nAll SMD packages are defined according to the IPC specifications and  CECC&lt;p&gt;\n&lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;&lt;p&gt;\n&lt;p&gt;\nfor Electrolyt Capacitors see also :&lt;p&gt;\nwww.bccomponents.com &lt;p&gt;\nwww.panasonic.com&lt;p&gt;\nwww.kemet.com&lt;p&gt;\nhttp://www.secc.co.jp/pdf/os_e/2004/e_os_all.pdf &lt;b&gt;(SANYO)&lt;/b&gt;\n&lt;p&gt;\nfor trimmer refence see : &lt;u&gt;www.electrospec-inc.com/cross_references/trimpotcrossref.asp&lt;/u&gt;&lt;p&gt;\n\n&lt;table border=0 cellspacing=0 cellpadding=0 width=\"100%\" cellpaddding=0&gt;\n&lt;tr valign=\"top\"&gt;\n\n&lt;! &lt;td width=\"10\"&gt;&amp;nbsp;&lt;/td&gt;\n&lt;td width=\"90%\"&gt;\n\n&lt;b&gt;&lt;font color=\"#0000FF\" size=\"4\"&gt;TRIM-POT CROSS REFERENCE&lt;/font&gt;&lt;/b&gt;\n&lt;P&gt;\n&lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;RECTANGULAR MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;BOURNS&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;BI&amp;nbsp;TECH&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;DALE-VISHAY&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;PHILIPS/MEPCO&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;MURATA&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;PANASONIC&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;SPECTROL&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;B&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL color=\"#FF0000\"&gt;MILSPEC&lt;/FONT&gt;\n      &lt;/B&gt;\n    &lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3 &gt;\n      3005P&lt;BR&gt;\n      3006P&lt;BR&gt;\n      3006W&lt;BR&gt;\n      3006Y&lt;BR&gt;\n      3009P&lt;BR&gt;\n      3009W&lt;BR&gt;\n      3009Y&lt;BR&gt;\n      3057J&lt;BR&gt;\n      3057L&lt;BR&gt;\n      3057P&lt;BR&gt;\n      3057Y&lt;BR&gt;\n      3059J&lt;BR&gt;\n      3059L&lt;BR&gt;\n      3059P&lt;BR&gt;\n      3059Y&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      89P&lt;BR&gt;\n      89W&lt;BR&gt;\n      89X&lt;BR&gt;\n      89PH&lt;BR&gt;\n      76P&lt;BR&gt;\n      89XH&lt;BR&gt;\n      78SLT&lt;BR&gt;\n      78L&amp;nbsp;ALT&lt;BR&gt;\n      56P&amp;nbsp;ALT&lt;BR&gt;\n      78P&amp;nbsp;ALT&lt;BR&gt;\n      T8S&lt;BR&gt;\n      78L&lt;BR&gt;\n      56P&lt;BR&gt;\n      78P&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      T18/784&lt;BR&gt;\n      783&lt;BR&gt;\n      781&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      2199&lt;BR&gt;\n      1697/1897&lt;BR&gt;\n      1680/1880&lt;BR&gt;\n      2187&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      8035EKP/CT20/RJ-20P&lt;BR&gt;\n      -&lt;BR&gt;\n      RJ-20X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      1211L&lt;BR&gt;\n      8012EKQ&amp;nbsp;ALT&lt;BR&gt;\n      8012EKR&amp;nbsp;ALT&lt;BR&gt;\n      1211P&lt;BR&gt;\n      8012EKJ&lt;BR&gt;\n      8012EKL&lt;BR&gt;\n      8012EKQ&lt;BR&gt;\n      8012EKR&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      2101P&lt;BR&gt;\n      2101W&lt;BR&gt;\n      2101Y&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      2102L&lt;BR&gt;\n      2102S&lt;BR&gt;\n      2102Y&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      EVMCOG&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      43P&lt;BR&gt;\n      43W&lt;BR&gt;\n      43Y&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      40L&lt;BR&gt;\n      40P&lt;BR&gt;\n      40Y&lt;BR&gt;\n      70Y-T602&lt;BR&gt;\n      70L&lt;BR&gt;\n      70P&lt;BR&gt;\n      70Y&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      RT/RTR12&lt;BR&gt;\n      RT/RTR12&lt;BR&gt;\n      RT/RTR12&lt;BR&gt;\n      -&lt;BR&gt;\n      RJ/RJR12&lt;BR&gt;\n      RJ/RJR12&lt;BR&gt;\n      RJ/RJR12&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;&amp;nbsp;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;\n      &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SQUARE MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n   &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      3250L&lt;BR&gt;\n      3250P&lt;BR&gt;\n      3250W&lt;BR&gt;\n      3250X&lt;BR&gt;\n      3252P&lt;BR&gt;\n      3252W&lt;BR&gt;\n      3252X&lt;BR&gt;\n      3260P&lt;BR&gt;\n      3260W&lt;BR&gt;\n      3260X&lt;BR&gt;\n      3262P&lt;BR&gt;\n      3262W&lt;BR&gt;\n      3262X&lt;BR&gt;\n      3266P&lt;BR&gt;\n      3266W&lt;BR&gt;\n      3266X&lt;BR&gt;\n      3290H&lt;BR&gt;\n      3290P&lt;BR&gt;\n      3290W&lt;BR&gt;\n      3292P&lt;BR&gt;\n      3292W&lt;BR&gt;\n      3292X&lt;BR&gt;\n      3296P&lt;BR&gt;\n      3296W&lt;BR&gt;\n      3296X&lt;BR&gt;\n      3296Y&lt;BR&gt;\n      3296Z&lt;BR&gt;\n      3299P&lt;BR&gt;\n      3299W&lt;BR&gt;\n      3299X&lt;BR&gt;\n      3299Y&lt;BR&gt;\n      3299Z&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      66P&amp;nbsp;ALT&lt;BR&gt;\n      66W&amp;nbsp;ALT&lt;BR&gt;\n      66X&amp;nbsp;ALT&lt;BR&gt;\n      66P&amp;nbsp;ALT&lt;BR&gt;\n      66W&amp;nbsp;ALT&lt;BR&gt;\n      66X&amp;nbsp;ALT&lt;BR&gt;\n      -&lt;BR&gt;\n      64W&amp;nbsp;ALT&lt;BR&gt;\n      -&lt;BR&gt;\n      64P&amp;nbsp;ALT&lt;BR&gt;\n      64W&amp;nbsp;ALT&lt;BR&gt;\n      64X&amp;nbsp;ALT&lt;BR&gt;\n      64P&lt;BR&gt;\n      64W&lt;BR&gt;\n      64X&lt;BR&gt;\n      66X&amp;nbsp;ALT&lt;BR&gt;\n      66P&amp;nbsp;ALT&lt;BR&gt;\n      66W&amp;nbsp;ALT&lt;BR&gt;\n      66P&lt;BR&gt;\n      66W&lt;BR&gt;\n      66X&lt;BR&gt;\n      67P&lt;BR&gt;\n      67W&lt;BR&gt;\n      67X&lt;BR&gt;\n      67Y&lt;BR&gt;\n      67Z&lt;BR&gt;\n      68P&lt;BR&gt;\n      68W&lt;BR&gt;\n      68X&lt;BR&gt;\n      67Y&amp;nbsp;ALT&lt;BR&gt;\n      67Z&amp;nbsp;ALT&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      5050&lt;BR&gt;\n      5091&lt;BR&gt;\n      5080&lt;BR&gt;\n      5087&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      T63YB&lt;BR&gt;\n      T63XB&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      5887&lt;BR&gt;\n      5891&lt;BR&gt;\n      5880&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      T93Z&lt;BR&gt;\n      T93YA&lt;BR&gt;\n      T93XA&lt;BR&gt;\n      T93YB&lt;BR&gt;\n      T93XB&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      8026EKP&lt;BR&gt;\n      8026EKW&lt;BR&gt;\n      8026EKM&lt;BR&gt;\n      8026EKP&lt;BR&gt;\n      8026EKB&lt;BR&gt;\n      8026EKM&lt;BR&gt;\n      1309X&lt;BR&gt;\n      1309P&lt;BR&gt;\n      1309W&lt;BR&gt;\n      8024EKP&lt;BR&gt;\n      8024EKW&lt;BR&gt;\n      8024EKN&lt;BR&gt;\n      RJ-9P/CT9P&lt;BR&gt;\n      RJ-9W&lt;BR&gt;\n      RJ-9X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      3103P&lt;BR&gt;\n      3103Y&lt;BR&gt;\n      3103Z&lt;BR&gt;\n      3103P&lt;BR&gt;\n      3103Y&lt;BR&gt;\n      3103Z&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      3105P/3106P&lt;BR&gt;\n      3105W/3106W&lt;BR&gt;\n      3105X/3106X&lt;BR&gt;\n      3105Y/3106Y&lt;BR&gt;\n      3105Z/3105Z&lt;BR&gt;\n      3102P&lt;BR&gt;\n      3102W&lt;BR&gt;\n      3102X&lt;BR&gt;\n      3102Y&lt;BR&gt;\n      3102Z&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMCBG&lt;BR&gt;\n      EVMCCG&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      55-1-X&lt;BR&gt;\n      55-4-X&lt;BR&gt;\n      55-3-X&lt;BR&gt;\n      55-2-X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      50-2-X&lt;BR&gt;\n      50-4-X&lt;BR&gt;\n      50-3-X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      64P&lt;BR&gt;\n      64W&lt;BR&gt;\n      64X&lt;BR&gt;\n      64Y&lt;BR&gt;\n      64Z&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      RT/RTR22&lt;BR&gt;\n      RT/RTR22&lt;BR&gt;\n      RT/RTR22&lt;BR&gt;\n      RT/RTR22&lt;BR&gt;\n      RJ/RJR22&lt;BR&gt;\n      RJ/RJR22&lt;BR&gt;\n      RJ/RJR22&lt;BR&gt;\n      RT/RTR26&lt;BR&gt;\n      RT/RTR26&lt;BR&gt;\n      RT/RTR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RJ/RJR26&lt;BR&gt;\n      RT/RTR24&lt;BR&gt;\n      RT/RTR24&lt;BR&gt;\n      RT/RTR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      RJ/RJR24&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;&amp;nbsp;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=8&gt;\n      &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MURATA&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;SPECTROL&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD ALIGN=CENTER&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;MILSPEC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      3323P&lt;BR&gt;\n      3323S&lt;BR&gt;\n      3323W&lt;BR&gt;\n      3329H&lt;BR&gt;\n      3329P&lt;BR&gt;\n      3329W&lt;BR&gt;\n      3339H&lt;BR&gt;\n      3339P&lt;BR&gt;\n      3339W&lt;BR&gt;\n      3352E&lt;BR&gt;\n      3352H&lt;BR&gt;\n      3352K&lt;BR&gt;\n      3352P&lt;BR&gt;\n      3352T&lt;BR&gt;\n      3352V&lt;BR&gt;\n      3352W&lt;BR&gt;\n      3362H&lt;BR&gt;\n      3362M&lt;BR&gt;\n      3362P&lt;BR&gt;\n      3362R&lt;BR&gt;\n      3362S&lt;BR&gt;\n      3362U&lt;BR&gt;\n      3362W&lt;BR&gt;\n      3362X&lt;BR&gt;\n      3386B&lt;BR&gt;\n      3386C&lt;BR&gt;\n      3386F&lt;BR&gt;\n      3386H&lt;BR&gt;\n      3386K&lt;BR&gt;\n      3386M&lt;BR&gt;\n      3386P&lt;BR&gt;\n      3386S&lt;BR&gt;\n      3386W&lt;BR&gt;\n      3386X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      25P&lt;BR&gt;\n      25S&lt;BR&gt;\n      25RX&lt;BR&gt;\n      82P&lt;BR&gt;\n      82M&lt;BR&gt;\n      82PA&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      91E&lt;BR&gt;\n      91X&lt;BR&gt;\n      91T&lt;BR&gt;\n      91B&lt;BR&gt;\n      91A&lt;BR&gt;\n      91V&lt;BR&gt;\n      91W&lt;BR&gt;\n      25W&lt;BR&gt;\n      25V&lt;BR&gt;\n      25P&lt;BR&gt;\n      -&lt;BR&gt;\n      25S&lt;BR&gt;\n      25U&lt;BR&gt;\n      25RX&lt;BR&gt;\n      25X&lt;BR&gt;\n      72XW&lt;BR&gt;\n      72XL&lt;BR&gt;\n      72PM&lt;BR&gt;\n      72RX&lt;BR&gt;\n      -&lt;BR&gt;\n      72PX&lt;BR&gt;\n      72P&lt;BR&gt;\n      72RXW&lt;BR&gt;\n      72RXL&lt;BR&gt;\n      72X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      T7YB&lt;BR&gt;\n      T7YA&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      TXD&lt;BR&gt;\n      TYA&lt;BR&gt;\n      TYP&lt;BR&gt;\n      -&lt;BR&gt;\n      TYD&lt;BR&gt;\n      TX&lt;BR&gt;\n      -&lt;BR&gt;\n      150SX&lt;BR&gt;\n      100SX&lt;BR&gt;\n      102T&lt;BR&gt;\n      101S&lt;BR&gt;\n      190T&lt;BR&gt;\n      150TX&lt;BR&gt;\n      101&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      101SX&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      ET6P&lt;BR&gt;\n      ET6S&lt;BR&gt;\n      ET6X&lt;BR&gt;\n      RJ-6W/8014EMW&lt;BR&gt;\n      RJ-6P/8014EMP&lt;BR&gt;\n      RJ-6X/8014EMX&lt;BR&gt;\n      TM7W&lt;BR&gt;\n      TM7P&lt;BR&gt;\n      TM7X&lt;BR&gt;\n      -&lt;BR&gt;\n      8017SMS&lt;BR&gt;\n      -&lt;BR&gt;\n      8017SMB&lt;BR&gt;\n      8017SMA&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      CT-6W&lt;BR&gt;\n      CT-6H&lt;BR&gt;\n      CT-6P&lt;BR&gt;\n      CT-6R&lt;BR&gt;\n      -&lt;BR&gt;\n      CT-6V&lt;BR&gt;\n      CT-6X&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      8038EKV&lt;BR&gt;\n      -&lt;BR&gt;\n      8038EKX&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      8038EKP&lt;BR&gt;\n      8038EKZ&lt;BR&gt;\n      8038EKW&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      3321H&lt;BR&gt;\n      3321P&lt;BR&gt;\n      3321N&lt;BR&gt;\n      1102H&lt;BR&gt;\n      1102P&lt;BR&gt;\n      1102T&lt;BR&gt;\n      RVA0911V304A&lt;BR&gt;\n      -&lt;BR&gt;\n      RVA0911H413A&lt;BR&gt;\n      RVG0707V100A&lt;BR&gt;\n      RVA0607V(H)306A&lt;BR&gt;\n      RVA1214H213A&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      3104B&lt;BR&gt;\n      3104C&lt;BR&gt;\n      3104F&lt;BR&gt;\n      3104H&lt;BR&gt;\n      -&lt;BR&gt;\n      3104M&lt;BR&gt;\n      3104P&lt;BR&gt;\n      3104S&lt;BR&gt;\n      3104W&lt;BR&gt;\n      3104X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      EVMQ0G&lt;BR&gt;\n      EVMQIG&lt;BR&gt;\n      EVMQ3G&lt;BR&gt;\n      EVMS0G&lt;BR&gt;\n      EVMQ0G&lt;BR&gt;\n      EVMG0G&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMK4GA00B&lt;BR&gt;\n      EVM30GA00B&lt;BR&gt;\n      EVMK0GA00B&lt;BR&gt;\n      EVM38GA00B&lt;BR&gt;\n      EVMB6&lt;BR&gt;\n      EVLQ0&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMMSG&lt;BR&gt;\n      EVMMBG&lt;BR&gt;\n      EVMMAG&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMMCS&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMM1&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMM0&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      EVMM3&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      62-3-1&lt;BR&gt;\n      62-1-2&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      67R&lt;BR&gt;\n      -&lt;BR&gt;\n      67P&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      67X&lt;BR&gt;\n      63V&lt;BR&gt;\n      63S&lt;BR&gt;\n      63M&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      63H&lt;BR&gt;\n      63P&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      63X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      RJ/RJR50&lt;BR&gt;\n      RJ/RJR50&lt;BR&gt;\n      RJ/RJR50&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n&lt;/TABLE&gt;\n&lt;P&gt;&amp;nbsp;&lt;P&gt;\n&lt;TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=7&gt;\n      &lt;FONT color=\"#0000FF\" SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SMD TRIM-POT CROSS REFERENCE&lt;/B&gt;&lt;/FONT&gt;\n      &lt;P&gt;\n      &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;MULTI-TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      3224G&lt;BR&gt;\n      3224J&lt;BR&gt;\n      3224W&lt;BR&gt;\n      3269P&lt;BR&gt;\n      3269W&lt;BR&gt;\n      3269X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      44G&lt;BR&gt;\n      44J&lt;BR&gt;\n      44W&lt;BR&gt;\n      84P&lt;BR&gt;\n      84W&lt;BR&gt;\n      84X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      ST63Z&lt;BR&gt;\n      ST63Y&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      ST5P&lt;BR&gt;\n      ST5W&lt;BR&gt;\n      ST5X&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=7&gt;&amp;nbsp;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD COLSPAN=7&gt;\n      &lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;SINGLE TURN&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BOURNS&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;BI&amp;nbsp;TECH&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;DALE-VISHAY&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PHILIPS/MEPCO&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;PANASONIC&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;TOCOS&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD&gt;\n      &lt;FONT SIZE=3 FACE=ARIAL&gt;&lt;B&gt;AUX/KYOCERA&lt;/B&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n  &lt;TR&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      3314G&lt;BR&gt;\n      3314J&lt;BR&gt;\n      3364A/B&lt;BR&gt;\n      3364C/D&lt;BR&gt;\n      3364W/X&lt;BR&gt;\n      3313G&lt;BR&gt;\n      3313J&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      23B&lt;BR&gt;\n      23A&lt;BR&gt;\n      21X&lt;BR&gt;\n      21W&lt;BR&gt;\n      -&lt;BR&gt;\n      22B&lt;BR&gt;\n      22A&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      ST5YL/ST53YL&lt;BR&gt;\n      ST5YJ/5T53YJ&lt;BR&gt;\n      ST-23A&lt;BR&gt;\n      ST-22B&lt;BR&gt;\n      ST-22&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      ST-4B&lt;BR&gt;\n      ST-4A&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      ST-3B&lt;BR&gt;\n      ST-3A&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      EVM-6YS&lt;BR&gt;\n      EVM-1E&lt;BR&gt;\n      EVM-1G&lt;BR&gt;\n      EVM-1D&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      G4B&lt;BR&gt;\n      G4A&lt;BR&gt;\n      TR04-3S1&lt;BR&gt;\n      TRG04-2S1&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n    &lt;TD BGCOLOR=\"#cccccc\" ALIGN=CENTER&gt;&lt;FONT FACE=ARIAL SIZE=3&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;\n      DVR-43A&lt;BR&gt;\n      CVR-42C&lt;BR&gt;\n      CVR-42A/C&lt;BR&gt;\n      -&lt;BR&gt;\n      -&lt;BR&gt;&lt;/FONT&gt;\n    &lt;/TD&gt;\n  &lt;/TR&gt;\n&lt;/TABLE&gt;\n&lt;P&gt;\n&lt;FONT SIZE=4 FACE=ARIAL&gt;&lt;B&gt;ALT =&amp;nbsp;ALTERNATE&lt;/B&gt;&lt;/FONT&gt;\n&lt;P&gt;\n\n&amp;nbsp;\n&lt;P&gt;\n&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/table&gt;</description>\n<packages>\n<package name=\"R0402\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-0.245\" y1=\"0.224\" x2=\"0.245\" y2=\"0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.245\" y1=\"-0.224\" x2=\"-0.245\" y2=\"-0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.635\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.554\" y1=\"-0.3048\" x2=\"-0.254\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"0.2588\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.4001\" x2=\"0.1999\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"R0603\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-0.432\" y1=\"-0.356\" x2=\"0.432\" y2=\"-0.356\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.432\" y1=\"0.356\" x2=\"-0.432\" y2=\"0.356\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1\" dy=\"1.1\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1\" dy=\"1.1\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.635\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4318\" y1=\"-0.4318\" x2=\"0.8382\" y2=\"0.4318\" layer=\"51\"/>\n<rectangle x1=\"-0.8382\" y1=\"-0.4318\" x2=\"-0.4318\" y2=\"0.4318\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.4001\" x2=\"0.1999\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"R0805\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.95\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.95\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5001\" x2=\"0.1999\" y2=\"0.5001\" layer=\"35\"/>\n</package>\n<package name=\"R0805W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.0525\" y=\"0\" dx=\"1.5\" dy=\"1\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.0525\" y=\"0\" dx=\"1.5\" dy=\"1\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5001\" x2=\"0.1999\" y2=\"0.5001\" layer=\"35\"/>\n</package>\n<package name=\"R1005\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-0.245\" y1=\"0.224\" x2=\"0.245\" y2=\"0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.245\" y1=\"-0.224\" x2=\"-0.245\" y2=\"-0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.635\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.554\" y1=\"-0.3048\" x2=\"-0.254\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"0.2588\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.3\" x2=\"0.1999\" y2=\"0.3\" layer=\"35\"/>\n</package>\n<package name=\"R1206\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"0.9525\" y1=\"-0.8128\" x2=\"-0.9652\" y2=\"-0.8128\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.9525\" y1=\"0.8128\" x2=\"-0.9652\" y2=\"0.8128\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"2\" x=\"1.422\" y=\"0\" dx=\"1.6\" dy=\"1.803\" layer=\"1\"/>\n<smd name=\"1\" x=\"-1.422\" y=\"0\" dx=\"1.6\" dy=\"1.803\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.6891\" y1=\"-0.8763\" x2=\"-0.9525\" y2=\"0.8763\" layer=\"51\"/>\n<rectangle x1=\"0.9525\" y1=\"-0.8763\" x2=\"1.6891\" y2=\"0.8763\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"R1206W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nwave soldering</description>\n<wire x1=\"-0.913\" y1=\"0.8\" x2=\"0.888\" y2=\"0.8\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-0.8\" x2=\"0.888\" y2=\"-0.8\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.499\" y=\"0\" dx=\"1.8\" dy=\"1.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.499\" y=\"0\" dx=\"1.8\" dy=\"1.2\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-0.8763\" x2=\"-0.9009\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"0.889\" y1=\"-0.8763\" x2=\"1.6391\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"R1210\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-0.913\" y1=\"1.219\" x2=\"0.939\" y2=\"1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-1.219\" x2=\"0.939\" y2=\"-1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-1.3081\" x2=\"-0.9009\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-1.3081\" x2=\"1.6645\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.8999\" x2=\"0.3\" y2=\"0.8999\" layer=\"35\"/>\n</package>\n<package name=\"R1210W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nwave soldering</description>\n<wire x1=\"-0.913\" y1=\"1.219\" x2=\"0.939\" y2=\"1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-1.219\" x2=\"0.939\" y2=\"-1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.499\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.499\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-1.3081\" x2=\"-0.9009\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-1.3081\" x2=\"1.6645\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.8001\" x2=\"0.3\" y2=\"0.8001\" layer=\"35\"/>\n</package>\n<package name=\"R2010\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-1.662\" y1=\"1.245\" x2=\"1.662\" y2=\"1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.637\" y1=\"-1.245\" x2=\"1.687\" y2=\"-1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.2\" y=\"0\" dx=\"1.8\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.2\" y=\"0\" dx=\"1.8\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-3.175\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.4892\" y1=\"-1.3208\" x2=\"-1.6393\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"1.651\" y1=\"-1.3208\" x2=\"2.5009\" y2=\"1.3292\" layer=\"51\"/>\n</package>\n<package name=\"R2010W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nwave soldering</description>\n<wire x1=\"-1.662\" y1=\"1.245\" x2=\"1.662\" y2=\"1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.637\" y1=\"-1.245\" x2=\"1.687\" y2=\"-1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.311\" y=\"0\" dx=\"2\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.311\" y=\"0\" dx=\"2\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.4892\" y1=\"-1.3208\" x2=\"-1.6393\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"1.651\" y1=\"-1.3208\" x2=\"2.5009\" y2=\"1.3292\" layer=\"51\"/>\n</package>\n<package name=\"R2012\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1001\" y1=\"-0.5999\" x2=\"0.1001\" y2=\"0.5999\" layer=\"35\"/>\n</package>\n<package name=\"R2012W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nwave soldering</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.94\" y=\"0\" dx=\"1.5\" dy=\"1\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.94\" y=\"0\" dx=\"1.5\" dy=\"1\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1001\" y1=\"-0.5999\" x2=\"0.1001\" y2=\"0.5999\" layer=\"35\"/>\n</package>\n<package name=\"R2512\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-2.362\" y1=\"1.473\" x2=\"2.387\" y2=\"1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.362\" y1=\"-1.473\" x2=\"2.387\" y2=\"-1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.8\" y=\"0\" dx=\"1.8\" dy=\"3.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.8\" y=\"0\" dx=\"1.8\" dy=\"3.2\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.2004\" y1=\"-1.5494\" x2=\"-2.3505\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"2.3622\" y1=\"-1.5494\" x2=\"3.2121\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R2512W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nwave soldering</description>\n<wire x1=\"-2.362\" y1=\"1.473\" x2=\"2.387\" y2=\"1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.362\" y1=\"-1.473\" x2=\"2.387\" y2=\"-1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.896\" y=\"0\" dx=\"2\" dy=\"2.1\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.896\" y=\"0\" dx=\"2\" dy=\"2.1\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.2004\" y1=\"-1.5494\" x2=\"-2.3505\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"2.3622\" y1=\"-1.5494\" x2=\"3.2121\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R3216\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-0.913\" y1=\"0.8\" x2=\"0.888\" y2=\"0.8\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-0.8\" x2=\"0.888\" y2=\"-0.8\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-0.8763\" x2=\"-0.9009\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"0.889\" y1=\"-0.8763\" x2=\"1.6391\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"R3216W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nwave soldering</description>\n<wire x1=\"-0.913\" y1=\"0.8\" x2=\"0.888\" y2=\"0.8\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-0.8\" x2=\"0.888\" y2=\"-0.8\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.499\" y=\"0\" dx=\"1.8\" dy=\"1.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.499\" y=\"0\" dx=\"1.8\" dy=\"1.2\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-0.8763\" x2=\"-0.9009\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"0.889\" y1=\"-0.8763\" x2=\"1.6391\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"R3225\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-0.913\" y1=\"1.219\" x2=\"0.939\" y2=\"1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-1.219\" x2=\"0.939\" y2=\"-1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-1.3081\" x2=\"-0.9009\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-1.3081\" x2=\"1.6645\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-1\" x2=\"0.3\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R3225W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nwave soldering</description>\n<wire x1=\"-0.913\" y1=\"1.219\" x2=\"0.939\" y2=\"1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-1.219\" x2=\"0.939\" y2=\"-1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.499\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.499\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-1.3081\" x2=\"-0.9009\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-1.3081\" x2=\"1.6645\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-1\" x2=\"0.3\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R5025\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;</description>\n<wire x1=\"-1.662\" y1=\"1.245\" x2=\"1.662\" y2=\"1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.637\" y1=\"-1.245\" x2=\"1.687\" y2=\"-1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.2\" y=\"0\" dx=\"1.8\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.2\" y=\"0\" dx=\"1.8\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-3.175\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.4892\" y1=\"-1.3208\" x2=\"-1.6393\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"1.651\" y1=\"-1.3208\" x2=\"2.5009\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R5025W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nwave soldering</description>\n<wire x1=\"-1.662\" y1=\"1.245\" x2=\"1.662\" y2=\"1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.637\" y1=\"-1.245\" x2=\"1.687\" y2=\"-1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.311\" y=\"0\" dx=\"2\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.311\" y=\"0\" dx=\"2\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-3.175\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.4892\" y1=\"-1.3208\" x2=\"-1.6393\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"1.651\" y1=\"-1.3208\" x2=\"2.5009\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R6332\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nSource: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>\n<wire x1=\"-2.362\" y1=\"1.473\" x2=\"2.387\" y2=\"1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.362\" y1=\"-1.473\" x2=\"2.387\" y2=\"-1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-3.1\" y=\"0\" dx=\"1\" dy=\"3.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"3.1\" y=\"0\" dx=\"1\" dy=\"3.2\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.2004\" y1=\"-1.5494\" x2=\"-2.3505\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"2.3622\" y1=\"-1.5494\" x2=\"3.2121\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R6332W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt; wave soldering&lt;p&gt;\nSource: http://download.siliconexpert.com/pdfs/2005/02/24/Semi_Ap/2/VSH/Resistor/dcrcwfre.pdf</description>\n<wire x1=\"-2.362\" y1=\"1.473\" x2=\"2.387\" y2=\"1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.362\" y1=\"-1.473\" x2=\"2.387\" y2=\"-1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-3.196\" y=\"0\" dx=\"1.2\" dy=\"3.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"3.196\" y=\"0\" dx=\"1.2\" dy=\"3.2\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.2004\" y1=\"-1.5494\" x2=\"-2.3505\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"2.3622\" y1=\"-1.5494\" x2=\"3.2121\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"M0805\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.10 W</description>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"0.7112\" y1=\"0.635\" x2=\"-0.7112\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.7112\" y1=\"-0.635\" x2=\"-0.7112\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.95\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.95\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.0414\" y1=\"-0.7112\" x2=\"-0.6858\" y2=\"0.7112\" layer=\"51\"/>\n<rectangle x1=\"0.6858\" y1=\"-0.7112\" x2=\"1.0414\" y2=\"0.7112\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5999\" x2=\"0.1999\" y2=\"0.5999\" layer=\"35\"/>\n</package>\n<package name=\"M1206\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.25 W</description>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.143\" y1=\"0.8382\" x2=\"-1.143\" y2=\"0.8382\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.143\" y1=\"-0.8382\" x2=\"-1.143\" y2=\"-0.8382\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.7018\" y1=\"-0.9144\" x2=\"-1.1176\" y2=\"0.9144\" layer=\"51\"/>\n<rectangle x1=\"1.1176\" y1=\"-0.9144\" x2=\"1.7018\" y2=\"0.9144\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.8001\" x2=\"0.3\" y2=\"0.8001\" layer=\"35\"/>\n</package>\n<package name=\"M1406\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.12 W</description>\n<wire x1=\"-2.973\" y1=\"0.983\" x2=\"2.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"-0.983\" x2=\"-2.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.973\" y1=\"-0.983\" x2=\"-2.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"0.983\" x2=\"2.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.3208\" y1=\"0.762\" x2=\"-1.3208\" y2=\"0.762\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.3208\" y1=\"-0.762\" x2=\"-1.3208\" y2=\"-0.762\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.7\" y=\"0\" dx=\"1.4\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.7\" y=\"0\" dx=\"1.4\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.8542\" y1=\"-0.8382\" x2=\"-1.2954\" y2=\"0.8382\" layer=\"51\"/>\n<rectangle x1=\"1.2954\" y1=\"-0.8382\" x2=\"1.8542\" y2=\"0.8382\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"M2012\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.10 W</description>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"0.7112\" y1=\"0.635\" x2=\"-0.7112\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.7112\" y1=\"-0.635\" x2=\"-0.7112\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.95\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.95\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.0414\" y1=\"-0.7112\" x2=\"-0.6858\" y2=\"0.7112\" layer=\"51\"/>\n<rectangle x1=\"0.6858\" y1=\"-0.7112\" x2=\"1.0414\" y2=\"0.7112\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5999\" x2=\"0.1999\" y2=\"0.5999\" layer=\"35\"/>\n</package>\n<package name=\"M2309\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.25 W</description>\n<wire x1=\"-4.473\" y1=\"1.483\" x2=\"4.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"4.473\" y1=\"-1.483\" x2=\"-4.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-4.473\" y1=\"-1.483\" x2=\"-4.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"4.473\" y1=\"1.483\" x2=\"4.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.413\" y1=\"1.1684\" x2=\"-2.4384\" y2=\"1.1684\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.413\" y1=\"-1.1684\" x2=\"-2.413\" y2=\"-1.1684\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-2.85\" y=\"0\" dx=\"1.5\" dy=\"2.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.85\" y=\"0\" dx=\"1.5\" dy=\"2.6\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.048\" y1=\"-1.2446\" x2=\"-2.3876\" y2=\"1.2446\" layer=\"51\"/>\n<rectangle x1=\"2.3876\" y1=\"-1.2446\" x2=\"3.048\" y2=\"1.2446\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"M3216\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.25 W</description>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.143\" y1=\"0.8382\" x2=\"-1.143\" y2=\"0.8382\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.143\" y1=\"-0.8382\" x2=\"-1.143\" y2=\"-0.8382\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.7018\" y1=\"-0.9144\" x2=\"-1.1176\" y2=\"0.9144\" layer=\"51\"/>\n<rectangle x1=\"1.1176\" y1=\"-0.9144\" x2=\"1.7018\" y2=\"0.9144\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.8001\" x2=\"0.3\" y2=\"0.8001\" layer=\"35\"/>\n</package>\n<package name=\"M3516\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.12 W</description>\n<wire x1=\"-2.973\" y1=\"0.983\" x2=\"2.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"-0.983\" x2=\"-2.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.973\" y1=\"-0.983\" x2=\"-2.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"0.983\" x2=\"2.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.3208\" y1=\"0.762\" x2=\"-1.3208\" y2=\"0.762\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.3208\" y1=\"-0.762\" x2=\"-1.3208\" y2=\"-0.762\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.7\" y=\"0\" dx=\"1.4\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.7\" y=\"0\" dx=\"1.4\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.8542\" y1=\"-0.8382\" x2=\"-1.2954\" y2=\"0.8382\" layer=\"51\"/>\n<rectangle x1=\"1.2954\" y1=\"-0.8382\" x2=\"1.8542\" y2=\"0.8382\" layer=\"51\"/>\n<rectangle x1=\"-0.4001\" y1=\"-0.7\" x2=\"0.4001\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"M5923\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.25 W</description>\n<wire x1=\"-4.473\" y1=\"1.483\" x2=\"4.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"4.473\" y1=\"-1.483\" x2=\"-4.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-4.473\" y1=\"-1.483\" x2=\"-4.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"4.473\" y1=\"1.483\" x2=\"4.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.413\" y1=\"1.1684\" x2=\"-2.4384\" y2=\"1.1684\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.413\" y1=\"-1.1684\" x2=\"-2.413\" y2=\"-1.1684\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-2.85\" y=\"0\" dx=\"1.5\" dy=\"2.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.85\" y=\"0\" dx=\"1.5\" dy=\"2.6\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.048\" y1=\"-1.2446\" x2=\"-2.3876\" y2=\"1.2446\" layer=\"51\"/>\n<rectangle x1=\"2.3876\" y1=\"-1.2446\" x2=\"3.048\" y2=\"1.2446\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"0204/5\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0204, grid 5 mm</description>\n<wire x1=\"2.54\" y1=\"0\" x2=\"2.032\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-2.032\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-1.778\" y1=\"0.635\" x2=\"-1.524\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-1.778\" y1=\"-0.635\" x2=\"-1.524\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"1.524\" y1=\"-0.889\" x2=\"1.778\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"1.524\" y1=\"0.889\" x2=\"1.778\" y2=\"0.635\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-1.778\" y1=\"-0.635\" x2=\"-1.778\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.524\" y1=\"0.889\" x2=\"-1.27\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.143\" y1=\"0.762\" x2=\"-1.27\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.524\" y1=\"-0.889\" x2=\"-1.27\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.143\" y1=\"-0.762\" x2=\"-1.27\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.143\" y1=\"0.762\" x2=\"1.27\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.143\" y1=\"0.762\" x2=\"-1.143\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.143\" y1=\"-0.762\" x2=\"1.27\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.143\" y1=\"-0.762\" x2=\"-1.143\" y2=\"-0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.524\" y1=\"0.889\" x2=\"1.27\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.524\" y1=\"-0.889\" x2=\"1.27\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"-0.635\" x2=\"1.778\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.0066\" y=\"1.1684\" size=\"0.9906\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.1336\" y=\"-2.3114\" size=\"0.9906\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-2.032\" y1=\"-0.254\" x2=\"-1.778\" y2=\"0.254\" layer=\"51\"/>\n<rectangle x1=\"1.778\" y1=\"-0.254\" x2=\"2.032\" y2=\"0.254\" layer=\"51\"/>\n</package>\n<package name=\"0204/7\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0204, grid 7.5 mm</description>\n<wire x1=\"3.81\" y1=\"0\" x2=\"2.921\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-2.921\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-2.54\" y1=\"0.762\" x2=\"-2.286\" y2=\"1.016\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.54\" y1=\"-0.762\" x2=\"-2.286\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.286\" y1=\"-1.016\" x2=\"2.54\" y2=\"-0.762\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.286\" y1=\"1.016\" x2=\"2.54\" y2=\"0.762\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.54\" y1=\"-0.762\" x2=\"-2.54\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"1.016\" x2=\"-1.905\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.778\" y1=\"0.889\" x2=\"-1.905\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"-1.016\" x2=\"-1.905\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.778\" y1=\"-0.889\" x2=\"-1.905\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"0.889\" x2=\"1.905\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"0.889\" x2=\"-1.778\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"-0.889\" x2=\"1.905\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"-0.889\" x2=\"-1.778\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.286\" y1=\"1.016\" x2=\"1.905\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.286\" y1=\"-1.016\" x2=\"1.905\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-0.762\" x2=\"2.54\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.54\" y=\"1.2954\" size=\"0.9906\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.6256\" y=\"-0.4826\" size=\"0.9906\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"2.54\" y1=\"-0.254\" x2=\"2.921\" y2=\"0.254\" layer=\"21\"/>\n<rectangle x1=\"-2.921\" y1=\"-0.254\" x2=\"-2.54\" y2=\"0.254\" layer=\"21\"/>\n</package>\n<package name=\"0204V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0204, grid 2.5 mm</description>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"1.27\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-0.127\" y1=\"0\" x2=\"0.127\" y2=\"0\" width=\"0.508\" layer=\"21\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"0.889\" width=\"0.1524\" layer=\"51\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"0.635\" width=\"0.0508\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.1336\" y=\"1.1684\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.1336\" y=\"-2.3114\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"0207/10\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 10 mm</description>\n<wire x1=\"5.08\" y1=\"0\" x2=\"4.064\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-4.064\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-3.175\" y1=\"0.889\" x2=\"-2.921\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-2.921\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"3.175\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"1.143\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"-1.143\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"-0.889\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.048\" y=\"1.524\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.2606\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"3.175\" y1=\"-0.3048\" x2=\"4.0386\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-4.0386\" y1=\"-0.3048\" x2=\"-3.175\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0207/12\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 12 mm</description>\n<wire x1=\"6.35\" y1=\"0\" x2=\"5.334\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.334\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-3.175\" y1=\"0.889\" x2=\"-2.921\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-2.921\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"3.175\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"1.143\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"-1.143\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"-0.889\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.445\" y1=\"0\" x2=\"4.064\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<wire x1=\"-4.445\" y1=\"0\" x2=\"-4.064\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.175\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-0.6858\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"3.175\" y1=\"-0.3048\" x2=\"4.0386\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-4.0386\" y1=\"-0.3048\" x2=\"-3.175\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"4.445\" y1=\"-0.3048\" x2=\"5.3086\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-5.3086\" y1=\"-0.3048\" x2=\"-4.445\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0207/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 15mm</description>\n<wire x1=\"7.62\" y1=\"0\" x2=\"6.604\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.604\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-3.175\" y1=\"0.889\" x2=\"-2.921\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-2.921\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"3.175\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"1.143\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"-1.143\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"-0.889\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.715\" y1=\"0\" x2=\"4.064\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<wire x1=\"-5.715\" y1=\"0\" x2=\"-4.064\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.175\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-0.6858\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"3.175\" y1=\"-0.3048\" x2=\"4.0386\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-4.0386\" y1=\"-0.3048\" x2=\"-3.175\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"5.715\" y1=\"-0.3048\" x2=\"6.5786\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-6.5786\" y1=\"-0.3048\" x2=\"-5.715\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0207/2V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 2.5 mm</description>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"1.27\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"1.016\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-0.0508\" y=\"1.016\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.0508\" y=\"-2.2352\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"0207/5V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 5 mm</description>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-0.889\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-0.762\" y1=\"0\" x2=\"0.762\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<wire x1=\"0.889\" y1=\"0\" x2=\"2.54\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.27\" width=\"0.1016\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.016\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-1.143\" y=\"0.889\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.143\" y=\"-2.159\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"0207/7\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 7.5 mm</description>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-3.429\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-3.175\" y1=\"0.889\" x2=\"-2.921\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-2.921\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"3.175\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.921\" y1=\"1.143\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"-1.143\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"-0.889\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"3.429\" y1=\"0\" x2=\"3.81\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.54\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-0.5588\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-3.429\" y1=\"-0.3048\" x2=\"-3.175\" y2=\"0.3048\" layer=\"51\"/>\n<rectangle x1=\"3.175\" y1=\"-0.3048\" x2=\"3.429\" y2=\"0.3048\" layer=\"51\"/>\n</package>\n<package name=\"0309/10\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0309, grid 10mm</description>\n<wire x1=\"-4.699\" y1=\"0\" x2=\"-5.08\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-4.318\" y1=\"1.27\" x2=\"-4.064\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.318\" y1=\"-1.27\" x2=\"-4.064\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.064\" y1=\"-1.524\" x2=\"4.318\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.064\" y1=\"1.524\" x2=\"4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.318\" y1=\"-1.27\" x2=\"-4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-4.064\" y1=\"1.524\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"1.397\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.064\" y1=\"-1.524\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"-1.397\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"1.397\" x2=\"3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"1.397\" x2=\"-3.302\" y2=\"1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"-1.397\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"-1.397\" x2=\"-3.302\" y2=\"-1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.064\" y1=\"1.524\" x2=\"3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.064\" y1=\"-1.524\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.318\" y1=\"-1.27\" x2=\"4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"5.08\" y1=\"0\" x2=\"4.699\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-4.191\" y=\"1.905\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.6858\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-4.6228\" y1=\"-0.3048\" x2=\"-4.318\" y2=\"0.3048\" layer=\"51\"/>\n<rectangle x1=\"4.318\" y1=\"-0.3048\" x2=\"4.6228\" y2=\"0.3048\" layer=\"51\"/>\n</package>\n<package name=\"0309/12\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0309, grid 12.5 mm</description>\n<wire x1=\"6.35\" y1=\"0\" x2=\"5.08\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.08\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-4.318\" y1=\"1.27\" x2=\"-4.064\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.318\" y1=\"-1.27\" x2=\"-4.064\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.064\" y1=\"-1.524\" x2=\"4.318\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.064\" y1=\"1.524\" x2=\"4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.318\" y1=\"-1.27\" x2=\"-4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.064\" y1=\"1.524\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"1.397\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.064\" y1=\"-1.524\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"-1.397\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"1.397\" x2=\"3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"1.397\" x2=\"-3.302\" y2=\"1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"-1.397\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"-1.397\" x2=\"-3.302\" y2=\"-1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.064\" y1=\"1.524\" x2=\"3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.064\" y1=\"-1.524\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.318\" y1=\"-1.27\" x2=\"4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-4.191\" y=\"1.905\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.6858\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"4.318\" y1=\"-0.3048\" x2=\"5.1816\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-5.1816\" y1=\"-0.3048\" x2=\"-4.318\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0309V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0309, grid 2.5 mm</description>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0.635\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-0.635\" y1=\"0\" x2=\"-1.27\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"0.762\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"0.254\" y=\"1.016\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0.254\" y=\"-2.2098\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"0.254\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.3048\" layer=\"51\"/>\n<rectangle x1=\"-0.635\" y1=\"-0.3048\" x2=\"-0.3302\" y2=\"0.3048\" layer=\"51\"/>\n<rectangle x1=\"-0.3302\" y1=\"-0.3048\" x2=\"0.254\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0411/12\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0411, grid 12.5 mm</description>\n<wire x1=\"6.35\" y1=\"0\" x2=\"5.461\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.461\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<wire x1=\"5.08\" y1=\"-1.651\" x2=\"5.08\" y2=\"1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"2.032\" x2=\"5.08\" y2=\"1.651\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-5.08\" y1=\"-1.651\" x2=\"-4.699\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.699\" y1=\"-2.032\" x2=\"5.08\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.08\" y1=\"1.651\" x2=\"-4.699\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"2.032\" x2=\"4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.937\" y1=\"1.905\" x2=\"4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-2.032\" x2=\"4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.937\" y1=\"-1.905\" x2=\"4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"1.905\" x2=\"-4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"1.905\" x2=\"3.937\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"-1.905\" x2=\"-4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"-1.905\" x2=\"3.937\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"1.651\" x2=\"-5.08\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"2.032\" x2=\"-4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"-2.032\" x2=\"-4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-5.08\" y=\"2.413\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.5814\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-5.3594\" y1=\"-0.381\" x2=\"-5.08\" y2=\"0.381\" layer=\"21\"/>\n<rectangle x1=\"5.08\" y1=\"-0.381\" x2=\"5.3594\" y2=\"0.381\" layer=\"21\"/>\n</package>\n<package name=\"0411/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0411, grid 15 mm</description>\n<wire x1=\"5.08\" y1=\"-1.651\" x2=\"5.08\" y2=\"1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"2.032\" x2=\"5.08\" y2=\"1.651\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-5.08\" y1=\"-1.651\" x2=\"-4.699\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.699\" y1=\"-2.032\" x2=\"5.08\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.08\" y1=\"1.651\" x2=\"-4.699\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"2.032\" x2=\"4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.937\" y1=\"1.905\" x2=\"4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-2.032\" x2=\"4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.937\" y1=\"-1.905\" x2=\"4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"1.905\" x2=\"-4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"1.905\" x2=\"3.937\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"-1.905\" x2=\"-4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"-1.905\" x2=\"3.937\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"1.651\" x2=\"-5.08\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"2.032\" x2=\"-4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"-2.032\" x2=\"-4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.35\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<wire x1=\"6.35\" y1=\"0\" x2=\"7.62\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-5.08\" y=\"2.413\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.5814\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"5.08\" y1=\"-0.381\" x2=\"6.477\" y2=\"0.381\" layer=\"21\"/>\n<rectangle x1=\"-6.477\" y1=\"-0.381\" x2=\"-5.08\" y2=\"0.381\" layer=\"21\"/>\n</package>\n<package name=\"0411V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0411, grid 3.81 mm</description>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0.3048\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<wire x1=\"-1.5748\" y1=\"0\" x2=\"-2.54\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.016\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-0.508\" y=\"1.143\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.5334\" y=\"-2.413\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.4732\" y1=\"-0.381\" x2=\"0.2032\" y2=\"0.381\" layer=\"21\"/>\n</package>\n<package name=\"0414/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0414, grid 15 mm</description>\n<wire x1=\"7.62\" y1=\"0\" x2=\"6.604\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.604\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.096\" y1=\"1.905\" x2=\"-5.842\" y2=\"2.159\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.096\" y1=\"-1.905\" x2=\"-5.842\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"5.842\" y1=\"-2.159\" x2=\"6.096\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"5.842\" y1=\"2.159\" x2=\"6.096\" y2=\"1.905\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.096\" y1=\"-1.905\" x2=\"-6.096\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.842\" y1=\"2.159\" x2=\"-4.953\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.826\" y1=\"2.032\" x2=\"-4.953\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.842\" y1=\"-2.159\" x2=\"-4.953\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.826\" y1=\"-2.032\" x2=\"-4.953\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"2.032\" x2=\"4.953\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"2.032\" x2=\"-4.826\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"-2.032\" x2=\"4.953\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"-2.032\" x2=\"-4.826\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.842\" y1=\"2.159\" x2=\"4.953\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.842\" y1=\"-2.159\" x2=\"4.953\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"-1.905\" x2=\"6.096\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.096\" y=\"2.5654\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-4.318\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"6.096\" y1=\"-0.4064\" x2=\"6.5024\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"-6.5024\" y1=\"-0.4064\" x2=\"-6.096\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"0414V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0414, grid 5 mm</description>\n<wire x1=\"2.54\" y1=\"0\" x2=\"1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.143\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-0.381\" y=\"1.1684\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.381\" y=\"-2.3622\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.2954\" y1=\"-0.4064\" x2=\"1.2954\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"0617/17\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0617, grid 17.5 mm</description>\n<wire x1=\"-8.89\" y1=\"0\" x2=\"-8.636\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-7.874\" y1=\"3.048\" x2=\"-6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"2.794\" x2=\"-6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.874\" y1=\"-3.048\" x2=\"-6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"-2.794\" x2=\"-6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"2.794\" x2=\"6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"2.794\" x2=\"-6.731\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.794\" x2=\"6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.794\" x2=\"-6.731\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.874\" y1=\"3.048\" x2=\"6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.874\" y1=\"-3.048\" x2=\"6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.255\" y1=\"-2.667\" x2=\"-8.255\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.255\" y1=\"1.016\" x2=\"-8.255\" y2=\"-1.016\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-8.255\" y1=\"1.016\" x2=\"-8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.255\" y1=\"-2.667\" x2=\"8.255\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.255\" y1=\"1.016\" x2=\"8.255\" y2=\"-1.016\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"8.255\" y1=\"1.016\" x2=\"8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"0\" x2=\"8.89\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.255\" y1=\"2.667\" x2=\"-7.874\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"7.874\" y1=\"3.048\" x2=\"8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-8.255\" y1=\"-2.667\" x2=\"-7.874\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"7.874\" y1=\"-3.048\" x2=\"8.255\" y2=\"-2.667\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<pad name=\"1\" x=\"-8.89\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"8.89\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.128\" y=\"3.4544\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-6.096\" y=\"-0.7112\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-8.5344\" y1=\"-0.4064\" x2=\"-8.2296\" y2=\"0.4064\" layer=\"51\"/>\n<rectangle x1=\"8.2296\" y1=\"-0.4064\" x2=\"8.5344\" y2=\"0.4064\" layer=\"51\"/>\n</package>\n<package name=\"0617/22\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0617, grid 22.5 mm</description>\n<wire x1=\"-10.287\" y1=\"0\" x2=\"-11.43\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.255\" y1=\"-2.667\" x2=\"-8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.874\" y1=\"3.048\" x2=\"-6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"2.794\" x2=\"-6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.874\" y1=\"-3.048\" x2=\"-6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"-2.794\" x2=\"-6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"2.794\" x2=\"6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"2.794\" x2=\"-6.731\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.794\" x2=\"6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.794\" x2=\"-6.731\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.874\" y1=\"3.048\" x2=\"6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.874\" y1=\"-3.048\" x2=\"6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.255\" y1=\"-2.667\" x2=\"8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"11.43\" y1=\"0\" x2=\"10.287\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.255\" y1=\"2.667\" x2=\"-7.874\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-8.255\" y1=\"-2.667\" x2=\"-7.874\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"7.874\" y1=\"3.048\" x2=\"8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"7.874\" y1=\"-3.048\" x2=\"8.255\" y2=\"-2.667\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<pad name=\"1\" x=\"-11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.255\" y=\"3.4544\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-6.477\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-10.1854\" y1=\"-0.4064\" x2=\"-8.255\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"8.255\" y1=\"-0.4064\" x2=\"10.1854\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"0617V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0617, grid 5 mm</description>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-1.27\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"1.27\" y1=\"0\" x2=\"2.54\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.143\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"0.635\" y=\"1.4224\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0.635\" y=\"-2.6162\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.3208\" y1=\"-0.4064\" x2=\"1.3208\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"0922/22\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0922, grid 22.5 mm</description>\n<wire x1=\"11.43\" y1=\"0\" x2=\"10.795\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-11.43\" y1=\"0\" x2=\"-10.795\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-10.16\" y1=\"-4.191\" x2=\"-10.16\" y2=\"4.191\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.779\" y1=\"4.572\" x2=\"-8.89\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.636\" y1=\"4.318\" x2=\"-8.89\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.779\" y1=\"-4.572\" x2=\"-8.89\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.636\" y1=\"-4.318\" x2=\"-8.89\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"4.318\" x2=\"8.89\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"4.318\" x2=\"-8.636\" y2=\"4.318\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"-4.318\" x2=\"8.89\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"-4.318\" x2=\"-8.636\" y2=\"-4.318\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.779\" y1=\"4.572\" x2=\"8.89\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.779\" y1=\"-4.572\" x2=\"8.89\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"10.16\" y1=\"-4.191\" x2=\"10.16\" y2=\"4.191\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-10.16\" y1=\"-4.191\" x2=\"-9.779\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-10.16\" y1=\"4.191\" x2=\"-9.779\" y2=\"4.572\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"9.779\" y1=\"-4.572\" x2=\"10.16\" y2=\"-4.191\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"9.779\" y1=\"4.572\" x2=\"10.16\" y2=\"4.191\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-10.16\" y=\"5.1054\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-6.477\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-10.7188\" y1=\"-0.4064\" x2=\"-10.16\" y2=\"0.4064\" layer=\"51\"/>\n<rectangle x1=\"10.16\" y1=\"-0.4064\" x2=\"10.3124\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"-10.3124\" y1=\"-0.4064\" x2=\"-10.16\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"10.16\" y1=\"-0.4064\" x2=\"10.7188\" y2=\"0.4064\" layer=\"51\"/>\n</package>\n<package name=\"P0613V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0613, grid 5 mm</description>\n<wire x1=\"2.54\" y1=\"0\" x2=\"1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.143\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-0.254\" y=\"1.143\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.254\" y=\"-2.413\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.2954\" y1=\"-0.4064\" x2=\"1.3208\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"P0613/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0613, grid 15 mm</description>\n<wire x1=\"7.62\" y1=\"0\" x2=\"6.985\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.985\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.477\" y1=\"2.032\" x2=\"-6.223\" y2=\"2.286\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.477\" y1=\"-2.032\" x2=\"-6.223\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"6.223\" y1=\"-2.286\" x2=\"6.477\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"6.223\" y1=\"2.286\" x2=\"6.477\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.223\" y1=\"2.286\" x2=\"-5.334\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.207\" y1=\"2.159\" x2=\"-5.334\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.223\" y1=\"-2.286\" x2=\"-5.334\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.207\" y1=\"-2.159\" x2=\"-5.334\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"2.159\" x2=\"5.334\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"2.159\" x2=\"-5.207\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"-2.159\" x2=\"5.334\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"-2.159\" x2=\"-5.207\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.223\" y1=\"2.286\" x2=\"5.334\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.223\" y1=\"-2.286\" x2=\"5.334\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"-0.635\" x2=\"6.477\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"-0.635\" x2=\"6.477\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"6.477\" y1=\"2.032\" x2=\"6.477\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.477\" y1=\"-2.032\" x2=\"-6.477\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.477\" y1=\"0.635\" x2=\"-6.477\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-6.477\" y1=\"0.635\" x2=\"-6.477\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.477\" y=\"2.6924\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-4.318\" y=\"-0.7112\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-7.0358\" y1=\"-0.4064\" x2=\"-6.477\" y2=\"0.4064\" layer=\"51\"/>\n<rectangle x1=\"6.477\" y1=\"-0.4064\" x2=\"7.0358\" y2=\"0.4064\" layer=\"51\"/>\n</package>\n<package name=\"P0817/22\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0817, grid 22.5 mm</description>\n<wire x1=\"-10.414\" y1=\"0\" x2=\"-11.43\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.509\" y1=\"-3.429\" x2=\"-8.509\" y2=\"3.429\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.128\" y1=\"3.81\" x2=\"-7.239\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.985\" y1=\"3.556\" x2=\"-7.239\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.128\" y1=\"-3.81\" x2=\"-7.239\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.985\" y1=\"-3.556\" x2=\"-7.239\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"3.556\" x2=\"7.239\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"3.556\" x2=\"-6.985\" y2=\"3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"-3.556\" x2=\"7.239\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"-3.556\" x2=\"-6.985\" y2=\"-3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.128\" y1=\"3.81\" x2=\"7.239\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.128\" y1=\"-3.81\" x2=\"7.239\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"-3.429\" x2=\"8.509\" y2=\"3.429\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"11.43\" y1=\"0\" x2=\"10.414\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.509\" y1=\"3.429\" x2=\"-8.128\" y2=\"3.81\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-8.509\" y1=\"-3.429\" x2=\"-8.128\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"8.128\" y1=\"3.81\" x2=\"8.509\" y2=\"3.429\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"8.128\" y1=\"-3.81\" x2=\"8.509\" y2=\"-3.429\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<pad name=\"1\" x=\"-11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.382\" y=\"4.2164\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-6.223\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<text x=\"6.604\" y=\"-2.2606\" size=\"1.27\" layer=\"51\" ratio=\"10\" rot=\"R90\">0817</text>\n<rectangle x1=\"8.509\" y1=\"-0.4064\" x2=\"10.3124\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"-10.3124\" y1=\"-0.4064\" x2=\"-8.509\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"P0817V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0817, grid 6.35 mm</description>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-5.08\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-5.08\" y=\"0\" radius=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-5.08\" y=\"0\" radius=\"1.27\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-1.016\" y=\"1.27\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.016\" y=\"-2.54\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<text x=\"-6.858\" y=\"2.032\" size=\"1.016\" layer=\"21\" ratio=\"12\">0817</text>\n<rectangle x1=\"-3.81\" y1=\"-0.4064\" x2=\"0\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"V234/12\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype V234, grid 12.5 mm</description>\n<wire x1=\"-4.953\" y1=\"1.524\" x2=\"-4.699\" y2=\"1.778\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"1.778\" x2=\"4.953\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"-1.778\" x2=\"4.953\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-4.953\" y1=\"-1.524\" x2=\"-4.699\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-4.699\" y1=\"1.778\" x2=\"4.699\" y2=\"1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.953\" y1=\"1.524\" x2=\"-4.953\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-1.778\" x2=\"-4.699\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"1.524\" x2=\"4.953\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.35\" y1=\"0\" x2=\"5.461\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.461\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-4.953\" y=\"2.159\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.81\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"4.953\" y1=\"-0.4064\" x2=\"5.4102\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"-5.4102\" y1=\"-0.4064\" x2=\"-4.953\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"V235/17\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype V235, grid 17.78 mm</description>\n<wire x1=\"-6.731\" y1=\"2.921\" x2=\"6.731\" y2=\"2.921\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.112\" y1=\"2.54\" x2=\"-7.112\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.921\" x2=\"-6.731\" y2=\"-2.921\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.112\" y1=\"2.54\" x2=\"7.112\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.89\" y1=\"0\" x2=\"7.874\" y2=\"0\" width=\"1.016\" layer=\"51\"/>\n<wire x1=\"-7.874\" y1=\"0\" x2=\"-8.89\" y2=\"0\" width=\"1.016\" layer=\"51\"/>\n<wire x1=\"-7.112\" y1=\"-2.54\" x2=\"-6.731\" y2=\"-2.921\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"6.731\" y1=\"2.921\" x2=\"7.112\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.731\" y1=\"-2.921\" x2=\"7.112\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-7.112\" y1=\"2.54\" x2=\"-6.731\" y2=\"2.921\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-8.89\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"8.89\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-6.858\" y=\"3.302\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.842\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"7.112\" y1=\"-0.508\" x2=\"7.747\" y2=\"0.508\" layer=\"21\"/>\n<rectangle x1=\"-7.747\" y1=\"-0.508\" x2=\"-7.112\" y2=\"0.508\" layer=\"21\"/>\n</package>\n<package name=\"V526-0\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype V526-0, grid 2.5 mm</description>\n<wire x1=\"-2.54\" y1=\"1.016\" x2=\"-2.286\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.286\" y1=\"1.27\" x2=\"2.54\" y2=\"1.016\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.286\" y1=\"-1.27\" x2=\"2.54\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.54\" y1=\"-1.016\" x2=\"-2.286\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.286\" y1=\"1.27\" x2=\"-2.286\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-1.016\" x2=\"2.54\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"-1.27\" x2=\"2.286\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"1.016\" x2=\"-2.54\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.413\" y=\"1.651\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.413\" y=\"-2.794\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0102R\">\n<description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-1\" y1=\"-0.5\" x2=\"1\" y2=\"-0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1\" y1=\"-0.5\" x2=\"1\" y2=\"0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1\" y1=\"0.5\" x2=\"-1\" y2=\"0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-1\" y1=\"0.5\" x2=\"-1\" y2=\"-0.5\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.9\" y=\"0\" dx=\"0.5\" dy=\"1.3\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.9\" y=\"0\" dx=\"0.5\" dy=\"1.3\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0102W\">\n<description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-1\" y1=\"-0.5\" x2=\"1\" y2=\"-0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1\" y1=\"-0.5\" x2=\"1\" y2=\"0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1\" y1=\"0.5\" x2=\"-1\" y2=\"0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-1\" y1=\"0.5\" x2=\"-1\" y2=\"-0.5\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.95\" y=\"0\" dx=\"0.6\" dy=\"1.3\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.95\" y=\"0\" dx=\"0.6\" dy=\"1.3\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0204R\">\n<description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-1.7\" y1=\"-0.6\" x2=\"1.7\" y2=\"-0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.7\" y1=\"-0.6\" x2=\"1.7\" y2=\"0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.7\" y1=\"0.6\" x2=\"-1.7\" y2=\"0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-1.7\" y1=\"0.6\" x2=\"-1.7\" y2=\"-0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"0.938\" y1=\"0.6\" x2=\"-0.938\" y2=\"0.6\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-0.938\" y1=\"-0.6\" x2=\"0.938\" y2=\"-0.6\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-1.5\" y=\"0\" dx=\"0.8\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.5\" y=\"0\" dx=\"0.8\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0204W\">\n<description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-1.7\" y1=\"-0.6\" x2=\"1.7\" y2=\"-0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.7\" y1=\"-0.6\" x2=\"1.7\" y2=\"0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.7\" y1=\"0.6\" x2=\"-1.7\" y2=\"0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-1.7\" y1=\"0.6\" x2=\"-1.7\" y2=\"-0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"0.684\" y1=\"0.6\" x2=\"-0.684\" y2=\"0.6\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-0.684\" y1=\"-0.6\" x2=\"0.684\" y2=\"-0.6\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-1.5\" y=\"0\" dx=\"1.2\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.5\" y=\"0\" dx=\"1.2\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0207R\">\n<description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-2.8\" y1=\"-1\" x2=\"2.8\" y2=\"-1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.8\" y1=\"-1\" x2=\"2.8\" y2=\"1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.8\" y1=\"1\" x2=\"-2.8\" y2=\"1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-2.8\" y1=\"1\" x2=\"-2.8\" y2=\"-1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.2125\" y1=\"1\" x2=\"-1.2125\" y2=\"1\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-1.2125\" y1=\"-1\" x2=\"1.2125\" y2=\"-1\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.25\" y=\"0\" dx=\"1.6\" dy=\"2.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.25\" y=\"0\" dx=\"1.6\" dy=\"2.5\" layer=\"1\"/>\n<text x=\"-2.2225\" y=\"1.5875\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.2225\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0207W\">\n<description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-2.8\" y1=\"-1\" x2=\"2.8\" y2=\"-1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.8\" y1=\"-1\" x2=\"2.8\" y2=\"1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.8\" y1=\"1\" x2=\"-2.8\" y2=\"1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-2.8\" y1=\"1\" x2=\"-2.8\" y2=\"-1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.149\" y1=\"1\" x2=\"-1.149\" y2=\"1\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-1.149\" y1=\"-1\" x2=\"1.149\" y2=\"-1\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.6\" y=\"0\" dx=\"2.4\" dy=\"2.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.6\" y=\"0\" dx=\"2.4\" dy=\"2.5\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.5875\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"0922V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0922, grid 7.5 mm</description>\n<wire x1=\"2.54\" y1=\"0\" x2=\"1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-3.81\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-5.08\" y=\"0\" radius=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-5.08\" y=\"0\" radius=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-0.508\" y=\"1.6764\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-2.9972\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<text x=\"-6.858\" y=\"2.54\" size=\"1.016\" layer=\"21\" ratio=\"12\">0922</text>\n<rectangle x1=\"-3.81\" y1=\"-0.4064\" x2=\"1.3208\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"RDH/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype RDH, grid 15 mm</description>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.858\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.096\" y1=\"3.048\" x2=\"-5.207\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.953\" y1=\"2.794\" x2=\"-5.207\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.096\" y1=\"-3.048\" x2=\"-5.207\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.953\" y1=\"-2.794\" x2=\"-5.207\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"2.794\" x2=\"5.207\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"2.794\" x2=\"-4.953\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"-2.794\" x2=\"5.207\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"-2.794\" x2=\"-4.953\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"3.048\" x2=\"5.207\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"-3.048\" x2=\"5.207\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.477\" y1=\"-2.667\" x2=\"-6.477\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.477\" y1=\"1.016\" x2=\"-6.477\" y2=\"-1.016\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-6.477\" y1=\"1.016\" x2=\"-6.477\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"-2.667\" x2=\"6.477\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"1.016\" x2=\"6.477\" y2=\"-1.016\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"6.477\" y1=\"1.016\" x2=\"6.477\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.858\" y1=\"0\" x2=\"7.62\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.477\" y1=\"2.667\" x2=\"-6.096\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.096\" y1=\"3.048\" x2=\"6.477\" y2=\"2.667\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.477\" y1=\"-2.667\" x2=\"-6.096\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"6.096\" y1=\"-3.048\" x2=\"6.477\" y2=\"-2.667\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.35\" y=\"3.4544\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-4.318\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<text x=\"4.572\" y=\"-1.7272\" size=\"1.27\" layer=\"51\" ratio=\"10\" rot=\"R90\">RDH</text>\n<rectangle x1=\"-6.7564\" y1=\"-0.4064\" x2=\"-6.4516\" y2=\"0.4064\" layer=\"51\"/>\n<rectangle x1=\"6.4516\" y1=\"-0.4064\" x2=\"6.7564\" y2=\"0.4064\" layer=\"51\"/>\n</package>\n<package name=\"MINI_MELF-0102AX\">\n<description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>\n<circle x=\"0\" y=\"0\" radius=\"0.6\" width=\"0\" layer=\"51\"/>\n<circle x=\"0\" y=\"0\" radius=\"0.6\" width=\"0\" layer=\"52\"/>\n<smd name=\"1\" x=\"0\" y=\"0\" dx=\"1.9\" dy=\"1.9\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"2\" x=\"0\" y=\"0\" dx=\"1.9\" dy=\"1.9\" layer=\"16\" roundness=\"100\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<hole x=\"0\" y=\"0\" drill=\"1.3\"/>\n</package>\n<package name=\"R0201\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt; chip&lt;p&gt;\nSource: http://www.vishay.com/docs/20008/dcrcw.pdf</description>\n<smd name=\"1\" x=\"-0.255\" y=\"0\" dx=\"0.28\" dy=\"0.43\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.255\" y=\"0\" dx=\"0.28\" dy=\"0.43\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.635\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.3\" y1=\"-0.15\" x2=\"-0.15\" y2=\"0.15\" layer=\"51\"/>\n<rectangle x1=\"0.15\" y1=\"-0.15\" x2=\"0.3\" y2=\"0.15\" layer=\"51\"/>\n<rectangle x1=\"-0.15\" y1=\"-0.15\" x2=\"0.15\" y2=\"0.15\" layer=\"21\"/>\n</package>\n<package name=\"VTA52\">\n<description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;\nMIL SIZE RBR52&lt;br&gt;\nSource: VISHAY .. vta56.pdf</description>\n<wire x1=\"-15.24\" y1=\"0\" x2=\"-13.97\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"12.6225\" y1=\"0.025\" x2=\"12.6225\" y2=\"4.725\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"12.6225\" y1=\"4.725\" x2=\"-12.6225\" y2=\"4.725\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-12.6225\" y1=\"4.725\" x2=\"-12.6225\" y2=\"0.025\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-12.6225\" y1=\"0.025\" x2=\"-12.6225\" y2=\"-4.65\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-12.6225\" y1=\"-4.65\" x2=\"12.6225\" y2=\"-4.65\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"12.6225\" y1=\"-4.65\" x2=\"12.6225\" y2=\"0.025\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"13.97\" y1=\"0\" x2=\"15.24\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-15.24\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"15.24\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<text x=\"-3.81\" y=\"5.08\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-13.97\" y1=\"-0.3048\" x2=\"-12.5675\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"12.5675\" y1=\"-0.3048\" x2=\"13.97\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"VTA53\">\n<description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;\nMIL SIZE RBR53&lt;br&gt;\nSource: VISHAY .. vta56.pdf</description>\n<wire x1=\"-12.065\" y1=\"0\" x2=\"-10.795\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"9.8975\" y1=\"0\" x2=\"9.8975\" y2=\"4.7\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.8975\" y1=\"4.7\" x2=\"-9.8975\" y2=\"4.7\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.8975\" y1=\"4.7\" x2=\"-9.8975\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.8975\" y1=\"0\" x2=\"-9.8975\" y2=\"-4.675\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.8975\" y1=\"-4.675\" x2=\"9.8975\" y2=\"-4.675\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.8975\" y1=\"-4.675\" x2=\"9.8975\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"10.795\" y1=\"0\" x2=\"12.065\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-12.065\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"12.065\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<text x=\"-3.81\" y=\"5.08\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-10.795\" y1=\"-0.3048\" x2=\"-9.8425\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"9.8425\" y1=\"-0.3048\" x2=\"10.795\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"VTA54\">\n<description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;\nMIL SIZE RBR54&lt;br&gt;\nSource: VISHAY .. vta56.pdf</description>\n<wire x1=\"-12.065\" y1=\"0\" x2=\"-10.795\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"9.8975\" y1=\"0\" x2=\"9.8975\" y2=\"3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.8975\" y1=\"3.3\" x2=\"-9.8975\" y2=\"3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.8975\" y1=\"3.3\" x2=\"-9.8975\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.8975\" y1=\"0\" x2=\"-9.8975\" y2=\"-3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.8975\" y1=\"-3.3\" x2=\"9.8975\" y2=\"-3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.8975\" y1=\"-3.3\" x2=\"9.8975\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"10.795\" y1=\"0\" x2=\"12.065\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-12.065\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"12.065\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<text x=\"-3.81\" y=\"3.81\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-10.795\" y1=\"-0.3048\" x2=\"-9.8425\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"9.8425\" y1=\"-0.3048\" x2=\"10.795\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"VTA55\">\n<description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;\nMIL SIZE RBR55&lt;br&gt;\nSource: VISHAY .. vta56.pdf</description>\n<wire x1=\"-8.255\" y1=\"0\" x2=\"-6.985\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"6.405\" y1=\"0\" x2=\"6.405\" y2=\"3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.405\" y1=\"3.3\" x2=\"-6.405\" y2=\"3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.405\" y1=\"3.3\" x2=\"-6.405\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.405\" y1=\"0\" x2=\"-6.405\" y2=\"-3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.405\" y1=\"-3.3\" x2=\"6.405\" y2=\"-3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.405\" y1=\"-3.3\" x2=\"6.405\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"0\" x2=\"8.255\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-8.255\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"8.255\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<text x=\"-3.81\" y=\"3.81\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-6.985\" y1=\"-0.3048\" x2=\"-6.35\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"6.35\" y1=\"-0.3048\" x2=\"6.985\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"VTA56\">\n<description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;\nMIL SIZE RBR56&lt;br&gt;\nSource: VISHAY .. vta56.pdf</description>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.08\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"4.5\" y1=\"0\" x2=\"4.5\" y2=\"3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.5\" y1=\"3.3\" x2=\"-4.5\" y2=\"3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.5\" y1=\"3.3\" x2=\"-4.5\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.5\" y1=\"0\" x2=\"-4.5\" y2=\"-3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.5\" y1=\"-3.3\" x2=\"4.5\" y2=\"-3.3\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.5\" y1=\"-3.3\" x2=\"4.5\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"0\" x2=\"6.35\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<text x=\"-3.81\" y=\"3.81\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-5.08\" y1=\"-0.3048\" x2=\"-4.445\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"4.445\" y1=\"-0.3048\" x2=\"5.08\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"VMTA55\">\n<description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;\nMIL SIZE RNC55&lt;br&gt;\nSource: VISHAY .. vta56.pdf</description>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-4.26\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"3.3375\" y1=\"-1.45\" x2=\"3.3375\" y2=\"1.45\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.3375\" y1=\"1.45\" x2=\"-3.3625\" y2=\"1.45\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.3625\" y1=\"1.45\" x2=\"-3.3625\" y2=\"-1.45\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.3625\" y1=\"-1.45\" x2=\"3.3375\" y2=\"-1.45\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.235\" y1=\"0\" x2=\"5.08\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<text x=\"-3.175\" y=\"1.905\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-4.26\" y1=\"-0.3048\" x2=\"-3.3075\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"3.2825\" y1=\"-0.3048\" x2=\"4.235\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"VMTB60\">\n<description>&lt;b&gt;Bulk Metal® Foil Technology&lt;/b&gt;, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements&lt;p&gt;\nMIL SIZE RNC60&lt;br&gt;\nSource: VISHAY .. vta56.pdf</description>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.585\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"4.6875\" y1=\"-1.95\" x2=\"4.6875\" y2=\"1.95\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.6875\" y1=\"1.95\" x2=\"-4.6875\" y2=\"1.95\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.6875\" y1=\"1.95\" x2=\"-4.6875\" y2=\"-1.95\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.6875\" y1=\"-1.95\" x2=\"4.6875\" y2=\"-1.95\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.585\" y1=\"0\" x2=\"6.35\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"1.1\" shape=\"octagon\"/>\n<text x=\"-4.445\" y=\"2.54\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-4.445\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-5.585\" y1=\"-0.3048\" x2=\"-4.6325\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"4.6325\" y1=\"-0.3048\" x2=\"5.585\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"R4527\">\n<description>&lt;b&gt;Package 4527&lt;/b&gt;&lt;p&gt;\nSource: http://www.vishay.com/docs/31059/wsrhigh.pdf</description>\n<wire x1=\"-5.675\" y1=\"-3.375\" x2=\"5.65\" y2=\"-3.375\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"5.65\" y1=\"-3.375\" x2=\"5.65\" y2=\"3.375\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"5.65\" y1=\"3.375\" x2=\"-5.675\" y2=\"3.375\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-5.675\" y1=\"3.375\" x2=\"-5.675\" y2=\"-3.375\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-4.575\" y=\"0\" dx=\"3.94\" dy=\"5.84\" layer=\"1\"/>\n<smd name=\"2\" x=\"4.575\" y=\"0\" dx=\"3.94\" dy=\"5.84\" layer=\"1\"/>\n<text x=\"-5.715\" y=\"3.81\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-5.715\" y=\"-5.08\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"WSC0001\">\n<description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;\nSource: VISHAY wscwsn.pdf</description>\n<wire x1=\"-3.075\" y1=\"1.8\" x2=\"-3.075\" y2=\"-1.8\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-3.075\" y1=\"-1.8\" x2=\"3.075\" y2=\"-1.8\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"3.075\" y1=\"-1.8\" x2=\"3.075\" y2=\"1.8\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"3.075\" y1=\"1.8\" x2=\"-3.075\" y2=\"1.8\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-3.075\" y1=\"1.8\" x2=\"-3.075\" y2=\"1.606\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-3.075\" y1=\"-1.606\" x2=\"-3.075\" y2=\"-1.8\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"3.075\" y1=\"1.606\" x2=\"3.075\" y2=\"1.8\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"3.075\" y1=\"-1.8\" x2=\"3.075\" y2=\"-1.606\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.675\" y=\"0\" dx=\"2.29\" dy=\"2.92\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.675\" y=\"0\" dx=\"2.29\" dy=\"2.92\" layer=\"1\"/>\n<text x=\"-2.544\" y=\"2.229\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.544\" y=\"-3.501\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"WSC0002\">\n<description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;\nSource: VISHAY wscwsn.pdf</description>\n<wire x1=\"-5.55\" y1=\"3.375\" x2=\"-5.55\" y2=\"-3.375\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-5.55\" y1=\"-3.375\" x2=\"5.55\" y2=\"-3.375\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"5.55\" y1=\"-3.375\" x2=\"5.55\" y2=\"3.375\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"5.55\" y1=\"3.375\" x2=\"-5.55\" y2=\"3.375\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-4.575\" y=\"0.025\" dx=\"3.94\" dy=\"5.84\" layer=\"1\"/>\n<smd name=\"2\" x=\"4.575\" y=\"0\" dx=\"3.94\" dy=\"5.84\" layer=\"1\"/>\n<text x=\"-5.65\" y=\"3.9\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-5.65\" y=\"-5.15\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"WSC01/2\">\n<description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;\nSource: VISHAY wscwsn.pdf</description>\n<wire x1=\"-2.45\" y1=\"1.475\" x2=\"-2.45\" y2=\"-1.475\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-2.45\" y1=\"-1.475\" x2=\"2.45\" y2=\"-1.475\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"2.45\" y1=\"-1.475\" x2=\"2.45\" y2=\"1.475\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.45\" y1=\"1.475\" x2=\"-2.45\" y2=\"1.475\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-2.45\" y1=\"1.475\" x2=\"-2.45\" y2=\"1.106\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-2.45\" y1=\"-1.106\" x2=\"-2.45\" y2=\"-1.475\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"2.45\" y1=\"1.106\" x2=\"2.45\" y2=\"1.475\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"2.45\" y1=\"-1.475\" x2=\"2.45\" y2=\"-1.106\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.1\" y=\"0\" dx=\"2.16\" dy=\"1.78\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.1\" y=\"0\" dx=\"2.16\" dy=\"1.78\" layer=\"1\"/>\n<text x=\"-2.544\" y=\"1.904\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.544\" y=\"-3.176\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"WSC2515\">\n<description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;\nSource: VISHAY wscwsn.pdf</description>\n<wire x1=\"-3.075\" y1=\"1.8\" x2=\"-3.075\" y2=\"-1.8\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-3.075\" y1=\"-1.8\" x2=\"3.05\" y2=\"-1.8\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"3.05\" y1=\"-1.8\" x2=\"3.05\" y2=\"1.8\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"3.05\" y1=\"1.8\" x2=\"-3.075\" y2=\"1.8\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-3.075\" y1=\"1.8\" x2=\"-3.075\" y2=\"1.606\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-3.075\" y1=\"-1.606\" x2=\"-3.075\" y2=\"-1.8\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"3.05\" y1=\"1.606\" x2=\"3.05\" y2=\"1.8\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"3.05\" y1=\"-1.8\" x2=\"3.05\" y2=\"-1.606\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.675\" y=\"0\" dx=\"2.29\" dy=\"2.92\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.675\" y=\"0\" dx=\"2.29\" dy=\"2.92\" layer=\"1\"/>\n<text x=\"-3.2\" y=\"2.15\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-3.2\" y=\"-3.4\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"WSC4527\">\n<description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;\nSource: VISHAY wscwsn.pdf</description>\n<wire x1=\"-5.675\" y1=\"3.4\" x2=\"-5.675\" y2=\"-3.375\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-5.675\" y1=\"-3.375\" x2=\"5.675\" y2=\"-3.375\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"5.675\" y1=\"-3.375\" x2=\"5.675\" y2=\"3.4\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"5.675\" y1=\"3.4\" x2=\"-5.675\" y2=\"3.4\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-4.575\" y=\"0.025\" dx=\"3.94\" dy=\"5.84\" layer=\"1\"/>\n<smd name=\"2\" x=\"4.575\" y=\"0\" dx=\"3.94\" dy=\"5.84\" layer=\"1\"/>\n<text x=\"-5.775\" y=\"3.925\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-5.775\" y=\"-5.15\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"WSC6927\">\n<description>&lt;b&gt;Wirewound Resistors, Precision Power&lt;/b&gt;&lt;p&gt;\nSource: VISHAY wscwsn.pdf</description>\n<wire x1=\"-8.65\" y1=\"3.375\" x2=\"-8.65\" y2=\"-3.375\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-8.65\" y1=\"-3.375\" x2=\"8.65\" y2=\"-3.375\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"8.65\" y1=\"-3.375\" x2=\"8.65\" y2=\"3.375\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"8.65\" y1=\"3.375\" x2=\"-8.65\" y2=\"3.375\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-7.95\" y=\"0.025\" dx=\"3.94\" dy=\"5.97\" layer=\"1\"/>\n<smd name=\"2\" x=\"7.95\" y=\"0\" dx=\"3.94\" dy=\"5.97\" layer=\"1\"/>\n<text x=\"-8.75\" y=\"3.9\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-8.75\" y=\"-5.15\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"R1218\">\n<description>&lt;b&gt;CRCW1218 Thick Film, Rectangular Chip Resistors&lt;/b&gt;&lt;p&gt;\nSource: http://www.vishay.com .. dcrcw.pdf</description>\n<wire x1=\"-0.913\" y1=\"-2.219\" x2=\"0.939\" y2=\"-2.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.913\" y1=\"2.219\" x2=\"-0.939\" y2=\"2.219\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.475\" y=\"0\" dx=\"1.05\" dy=\"4.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.475\" y=\"0\" dx=\"1.05\" dy=\"4.9\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"2.54\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-3.81\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-2.3\" x2=\"-0.9009\" y2=\"2.3\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-2.3\" x2=\"1.6645\" y2=\"2.3\" layer=\"51\"/>\n</package>\n<package name=\"1812X7R\">\n<description>&lt;b&gt;Chip Monolithic Ceramic Capacitors&lt;/b&gt; Medium Voltage High Capacitance for General Use&lt;p&gt;\nSource: http://www.murata.com .. GRM43DR72E224KW01.pdf</description>\n<wire x1=\"-1.1\" y1=\"1.5\" x2=\"1.1\" y2=\"1.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.1\" y1=\"-1.5\" x2=\"-1.1\" y2=\"-1.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-0.6\" y1=\"1.5\" x2=\"0.6\" y2=\"1.5\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"0.6\" y1=\"-1.5\" x2=\"-0.6\" y2=\"-1.5\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"1\" x=\"-1.425\" y=\"0\" dx=\"0.8\" dy=\"3.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.425\" y=\"0\" dx=\"0.8\" dy=\"3.5\" layer=\"1\" rot=\"R180\"/>\n<text x=\"-1.9456\" y=\"1.9958\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.9456\" y=\"-3.7738\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.4\" y1=\"-1.6\" x2=\"-1.1\" y2=\"1.6\" layer=\"51\"/>\n<rectangle x1=\"1.1\" y1=\"-1.6\" x2=\"1.4\" y2=\"1.6\" layer=\"51\" rot=\"R180\"/>\n</package>\n</packages>\n<symbols>\n<symbol name=\"R-EU\">\n<wire x1=\"-2.54\" y1=\"-0.889\" x2=\"2.54\" y2=\"-0.889\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"2.54\" y1=\"0.889\" x2=\"-2.54\" y2=\"0.889\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"2.54\" y1=\"-0.889\" x2=\"2.54\" y2=\"0.889\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"-2.54\" y1=\"-0.889\" x2=\"-2.54\" y2=\"0.889\" width=\"0.254\" layer=\"94\"/>\n<text x=\"-3.81\" y=\"1.4986\" size=\"1.778\" layer=\"95\">&gt;NAME</text>\n<text x=\"-3.81\" y=\"-3.302\" size=\"1.778\" layer=\"96\">&gt;VALUE</text>\n<pin name=\"2\" x=\"5.08\" y=\"0\" visible=\"off\" length=\"short\" direction=\"pas\" swaplevel=\"1\" rot=\"R180\"/>\n<pin name=\"1\" x=\"-5.08\" y=\"0\" visible=\"off\" length=\"short\" direction=\"pas\" swaplevel=\"1\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"R-EU_\" prefix=\"R\" uservalue=\"yes\">\n<description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>\n<gates>\n<gate name=\"G$1\" symbol=\"R-EU\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"R0402\" package=\"R0402\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R0603\" package=\"R0603\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R0805\" package=\"R0805\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R0805W\" package=\"R0805W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1005\" package=\"R1005\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1206\" package=\"R1206\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1206W\" package=\"R1206W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1210\" package=\"R1210\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1210W\" package=\"R1210W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2010\" package=\"R2010\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2010W\" package=\"R2010W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2012\" package=\"R2012\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2012W\" package=\"R2012W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2512\" package=\"R2512\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2512W\" package=\"R2512W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R3216\" package=\"R3216\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R3216W\" package=\"R3216W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R3225\" package=\"R3225\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R3225W\" package=\"R3225W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R5025\" package=\"R5025\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R5025W\" package=\"R5025W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R6332\" package=\"R6332\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R6332W\" package=\"R6332W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M0805\" package=\"M0805\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M1206\" package=\"M1206\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M1406\" package=\"M1406\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M2012\" package=\"M2012\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M2309\" package=\"M2309\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M3216\" package=\"M3216\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M3516\" package=\"M3516\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M5923\" package=\"M5923\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0204/5\" package=\"0204/5\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0204/7\" package=\"0204/7\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0204/2V\" package=\"0204V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/10\" package=\"0207/10\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/12\" package=\"0207/12\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/15\" package=\"0207/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/2V\" package=\"0207/2V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/5V\" package=\"0207/5V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/7\" package=\"0207/7\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0309/10\" package=\"0309/10\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0309/12\" package=\"0309/12\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0309/V\" package=\"0309V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0411/12\" package=\"0411/12\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0411/15\" package=\"0411/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0411/3V\" package=\"0411V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0414/15\" package=\"0414/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0414/5V\" package=\"0414V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0617/17\" package=\"0617/17\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0617/22\" package=\"0617/22\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0617/5V\" package=\"0617V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0922/22\" package=\"0922/22\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0613/5V\" package=\"P0613V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0613/15\" package=\"P0613/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0817/22\" package=\"P0817/22\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0817/7V\" package=\"P0817V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"V234/12\" package=\"V234/12\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"V235/17\" package=\"V235/17\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"V526-0\" package=\"V526-0\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0102R\" package=\"MINI_MELF-0102R\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0102W\" package=\"MINI_MELF-0102W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0204R\" package=\"MINI_MELF-0204R\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0204W\" package=\"MINI_MELF-0204W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0207R\" package=\"MINI_MELF-0207R\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0207W\" package=\"MINI_MELF-0207W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0922V\" package=\"0922V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"RDH/15\" package=\"RDH/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0102AX\" package=\"MINI_MELF-0102AX\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R0201\" package=\"R0201\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"VTA52\" package=\"VTA52\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"VTA53\" package=\"VTA53\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"VTA54\" package=\"VTA54\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"VTA55\" package=\"VTA55\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"VTA56\" package=\"VTA56\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"VMTA55\" package=\"VMTA55\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"VMTB60\" package=\"VMTB60\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R4527\" package=\"R4527\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"WSC0001\" package=\"WSC0001\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"WSC0002\" package=\"WSC0002\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"WSC01/2\" package=\"WSC01/2\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"WSC2515\" package=\"WSC2515\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"WSC4527\" package=\"WSC4527\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"WSC6927\" package=\"WSC6927\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1218\" package=\"R1218\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"1812X7R\" package=\"1812X7R\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"10118194-0001LF\">\n<packages>\n<package name=\"FRAMATOME_10118194-0001LF\">\n<wire x1=\"-3.5\" y1=\"2.85\" x2=\"3.5\" y2=\"2.85\" width=\"0.127\" layer=\"51\"/>\n<wire x1=\"-3.5\" y1=\"-1.25\" x2=\"-3.5\" y2=\"-2.1\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-3.5\" y1=\"-2.1\" x2=\"-3.5\" y2=\"-2.15\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"3.5\" y1=\"-1.25\" x2=\"3.5\" y2=\"-2.15\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-5.25\" y1=\"-1.45\" x2=\"4.5\" y2=\"-1.45\" width=\"0.127\" layer=\"21\"/>\n<text x=\"4.265540625\" y=\"-1.505490625\" size=\"1.274640625\" layer=\"51\">PCB Edge</text>\n<wire x1=\"-3.5\" y1=\"-2.1\" x2=\"-4\" y2=\"-2.6\" width=\"0.127\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.9\" y1=\"-2.9\" x2=\"-3.1\" y2=\"-2.1\" width=\"0.127\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.1\" y1=\"-2.1\" x2=\"-3.1\" y2=\"-1.8\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-3.1\" y1=\"-1.8\" x2=\"-2.8\" y2=\"-1.8\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-2.8\" y1=\"-1.8\" x2=\"-2.4\" y2=\"-2.2\" width=\"0.127\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"3.5\" y1=\"-1.25\" x2=\"3.5\" y2=\"-2.1\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"3.5\" y1=\"-2.1\" x2=\"3.5\" y2=\"-2.15\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"3.5\" y1=\"-2.1\" x2=\"4\" y2=\"-2.6\" width=\"0.127\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"3.9\" y1=\"-2.9\" x2=\"3.1\" y2=\"-2.1\" width=\"0.127\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.1\" y1=\"-2.1\" x2=\"3.1\" y2=\"-1.8\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"3.1\" y1=\"-1.8\" x2=\"2.8\" y2=\"-1.8\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"2.8\" y1=\"-1.8\" x2=\"2.4\" y2=\"-2.2\" width=\"0.127\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.4\" y1=\"-2.2\" x2=\"2.3\" y2=\"-2.2\" width=\"0.127\" layer=\"21\"/>\n<wire x1=\"-2.5\" y1=\"3.7\" x2=\"3.8\" y2=\"3.7\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"3.8\" y1=\"3.7\" x2=\"3.8\" y2=\"1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"3.8\" y1=\"1.2\" x2=\"4.7\" y2=\"1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"4.7\" y1=\"1.2\" x2=\"4.7\" y2=\"-1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"4.7\" y1=\"-1.2\" x2=\"4.3\" y2=\"-1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"4.3\" y1=\"-1.2\" x2=\"4.3\" y2=\"-3.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"4.3\" y1=\"-3.2\" x2=\"-4.3\" y2=\"-3.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-4.3\" y1=\"-3.2\" x2=\"-4.3\" y2=\"-1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-4.3\" y1=\"-1.2\" x2=\"-4.7\" y2=\"-1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-4.7\" y1=\"-1.2\" x2=\"-4.7\" y2=\"1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-4.7\" y1=\"1.2\" x2=\"-3.8\" y2=\"1.2\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-3.8\" y1=\"1.2\" x2=\"-3.8\" y2=\"3.7\" width=\"0.127\" layer=\"39\"/>\n<wire x1=\"-3.8\" y1=\"3.7\" x2=\"-1.8\" y2=\"3.7\" width=\"0.127\" layer=\"39\"/>\n<text x=\"-4.50763125\" y=\"-0.901528125\" size=\"1.272159375\" layer=\"25\" rot=\"R90\">&gt;NAME</text>\n<text x=\"5.903740625\" y=\"0.1000625\" size=\"1.2708\" layer=\"27\" rot=\"R90\">&gt;VALUE</text>\n<smd name=\"1\" x=\"-1.3\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<smd name=\"2\" x=\"-0.65\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<smd name=\"3\" x=\"0\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<smd name=\"4\" x=\"0.65\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<smd name=\"5\" x=\"1.3\" y=\"2.675\" dx=\"0.45\" dy=\"1.35\" layer=\"1\" rot=\"R180\"/>\n<pad name=\"P$6\" x=\"-2.5\" y=\"2.7\" drill=\"0.9\"/>\n<pad name=\"P$7\" x=\"2.5\" y=\"2.7\" drill=\"0.9\"/>\n<pad name=\"P$8\" x=\"-3.5\" y=\"0\" drill=\"1.2\"/>\n<pad name=\"P$9\" x=\"3.5\" y=\"0\" drill=\"1.2\"/>\n<smd name=\"P$10\" x=\"-1\" y=\"0\" dx=\"1.5\" dy=\"1.55\" layer=\"1\"/>\n<smd name=\"P$11\" x=\"1\" y=\"0\" dx=\"1.5\" dy=\"1.55\" layer=\"1\"/>\n<smd name=\"P$12\" x=\"-3.05\" y=\"0\" dx=\"1.5\" dy=\"1.55\" layer=\"1\"/>\n<smd name=\"P$13\" x=\"3.05\" y=\"0\" dx=\"1.5\" dy=\"1.55\" layer=\"1\"/>\n</package>\n</packages>\n<symbols>\n<symbol name=\"10118194-0001LF\">\n<wire x1=\"-7.62\" y1=\"5.08\" x2=\"-7.62\" y2=\"-5.08\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"-7.62\" y1=\"-5.08\" x2=\"7.62\" y2=\"-5.08\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"7.62\" y1=\"-5.08\" x2=\"7.62\" y2=\"5.08\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"7.62\" y1=\"5.08\" x2=\"-7.62\" y2=\"5.08\" width=\"0.254\" layer=\"94\"/>\n<text x=\"-7.38075\" y=\"5.599190625\" size=\"1.272540625\" layer=\"95\">&gt;NAME</text>\n<text x=\"-7.62965\" y=\"-7.62965\" size=\"1.271609375\" layer=\"96\">&gt;VALUE</text>\n<pin name=\"D+\" x=\"-12.7\" y=\"2.54\" length=\"middle\"/>\n<pin name=\"D-\" x=\"-12.7\" y=\"0\" length=\"middle\"/>\n<pin name=\"ID\" x=\"-12.7\" y=\"-2.54\" length=\"middle\" direction=\"pas\"/>\n<pin name=\"GND\" x=\"12.7\" y=\"-2.54\" length=\"middle\" direction=\"pwr\" rot=\"R180\"/>\n<pin name=\"VDD\" x=\"12.7\" y=\"2.54\" length=\"middle\" direction=\"pwr\" rot=\"R180\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"10118194-0001LF\" prefix=\"J\">\n<description>Conn Micro USB Type B RCP 5 POS 0.65mm Solder RA SMD 5 Terminal 1 Port T/R</description>\n<gates>\n<gate name=\"G$1\" symbol=\"10118194-0001LF\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"\" package=\"FRAMATOME_10118194-0001LF\">\n<connects>\n<connect gate=\"G$1\" pin=\"D+\" pad=\"3\"/>\n<connect gate=\"G$1\" pin=\"D-\" pad=\"2\"/>\n<connect gate=\"G$1\" pin=\"GND\" pad=\"5\"/>\n<connect gate=\"G$1\" pin=\"ID\" pad=\"4\"/>\n<connect gate=\"G$1\" pin=\"VDD\" pad=\"1\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"AVAILABILITY\" value=\"Good\"/>\n<attribute name=\"DESCRIPTION\" value=\" Conn Micro USB Type B RCP 5 POS 0.65mm Solder RA SMD 5 Terminal 1 Port T/R \"/>\n<attribute name=\"MF\" value=\"Amphenol\"/>\n<attribute name=\"MP\" value=\"10118194-0001LF\"/>\n<attribute name=\"PACKAGE\" value=\"None\"/>\n<attribute name=\"PRICE\" value=\"0.24 USD\"/>\n</technology>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"MF_IC_Digital\">\n<packages>\n<package name=\"EFM8BB10F(2/4/8)G-A-QFN20\">\n<description>&lt;b&gt;Description:&lt;/b&gt; Silicon Labs Busy Bee QFN20 Package.&lt;br/&gt;</description>\n<smd name=\"PAD\" x=\"0\" y=\"0\" dx=\"1.6\" dy=\"1.6\" layer=\"1\" roundness=\"20\" cream=\"no\"/>\n<smd name=\"P$1\" x=\"-1.265\" y=\"1.265\" dx=\"0.34\" dy=\"0.34\" layer=\"1\"/>\n<smd name=\"P$2\" x=\"-1.355\" y=\"0.75\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$3\" x=\"-1.355\" y=\"0.25\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$4\" x=\"-1.355\" y=\"-0.25\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$5\" x=\"-1.355\" y=\"-0.75\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$6\" x=\"-1.265\" y=\"-1.265\" dx=\"0.34\" dy=\"0.34\" layer=\"1\"/>\n<smd name=\"P$7\" x=\"-0.75\" y=\"-1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$8\" x=\"-0.25\" y=\"-1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$9\" x=\"0.25\" y=\"-1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$10\" x=\"0.75\" y=\"-1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$11\" x=\"1.265\" y=\"-1.265\" dx=\"0.34\" dy=\"0.34\" layer=\"1\"/>\n<smd name=\"P$12\" x=\"1.355\" y=\"-0.75\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$13\" x=\"1.355\" y=\"-0.25\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$14\" x=\"1.355\" y=\"0.25\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$15\" x=\"1.355\" y=\"0.75\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\" rot=\"R90\"/>\n<smd name=\"P$16\" x=\"1.265\" y=\"1.265\" dx=\"0.34\" dy=\"0.34\" layer=\"1\"/>\n<smd name=\"P$17\" x=\"0.75\" y=\"1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$18\" x=\"0.25\" y=\"1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$19\" x=\"-0.25\" y=\"1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"P$20\" x=\"-0.75\" y=\"1.355\" dx=\"0.28\" dy=\"0.61\" layer=\"1\" roundness=\"100\"/>\n<polygon width=\"0.127\" layer=\"31\">\n<vertex x=\"-0.6\" y=\"0.6\"/>\n<vertex x=\"-0.6\" y=\"0.1\"/>\n<vertex x=\"-0.1\" y=\"0.1\"/>\n<vertex x=\"-0.1\" y=\"0.6\"/>\n</polygon>\n<polygon width=\"0.127\" layer=\"31\">\n<vertex x=\"0.1\" y=\"0.6\"/>\n<vertex x=\"0.1\" y=\"0.1\"/>\n<vertex x=\"0.6\" y=\"0.1\"/>\n<vertex x=\"0.6\" y=\"0.6\"/>\n</polygon>\n<polygon width=\"0.127\" layer=\"31\">\n<vertex x=\"0.1\" y=\"-0.1\"/>\n<vertex x=\"0.1\" y=\"-0.6\"/>\n<vertex x=\"0.6\" y=\"-0.6\"/>\n<vertex x=\"0.6\" y=\"-0.1\"/>\n</polygon>\n<polygon width=\"0.127\" layer=\"31\">\n<vertex x=\"-0.6\" y=\"-0.1\"/>\n<vertex x=\"-0.6\" y=\"-0.6\"/>\n<vertex x=\"-0.1\" y=\"-0.6\"/>\n<vertex x=\"-0.1\" y=\"-0.1\"/>\n</polygon>\n<wire x1=\"-1.575\" y1=\"1.575\" x2=\"-1.1\" y2=\"1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"1.1\" y1=\"1.575\" x2=\"1.575\" y2=\"1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"1.575\" y1=\"1.575\" x2=\"1.575\" y2=\"1.1\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"1.575\" y1=\"-1.1\" x2=\"1.575\" y2=\"-1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"1.575\" y1=\"-1.575\" x2=\"1.1\" y2=\"-1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"-1.1\" y1=\"-1.575\" x2=\"-1.575\" y2=\"-1.575\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"-1.575\" y1=\"-1.575\" x2=\"-1.575\" y2=\"-1.1\" width=\"0.15\" layer=\"21\"/>\n<wire x1=\"-1.575\" y1=\"1.1\" x2=\"-1.575\" y2=\"1.575\" width=\"0.15\" layer=\"21\"/>\n<polygon width=\"0.127\" layer=\"21\">\n<vertex x=\"-2.2\" y=\"1.3\" curve=\"90\"/>\n<vertex x=\"-2\" y=\"1.1\" curve=\"90\"/>\n<vertex x=\"-1.8\" y=\"1.3\" curve=\"90\"/>\n<vertex x=\"-2\" y=\"1.5\" curve=\"90\"/>\n</polygon>\n<text x=\"-1.575\" y=\"1.9\" size=\"1.016\" layer=\"25\" font=\"vector\" ratio=\"16\">&gt;NAME</text>\n</package>\n</packages>\n<symbols>\n<symbol name=\"EFM8BB10F(2/4/8)G-A-QFN20\">\n<description>&lt;b&gt;Manufacturer Part #:&lt;/b&gt; EFM8BB10F(2/4/8)G-A-QFN20&lt;br/&gt;\n&lt;b&gt;Manufacturer:&lt;/b&gt; Silicon Labs&lt;br/&gt;\n&lt;b&gt;Description:&lt;/b&gt; Busy Bee 8-bit Microcontrollers - MCU (2/4/8)kB / (256/512)B RAM 12b ADC &lt;br/&gt;</description>\n<pin name=\"VDD\" x=\"-2.54\" y=\"0\" visible=\"off\" length=\"short\"/>\n<pin name=\"GND\" x=\"-2.54\" y=\"-43.18\" visible=\"off\" length=\"short\"/>\n<pin name=\"P0.0\" x=\"17.78\" y=\"0\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P0.1\" x=\"17.78\" y=\"-2.54\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"!RST!/C2CK\" x=\"-2.54\" y=\"-10.16\" visible=\"off\" length=\"short\"/>\n<pin name=\"P0.2\" x=\"17.78\" y=\"-5.08\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"C2D/P2.7\" x=\"17.78\" y=\"-43.18\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P1.6\" x=\"17.78\" y=\"-35.56\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P1.5\" x=\"17.78\" y=\"-33.02\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P0.3\" x=\"17.78\" y=\"-7.62\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P0.4\" x=\"17.78\" y=\"-10.16\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P0.5\" x=\"17.78\" y=\"-12.7\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P0.6\" x=\"17.78\" y=\"-15.24\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P0.7\" x=\"17.78\" y=\"-17.78\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P1.0\" x=\"17.78\" y=\"-22.86\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P1.1\" x=\"17.78\" y=\"-25.4\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P1.2\" x=\"17.78\" y=\"-27.94\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P1.3\" x=\"17.78\" y=\"-30.48\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<pin name=\"P1.7\" x=\"17.78\" y=\"-38.1\" visible=\"off\" length=\"short\" rot=\"R180\"/>\n<text x=\"1.27\" y=\"-10.16\" size=\"1.016\" layer=\"97\" font=\"vector\" align=\"center-left\">!RST!/C2CK</text>\n<text x=\"13.97\" y=\"-43.18\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">C2D/P2.7</text>\n<text x=\"1.27\" y=\"-43.18\" size=\"1.016\" layer=\"97\" font=\"vector\" align=\"center-left\">GND</text>\n<text x=\"13.97\" y=\"0\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P0.0</text>\n<text x=\"13.97\" y=\"-2.54\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P0.1</text>\n<text x=\"13.97\" y=\"-5.08\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P0.2</text>\n<text x=\"13.97\" y=\"-7.62\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P0.3</text>\n<text x=\"13.97\" y=\"-10.16\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P0.4</text>\n<text x=\"13.97\" y=\"-12.7\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P0.5</text>\n<text x=\"13.97\" y=\"-15.24\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P0.6</text>\n<text x=\"13.97\" y=\"-17.78\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P0.7</text>\n<text x=\"13.97\" y=\"-22.86\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P1.0</text>\n<text x=\"13.97\" y=\"-25.4\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P1.1</text>\n<text x=\"13.97\" y=\"-27.94\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P1.2</text>\n<text x=\"13.97\" y=\"-30.48\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P1.3</text>\n<text x=\"13.97\" y=\"-38.1\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P1.7</text>\n<text x=\"13.97\" y=\"-33.02\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P1.5</text>\n<text x=\"13.97\" y=\"-35.56\" size=\"1.016\" layer=\"97\" font=\"vector\" rot=\"R180\" align=\"center-left\">P1.6</text>\n<text x=\"1.27\" y=\"0\" size=\"1.016\" layer=\"97\" font=\"vector\" align=\"center-left\">VDD</text>\n<wire x1=\"0\" y1=\"1.27\" x2=\"15.24\" y2=\"1.27\" width=\"0.127\" layer=\"94\"/>\n<wire x1=\"15.24\" y1=\"1.27\" x2=\"15.24\" y2=\"-44.45\" width=\"0.127\" layer=\"94\"/>\n<wire x1=\"15.24\" y1=\"-44.45\" x2=\"0\" y2=\"-44.45\" width=\"0.127\" layer=\"94\"/>\n<wire x1=\"0\" y1=\"-44.45\" x2=\"0\" y2=\"1.27\" width=\"0.127\" layer=\"94\"/>\n<text x=\"0\" y=\"5.08\" size=\"1.016\" layer=\"95\" font=\"vector\" align=\"top-left\">&gt;NAME</text>\n<text x=\"0\" y=\"2.54\" size=\"1.016\" layer=\"96\" font=\"vector\">&gt;VALUE</text>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"EFM8BB10F(2/4/8)G-A-QFN20\" prefix=\"U\" uservalue=\"yes\">\n<description>&lt;b&gt;Manufacturer Part #:&lt;/b&gt; EFM8BB10F(2/4/8)G-A-QFN20&lt;br/&gt;\n&lt;b&gt;Manufacturer:&lt;/b&gt; Silicon Labs&lt;br/&gt;\n&lt;b&gt;Description:&lt;/b&gt; Busy Bee 8-bit Microcontrollers - MCU (2/4/8)kB / (256/512)B RAM 12b ADC &lt;br/&gt;</description>\n<gates>\n<gate name=\"G$1\" symbol=\"EFM8BB10F(2/4/8)G-A-QFN20\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"\" package=\"EFM8BB10F(2/4/8)G-A-QFN20\">\n<connects>\n<connect gate=\"G$1\" pin=\"!RST!/C2CK\" pad=\"P$5\"/>\n<connect gate=\"G$1\" pin=\"C2D/P2.7\" pad=\"P$6\"/>\n<connect gate=\"G$1\" pin=\"GND\" pad=\"P$3 P$12 PAD\"/>\n<connect gate=\"G$1\" pin=\"P0.0\" pad=\"P$2\"/>\n<connect gate=\"G$1\" pin=\"P0.1\" pad=\"P$1\"/>\n<connect gate=\"G$1\" pin=\"P0.2\" pad=\"P$20\"/>\n<connect gate=\"G$1\" pin=\"P0.3\" pad=\"P$19\"/>\n<connect gate=\"G$1\" pin=\"P0.4\" pad=\"P$18\"/>\n<connect gate=\"G$1\" pin=\"P0.5\" pad=\"P$17\"/>\n<connect gate=\"G$1\" pin=\"P0.6\" pad=\"P$16\"/>\n<connect gate=\"G$1\" pin=\"P0.7\" pad=\"P$15\"/>\n<connect gate=\"G$1\" pin=\"P1.0\" pad=\"P$14\"/>\n<connect gate=\"G$1\" pin=\"P1.1\" pad=\"P$13\"/>\n<connect gate=\"G$1\" pin=\"P1.2\" pad=\"P$11\"/>\n<connect gate=\"G$1\" pin=\"P1.3\" pad=\"P$10\"/>\n<connect gate=\"G$1\" pin=\"P1.5\" pad=\"P$8\"/>\n<connect gate=\"G$1\" pin=\"P1.6\" pad=\"P$7\"/>\n<connect gate=\"G$1\" pin=\"P1.7\" pad=\"P$9\"/>\n<connect gate=\"G$1\" pin=\"VDD\" pad=\"P$4\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"HOUSEPART\" value=\"NO\" constant=\"no\"/>\n<attribute name=\"MPN\" value=\"\" constant=\"no\"/>\n<attribute name=\"POPULATE\" value=\"1\" constant=\"no\"/>\n<attribute name=\"URL\" value=\"http://www.silabs.com/products/mcu/8-bit/efm8-busy-bee/Pages/efm8-busy-bee.aspx\" constant=\"no\"/>\n<attribute name=\"VALUE\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"resistor\">\n<packages>\n<package name=\"C0402\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.245\" y1=\"0.224\" x2=\"0.245\" y2=\"0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.245\" y1=\"-0.224\" x2=\"-0.245\" y2=\"-0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.762\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.554\" y1=\"-0.3048\" x2=\"-0.254\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"0.2588\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.3\" x2=\"0.1999\" y2=\"0.3\" layer=\"35\"/>\n</package>\n<package name=\"C0504\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.294\" y1=\"0.559\" x2=\"0.294\" y2=\"0.559\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.294\" y1=\"-0.559\" x2=\"0.294\" y2=\"-0.559\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.7\" y=\"0\" dx=\"1\" dy=\"1.3\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.7\" y=\"0\" dx=\"1\" dy=\"1.3\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.889\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.159\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.6604\" y1=\"-0.6223\" x2=\"-0.2804\" y2=\"0.6276\" layer=\"51\"/>\n<rectangle x1=\"0.2794\" y1=\"-0.6223\" x2=\"0.6594\" y2=\"0.6276\" layer=\"51\"/>\n<rectangle x1=\"-0.1001\" y1=\"-0.4001\" x2=\"0.1001\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"C0603\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.356\" y1=\"0.432\" x2=\"0.356\" y2=\"0.432\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.356\" y1=\"-0.419\" x2=\"0.356\" y2=\"-0.419\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1.1\" dy=\"1\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1.1\" dy=\"1\" layer=\"1\"/>\n<text x=\"-0.889\" y=\"0.762\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.889\" y=\"-2.032\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.8382\" y1=\"-0.4699\" x2=\"-0.3381\" y2=\"0.4801\" layer=\"51\"/>\n<rectangle x1=\"0.3302\" y1=\"-0.4699\" x2=\"0.8303\" y2=\"0.4801\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.3\" x2=\"0.1999\" y2=\"0.3\" layer=\"35\"/>\n</package>\n<package name=\"C0805\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.381\" y1=\"0.66\" x2=\"0.381\" y2=\"0.66\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.356\" y1=\"-0.66\" x2=\"0.381\" y2=\"-0.66\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<text x=\"-0.889\" y=\"1.016\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.889\" y=\"-2.286\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.0922\" y1=\"-0.7239\" x2=\"-0.3421\" y2=\"0.7262\" layer=\"51\"/>\n<rectangle x1=\"0.3556\" y1=\"-0.7239\" x2=\"1.1057\" y2=\"0.7262\" layer=\"51\"/>\n<rectangle x1=\"-0.1001\" y1=\"-0.4001\" x2=\"0.1001\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"C1005\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.245\" y1=\"0.224\" x2=\"0.245\" y2=\"0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.245\" y1=\"-0.224\" x2=\"-0.245\" y2=\"-0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.762\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.554\" y1=\"-0.3048\" x2=\"-0.254\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"0.2588\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.3\" x2=\"0.1999\" y2=\"0.3\" layer=\"35\"/>\n</package>\n<package name=\"C1206\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.965\" y1=\"0.787\" x2=\"0.965\" y2=\"0.787\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.965\" y1=\"-0.787\" x2=\"0.965\" y2=\"-0.787\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.143\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.413\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.7018\" y1=\"-0.8509\" x2=\"-0.9517\" y2=\"0.8491\" layer=\"51\"/>\n<rectangle x1=\"0.9517\" y1=\"-0.8491\" x2=\"1.7018\" y2=\"0.8509\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.4001\" x2=\"0.1999\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"C1210\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.9652\" y1=\"1.2446\" x2=\"0.9652\" y2=\"1.2446\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.9652\" y1=\"-1.2446\" x2=\"0.9652\" y2=\"-1.2446\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-1.397\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.397\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.7018\" y1=\"-1.2954\" x2=\"-0.9517\" y2=\"1.3045\" layer=\"51\"/>\n<rectangle x1=\"0.9517\" y1=\"-1.3045\" x2=\"1.7018\" y2=\"1.2954\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.4001\" x2=\"0.1999\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"C1310\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.294\" y1=\"0.559\" x2=\"0.294\" y2=\"0.559\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.294\" y1=\"-0.559\" x2=\"0.294\" y2=\"-0.559\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.7\" y=\"0\" dx=\"1\" dy=\"1.3\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.7\" y=\"0\" dx=\"1\" dy=\"1.3\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.889\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.159\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.6604\" y1=\"-0.6223\" x2=\"-0.2804\" y2=\"0.6276\" layer=\"51\"/>\n<rectangle x1=\"0.2794\" y1=\"-0.6223\" x2=\"0.6594\" y2=\"0.6276\" layer=\"51\"/>\n<rectangle x1=\"-0.1001\" y1=\"-0.3\" x2=\"0.1001\" y2=\"0.3\" layer=\"35\"/>\n</package>\n<package name=\"C1608\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.356\" y1=\"0.432\" x2=\"0.356\" y2=\"0.432\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.356\" y1=\"-0.419\" x2=\"0.356\" y2=\"-0.419\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1.1\" dy=\"1\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1.1\" dy=\"1\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.762\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.032\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.8382\" y1=\"-0.4699\" x2=\"-0.3381\" y2=\"0.4801\" layer=\"51\"/>\n<rectangle x1=\"0.3302\" y1=\"-0.4699\" x2=\"0.8303\" y2=\"0.4801\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.3\" x2=\"0.1999\" y2=\"0.3\" layer=\"35\"/>\n</package>\n<package name=\"C1812\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.973\" y1=\"1.983\" x2=\"2.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"-1.983\" x2=\"-2.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.973\" y1=\"-1.983\" x2=\"-2.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.4732\" y1=\"1.6002\" x2=\"1.4732\" y2=\"1.6002\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-1.4478\" y1=\"-1.6002\" x2=\"1.4732\" y2=\"-1.6002\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.973\" y1=\"1.983\" x2=\"2.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.95\" y=\"0\" dx=\"1.9\" dy=\"3.4\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.95\" y=\"0\" dx=\"1.9\" dy=\"3.4\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.3876\" y1=\"-1.651\" x2=\"-1.4376\" y2=\"1.649\" layer=\"51\"/>\n<rectangle x1=\"1.4478\" y1=\"-1.651\" x2=\"2.3978\" y2=\"1.649\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.4001\" x2=\"0.3\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"C1825\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.973\" y1=\"3.483\" x2=\"2.973\" y2=\"3.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"-3.483\" x2=\"-2.973\" y2=\"-3.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.973\" y1=\"-3.483\" x2=\"-2.973\" y2=\"3.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.4986\" y1=\"3.2766\" x2=\"1.4732\" y2=\"3.2766\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-1.4732\" y1=\"-3.2766\" x2=\"1.4986\" y2=\"-3.2766\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.973\" y1=\"3.483\" x2=\"2.973\" y2=\"-3.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.95\" y=\"0\" dx=\"1.9\" dy=\"6.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.95\" y=\"0\" dx=\"1.9\" dy=\"6.8\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"3.683\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-4.826\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.413\" y1=\"-3.3528\" x2=\"-1.463\" y2=\"3.3472\" layer=\"51\"/>\n<rectangle x1=\"1.4478\" y1=\"-3.3528\" x2=\"2.3978\" y2=\"3.3472\" layer=\"51\"/>\n<rectangle x1=\"-0.7\" y1=\"-0.7\" x2=\"0.7\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"C2012\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.381\" y1=\"0.66\" x2=\"0.381\" y2=\"0.66\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.356\" y1=\"-0.66\" x2=\"0.381\" y2=\"-0.66\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<text x=\"-0.889\" y=\"1.016\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.889\" y=\"-2.286\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.0922\" y1=\"-0.7239\" x2=\"-0.3421\" y2=\"0.7262\" layer=\"51\"/>\n<rectangle x1=\"0.3556\" y1=\"-0.7239\" x2=\"1.1057\" y2=\"0.7262\" layer=\"51\"/>\n<rectangle x1=\"-0.1001\" y1=\"-0.4001\" x2=\"0.1001\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"C3216\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.965\" y1=\"0.787\" x2=\"0.965\" y2=\"0.787\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.965\" y1=\"-0.787\" x2=\"0.965\" y2=\"-0.787\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.143\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.413\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.7018\" y1=\"-0.8509\" x2=\"-0.9517\" y2=\"0.8491\" layer=\"51\"/>\n<rectangle x1=\"0.9517\" y1=\"-0.8491\" x2=\"1.7018\" y2=\"0.8509\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.5001\" x2=\"0.3\" y2=\"0.5001\" layer=\"35\"/>\n</package>\n<package name=\"C3225\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.9652\" y1=\"1.2446\" x2=\"0.9652\" y2=\"1.2446\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-0.9652\" y1=\"-1.2446\" x2=\"0.9652\" y2=\"-1.2446\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-1.397\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.397\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.7018\" y1=\"-1.2954\" x2=\"-0.9517\" y2=\"1.3045\" layer=\"51\"/>\n<rectangle x1=\"0.9517\" y1=\"-1.3045\" x2=\"1.7018\" y2=\"1.2954\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5001\" x2=\"0.1999\" y2=\"0.5001\" layer=\"35\"/>\n</package>\n<package name=\"C4532\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.973\" y1=\"1.983\" x2=\"2.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"-1.983\" x2=\"-2.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.973\" y1=\"-1.983\" x2=\"-2.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.4732\" y1=\"1.6002\" x2=\"1.4732\" y2=\"1.6002\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-1.4478\" y1=\"-1.6002\" x2=\"1.4732\" y2=\"-1.6002\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.973\" y1=\"1.983\" x2=\"2.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.95\" y=\"0\" dx=\"1.9\" dy=\"3.4\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.95\" y=\"0\" dx=\"1.9\" dy=\"3.4\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"2.032\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.3876\" y1=\"-1.651\" x2=\"-1.4376\" y2=\"1.649\" layer=\"51\"/>\n<rectangle x1=\"1.4478\" y1=\"-1.651\" x2=\"2.3978\" y2=\"1.649\" layer=\"51\"/>\n<rectangle x1=\"-0.4001\" y1=\"-0.7\" x2=\"0.4001\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"C4564\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.973\" y1=\"3.483\" x2=\"2.973\" y2=\"3.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"-3.483\" x2=\"-2.973\" y2=\"-3.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.973\" y1=\"-3.483\" x2=\"-2.973\" y2=\"3.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.4986\" y1=\"3.2766\" x2=\"1.4732\" y2=\"3.2766\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"-1.4732\" y1=\"-3.2766\" x2=\"1.4986\" y2=\"-3.2766\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.973\" y1=\"3.483\" x2=\"2.973\" y2=\"-3.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.95\" y=\"0\" dx=\"1.9\" dy=\"6.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.95\" y=\"0\" dx=\"1.9\" dy=\"6.8\" layer=\"1\"/>\n<text x=\"-1.905\" y=\"3.683\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.905\" y=\"-4.826\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.413\" y1=\"-3.3528\" x2=\"-1.463\" y2=\"3.3472\" layer=\"51\"/>\n<rectangle x1=\"1.4478\" y1=\"-3.3528\" x2=\"2.3978\" y2=\"3.3472\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"C025-024X044\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 mm, outline 2.4 x 4.4 mm</description>\n<wire x1=\"-2.159\" y1=\"-0.635\" x2=\"-2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.159\" y1=\"0.635\" x2=\"-1.651\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.159\" y1=\"-0.635\" x2=\"-1.651\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"1.651\" y1=\"1.143\" x2=\"-1.651\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-0.635\" x2=\"2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.651\" y1=\"-1.143\" x2=\"-1.651\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.651\" y1=\"1.143\" x2=\"2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"1.651\" y1=\"-1.143\" x2=\"2.159\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-0.3048\" y1=\"0.762\" x2=\"-0.3048\" y2=\"-0.762\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.762\" x2=\"0.3302\" y2=\"-0.762\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0.3302\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"-0.3048\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-1.778\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.778\" y=\"-2.667\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025-025X050\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 mm, outline 2.5 x 5 mm</description>\n<wire x1=\"-2.159\" y1=\"1.27\" x2=\"2.159\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-1.27\" x2=\"-2.159\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"1.27\" x2=\"2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.159\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-1.27\" x2=\"2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.159\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.762\" y1=\"0\" x2=\"0.381\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.286\" y=\"1.524\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-2.794\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025-030X050\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 mm, outline 3 x 5 mm</description>\n<wire x1=\"-2.159\" y1=\"1.524\" x2=\"2.159\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-1.524\" x2=\"-2.159\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.27\" x2=\"2.413\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.27\" x2=\"-2.413\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"1.524\" x2=\"2.413\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"1.27\" x2=\"-2.159\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-1.524\" x2=\"2.413\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-1.27\" x2=\"-2.159\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.762\" y1=\"0\" x2=\"0.381\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.286\" y=\"1.905\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-3.048\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025-040X050\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 mm, outline 4 x 5 mm</description>\n<wire x1=\"-2.159\" y1=\"1.905\" x2=\"2.159\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-1.905\" x2=\"-2.159\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.651\" x2=\"2.413\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.651\" x2=\"-2.413\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"1.905\" x2=\"2.413\" y2=\"1.651\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"1.651\" x2=\"-2.159\" y2=\"1.905\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-1.905\" x2=\"2.413\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-1.651\" x2=\"-2.159\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.762\" y1=\"0\" x2=\"0.381\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.286\" y=\"2.159\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-3.429\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025-050X050\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 mm, outline 5 x 5 mm</description>\n<wire x1=\"-2.159\" y1=\"2.286\" x2=\"2.159\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-2.286\" x2=\"-2.159\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"2.032\" x2=\"2.413\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"2.032\" x2=\"-2.413\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"2.286\" x2=\"2.413\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"2.032\" x2=\"-2.159\" y2=\"2.286\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-2.286\" x2=\"2.413\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-2.032\" x2=\"-2.159\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.762\" y1=\"0\" x2=\"0.381\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.286\" y=\"2.54\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-3.81\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025-060X050\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 mm, outline 6 x 5 mm</description>\n<wire x1=\"-2.159\" y1=\"2.794\" x2=\"2.159\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-2.794\" x2=\"-2.159\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"2.54\" x2=\"2.413\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"2.54\" x2=\"-2.413\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"2.794\" x2=\"2.413\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"2.54\" x2=\"-2.159\" y2=\"2.794\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-2.794\" x2=\"2.413\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-2.54\" x2=\"-2.159\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.762\" y1=\"0\" x2=\"0.381\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.286\" y=\"3.048\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.032\" y=\"-2.413\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025_050-024X070\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 mm + 5 mm, outline 2.4 x 7 mm</description>\n<wire x1=\"-2.159\" y1=\"-0.635\" x2=\"-2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.159\" y1=\"0.635\" x2=\"-1.651\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.159\" y1=\"-0.635\" x2=\"-1.651\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"1.651\" y1=\"1.143\" x2=\"-1.651\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-0.635\" x2=\"2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.651\" y1=\"-1.143\" x2=\"-1.651\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.651\" y1=\"1.143\" x2=\"2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.191\" y1=\"-1.143\" x2=\"-3.9624\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"1.143\" x2=\"-3.9624\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"-0.635\" x2=\"-4.191\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"1.651\" y1=\"-1.143\" x2=\"2.159\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-4.699\" y1=\"0.635\" x2=\"-4.191\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.699\" y1=\"-0.635\" x2=\"-4.699\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"1.143\" x2=\"-2.5654\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"-1.143\" x2=\"-2.5654\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0.762\" x2=\"-0.3048\" y2=\"-0.762\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.762\" x2=\"0.3302\" y2=\"-0.762\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0.3302\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"-0.3048\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"3\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.81\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.81\" y=\"-2.667\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025_050-025X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 + 5 mm, outline 2.5 x 7.5 mm</description>\n<wire x1=\"-2.159\" y1=\"1.27\" x2=\"2.159\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-1.27\" x2=\"-2.159\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"1.27\" x2=\"2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.159\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-1.27\" x2=\"2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.159\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"4.953\" y1=\"1.016\" x2=\"4.953\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"1.27\" x2=\"4.953\" y2=\"1.016\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"-1.27\" x2=\"4.953\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.794\" y1=\"1.27\" x2=\"4.699\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-1.27\" x2=\"2.794\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.413\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-0.762\" x2=\"2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"0.254\" x2=\"2.413\" y2=\"-0.254\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"0\" x2=\"2.286\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.286\" y1=\"0\" x2=\"2.794\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.794\" y1=\"0\" x2=\"3.302\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.762\" y1=\"0\" x2=\"0.381\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"3\" x=\"3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.159\" y=\"1.651\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.159\" y=\"-2.794\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025_050-035X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 + 5 mm, outline 3.5 x 7.5 mm</description>\n<wire x1=\"-2.159\" y1=\"1.778\" x2=\"2.159\" y2=\"1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-1.778\" x2=\"-2.159\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.524\" x2=\"-2.413\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"1.778\" x2=\"2.413\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"1.524\" x2=\"-2.159\" y2=\"1.778\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-1.778\" x2=\"2.413\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-1.524\" x2=\"-2.159\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"4.953\" y1=\"1.524\" x2=\"4.953\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"1.778\" x2=\"4.953\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"-1.778\" x2=\"4.953\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.794\" y1=\"1.778\" x2=\"4.699\" y2=\"1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-1.778\" x2=\"2.794\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.524\" x2=\"2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.413\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"0.508\" x2=\"2.413\" y2=\"-0.508\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.286\" y1=\"0\" x2=\"2.794\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.794\" y1=\"0\" x2=\"3.302\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.286\" y1=\"0\" x2=\"1.778\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"3\" x=\"3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.286\" y=\"2.159\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-3.302\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025_050-045X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 + 5 mm, outline 4.5 x 7.5 mm</description>\n<wire x1=\"-2.159\" y1=\"2.286\" x2=\"2.159\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-2.286\" x2=\"-2.159\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"2.032\" x2=\"-2.413\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"2.286\" x2=\"2.413\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"2.032\" x2=\"-2.159\" y2=\"2.286\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-2.286\" x2=\"2.413\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-2.032\" x2=\"-2.159\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"4.953\" y1=\"2.032\" x2=\"4.953\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"2.286\" x2=\"4.953\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"-2.286\" x2=\"4.953\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.794\" y1=\"2.286\" x2=\"4.699\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-2.286\" x2=\"2.794\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"2.032\" x2=\"2.413\" y2=\"1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.397\" x2=\"2.413\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"0.762\" x2=\"2.413\" y2=\"-0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.286\" y1=\"0\" x2=\"2.794\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.794\" y1=\"0\" x2=\"3.302\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.286\" y1=\"0\" x2=\"1.778\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"3\" x=\"3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.286\" y=\"2.667\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-3.81\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C025_050-055X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 2.5 + 5 mm, outline 5.5 x 7.5 mm</description>\n<wire x1=\"-2.159\" y1=\"2.794\" x2=\"2.159\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-2.794\" x2=\"-2.159\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"2.54\" x2=\"-2.413\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"2.794\" x2=\"2.413\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.413\" y1=\"2.54\" x2=\"-2.159\" y2=\"2.794\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.159\" y1=\"-2.794\" x2=\"2.413\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.413\" y1=\"-2.54\" x2=\"-2.159\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"0.254\" y1=\"0\" x2=\"0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0.762\" x2=\"-0.254\" y2=\"0\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.254\" y2=\"-0.762\" width=\"0.254\" layer=\"21\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.381\" y1=\"0\" x2=\"-0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"4.953\" y1=\"2.54\" x2=\"4.953\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"2.794\" x2=\"4.953\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"-2.794\" x2=\"4.953\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.794\" y1=\"2.794\" x2=\"4.699\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-2.794\" x2=\"2.794\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"2.54\" x2=\"2.413\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-2.032\" x2=\"2.413\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"0.762\" x2=\"2.413\" y2=\"-0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"0\" x2=\"2.286\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.286\" y1=\"0\" x2=\"2.794\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.794\" y1=\"0\" x2=\"3.302\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"0.762\" y2=\"0\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"3\" x=\"3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.286\" y=\"3.175\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.032\" y=\"-2.286\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C050-024X044\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 5 mm, outline 2.4 x 4.4 mm</description>\n<wire x1=\"-2.159\" y1=\"-0.635\" x2=\"-2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.159\" y1=\"0.635\" x2=\"-1.651\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.159\" y1=\"-0.635\" x2=\"-1.651\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"1.651\" y1=\"1.143\" x2=\"-1.651\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.159\" y1=\"-0.635\" x2=\"2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.651\" y1=\"-1.143\" x2=\"-1.651\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.651\" y1=\"1.143\" x2=\"2.159\" y2=\"0.635\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"1.651\" y1=\"-1.143\" x2=\"2.159\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-0.3048\" y1=\"0.762\" x2=\"-0.3048\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-0.3048\" y2=\"-0.762\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.762\" x2=\"0.3302\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"0.3302\" y2=\"-0.762\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0.3302\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"-0.3048\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.159\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.159\" y=\"-2.667\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"2.159\" y1=\"-0.381\" x2=\"2.54\" y2=\"0.381\" layer=\"51\"/>\n<rectangle x1=\"-2.54\" y1=\"-0.381\" x2=\"-2.159\" y2=\"0.381\" layer=\"51\"/>\n</package>\n<package name=\"C050-025X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 5 mm, outline 2.5 x 7.5 mm</description>\n<wire x1=\"-0.3048\" y1=\"0.635\" x2=\"-0.3048\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-0.3048\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.635\" x2=\"0.3302\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"0.3302\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"1.016\" x2=\"-3.683\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"-1.27\" x2=\"3.429\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.683\" y1=\"-1.016\" x2=\"3.683\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"1.27\" x2=\"-3.429\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"1.27\" x2=\"3.683\" y2=\"1.016\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.429\" y1=\"-1.27\" x2=\"3.683\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"-1.016\" x2=\"-3.429\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"1.016\" x2=\"-3.429\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.429\" y=\"1.651\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.429\" y=\"-2.794\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C050-045X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 5 mm, outline 4.5 x 7.5 mm</description>\n<wire x1=\"-0.3048\" y1=\"0.635\" x2=\"-0.3048\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-0.3048\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.635\" x2=\"0.3302\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"0.3302\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"2.032\" x2=\"-3.683\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"-2.286\" x2=\"3.429\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.683\" y1=\"-2.032\" x2=\"3.683\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"2.286\" x2=\"-3.429\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"2.286\" x2=\"3.683\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.429\" y1=\"-2.286\" x2=\"3.683\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"-2.032\" x2=\"-3.429\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"2.032\" x2=\"-3.429\" y2=\"2.286\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.556\" y=\"2.667\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.556\" y=\"-3.81\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C050-030X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 5 mm, outline 3 x 7.5 mm</description>\n<wire x1=\"-0.3048\" y1=\"0.635\" x2=\"-0.3048\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-0.3048\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.635\" x2=\"0.3302\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"0.3302\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"1.27\" x2=\"-3.683\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"-1.524\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.683\" y1=\"-1.27\" x2=\"3.683\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"1.524\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"1.524\" x2=\"3.683\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.429\" y1=\"-1.524\" x2=\"3.683\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"-1.27\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"1.27\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.556\" y=\"1.905\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.556\" y=\"-3.048\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C050-050X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 5 mm, outline 5 x 7.5 mm</description>\n<wire x1=\"-0.3048\" y1=\"0.635\" x2=\"-0.3048\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-0.3048\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.635\" x2=\"0.3302\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"0.3302\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"2.286\" x2=\"-3.683\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"-2.54\" x2=\"3.429\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.683\" y1=\"-2.286\" x2=\"3.683\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"2.54\" x2=\"-3.429\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"2.54\" x2=\"3.683\" y2=\"2.286\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.429\" y1=\"-2.54\" x2=\"3.683\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"-2.286\" x2=\"-3.429\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"2.286\" x2=\"-3.429\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.429\" y=\"2.921\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-2.159\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C050-055X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 5 mm, outline 5.5 x 7.5 mm</description>\n<wire x1=\"-0.3048\" y1=\"0.635\" x2=\"-0.3048\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-0.3048\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.635\" x2=\"0.3302\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"0.3302\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"2.54\" x2=\"-3.683\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"-2.794\" x2=\"3.429\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.683\" y1=\"-2.54\" x2=\"3.683\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"2.794\" x2=\"-3.429\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"2.794\" x2=\"3.683\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.429\" y1=\"-2.794\" x2=\"3.683\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"-2.54\" x2=\"-3.429\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"2.54\" x2=\"-3.429\" y2=\"2.794\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.429\" y=\"3.175\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.302\" y=\"-2.286\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C050-075X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 5 mm, outline 7.5 x 7.5 mm</description>\n<wire x1=\"-1.524\" y1=\"0\" x2=\"-0.4572\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.4572\" y1=\"0\" x2=\"-0.4572\" y2=\"0.762\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-0.4572\" y1=\"0\" x2=\"-0.4572\" y2=\"-0.762\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"0.4318\" y1=\"0.762\" x2=\"0.4318\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"0.4318\" y1=\"0\" x2=\"1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.4318\" y1=\"0\" x2=\"0.4318\" y2=\"-0.762\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"3.429\" x2=\"-3.683\" y2=\"-3.429\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"-3.683\" x2=\"3.429\" y2=\"-3.683\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.683\" y1=\"-3.429\" x2=\"3.683\" y2=\"3.429\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"3.683\" x2=\"-3.429\" y2=\"3.683\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"3.683\" x2=\"3.683\" y2=\"3.429\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.429\" y1=\"-3.683\" x2=\"3.683\" y2=\"-3.429\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"-3.429\" x2=\"-3.429\" y2=\"-3.683\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"3.429\" x2=\"-3.429\" y2=\"3.683\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.429\" y=\"4.064\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-2.921\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C050H075X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\nHorizontal, grid 5 mm, outline 7.5 x 7.5 mm</description>\n<wire x1=\"-3.683\" y1=\"7.112\" x2=\"-3.683\" y2=\"0.508\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"0.508\" x2=\"-3.302\" y2=\"0.508\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"0.508\" x2=\"-1.778\" y2=\"0.508\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.778\" y1=\"0.508\" x2=\"1.778\" y2=\"0.508\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"0.508\" x2=\"3.302\" y2=\"0.508\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"3.302\" y1=\"0.508\" x2=\"3.683\" y2=\"0.508\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.683\" y1=\"0.508\" x2=\"3.683\" y2=\"7.112\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"7.62\" x2=\"-3.175\" y2=\"7.62\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"2.413\" x2=\"-0.3048\" y2=\"1.778\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"1.778\" x2=\"-0.3048\" y2=\"1.143\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"1.778\" x2=\"-1.651\" y2=\"1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"2.413\" x2=\"0.3302\" y2=\"1.778\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"1.778\" x2=\"0.3302\" y2=\"1.143\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"1.778\" x2=\"1.651\" y2=\"1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"7.112\" x2=\"-3.175\" y2=\"7.62\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.175\" y1=\"7.62\" x2=\"3.683\" y2=\"7.112\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-2.54\" y2=\"0.254\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"2.54\" y1=\"0\" x2=\"2.54\" y2=\"0.254\" width=\"0.508\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.302\" y=\"8.001\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"3.175\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-2.794\" y1=\"0.127\" x2=\"-2.286\" y2=\"0.508\" layer=\"51\"/>\n<rectangle x1=\"2.286\" y1=\"0.127\" x2=\"2.794\" y2=\"0.508\" layer=\"51\"/>\n</package>\n<package name=\"C075-032X103\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 7.5 mm, outline 3.2 x 10.3 mm</description>\n<wire x1=\"4.826\" y1=\"1.524\" x2=\"-4.826\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"1.27\" x2=\"-5.08\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.826\" y1=\"-1.524\" x2=\"4.826\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"-1.27\" x2=\"5.08\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"1.524\" x2=\"5.08\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.826\" y1=\"-1.524\" x2=\"5.08\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.08\" y1=\"-1.27\" x2=\"-4.826\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.08\" y1=\"1.27\" x2=\"-4.826\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"0.508\" y1=\"0\" x2=\"2.54\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-0.508\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.508\" y1=\"0.889\" x2=\"-0.508\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-0.508\" y1=\"0\" x2=\"-0.508\" y2=\"-0.889\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"0.508\" y1=\"0.889\" x2=\"0.508\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"0.508\" y1=\"0\" x2=\"0.508\" y2=\"-0.889\" width=\"0.4064\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"3.81\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-4.826\" y=\"1.905\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-4.826\" y=\"-3.048\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C075-042X103\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 7.5 mm, outline 4.2 x 10.3 mm</description>\n<wire x1=\"4.826\" y1=\"2.032\" x2=\"-4.826\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"1.778\" x2=\"-5.08\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.826\" y1=\"-2.032\" x2=\"4.826\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"-1.778\" x2=\"5.08\" y2=\"1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"2.032\" x2=\"5.08\" y2=\"1.778\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.826\" y1=\"-2.032\" x2=\"5.08\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.08\" y1=\"-1.778\" x2=\"-4.826\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.08\" y1=\"1.778\" x2=\"-4.826\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"2.667\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.667\" y1=\"0\" x2=\"-2.159\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.159\" y1=\"1.27\" x2=\"-2.159\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-2.159\" y1=\"0\" x2=\"-2.159\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"1.27\" x2=\"-1.27\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"-1.27\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"3.81\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-4.699\" y=\"2.413\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-1.651\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C075-052X106\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 7.5 mm, outline 5.2 x 10.6 mm</description>\n<wire x1=\"4.953\" y1=\"2.54\" x2=\"-4.953\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.207\" y1=\"2.286\" x2=\"-5.207\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.953\" y1=\"-2.54\" x2=\"4.953\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"-2.286\" x2=\"5.207\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"2.54\" x2=\"5.207\" y2=\"2.286\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.953\" y1=\"-2.54\" x2=\"5.207\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.207\" y1=\"-2.286\" x2=\"-4.953\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.207\" y1=\"2.286\" x2=\"-4.953\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"2.667\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.667\" y1=\"0\" x2=\"-2.159\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.159\" y1=\"1.27\" x2=\"-2.159\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-2.159\" y1=\"0\" x2=\"-2.159\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"1.27\" x2=\"-1.27\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"-1.27\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"3.81\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-4.826\" y=\"2.921\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.032\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C102-043X133\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 10.2 mm, outline 4.3 x 13.3 mm</description>\n<wire x1=\"-3.175\" y1=\"1.27\" x2=\"-3.175\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"1.27\" x2=\"-2.286\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"3.81\" y1=\"0\" x2=\"-2.286\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"0\" x2=\"-2.286\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-3.175\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.175\" y1=\"0\" x2=\"-3.175\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.096\" y1=\"2.032\" x2=\"6.096\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.604\" y1=\"1.524\" x2=\"6.604\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"-2.032\" x2=\"-6.096\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.604\" y1=\"-1.524\" x2=\"-6.604\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"2.032\" x2=\"6.604\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.096\" y1=\"-2.032\" x2=\"6.604\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-6.604\" y1=\"-1.524\" x2=\"-6.096\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-6.604\" y1=\"1.524\" x2=\"-6.096\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.096\" y=\"2.413\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.524\" y=\"-1.651\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C102-054X133\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 10.2 mm, outline 5.4 x 13.3 mm</description>\n<wire x1=\"-3.175\" y1=\"1.27\" x2=\"-3.175\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"1.27\" x2=\"-2.286\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"3.81\" y1=\"0\" x2=\"-2.286\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"0\" x2=\"-2.286\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-3.175\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.175\" y1=\"0\" x2=\"-3.175\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.096\" y1=\"2.54\" x2=\"6.096\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.604\" y1=\"2.032\" x2=\"6.604\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"-2.54\" x2=\"-6.096\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.604\" y1=\"-2.032\" x2=\"-6.604\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"2.54\" x2=\"6.604\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.096\" y1=\"-2.54\" x2=\"6.604\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-6.604\" y1=\"-2.032\" x2=\"-6.096\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-6.604\" y1=\"2.032\" x2=\"-6.096\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.096\" y=\"2.921\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.524\" y=\"-1.905\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C102-064X133\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 10.2 mm, outline 6.4 x 13.3 mm</description>\n<wire x1=\"-3.175\" y1=\"1.27\" x2=\"-3.175\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"1.27\" x2=\"-2.286\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"3.81\" y1=\"0\" x2=\"-2.286\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"0\" x2=\"-2.286\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-3.175\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.175\" y1=\"0\" x2=\"-3.175\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.096\" y1=\"3.048\" x2=\"6.096\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.604\" y1=\"2.54\" x2=\"6.604\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"-3.048\" x2=\"-6.096\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.604\" y1=\"-2.54\" x2=\"-6.604\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"3.048\" x2=\"6.604\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.096\" y1=\"-3.048\" x2=\"6.604\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-6.604\" y1=\"-2.54\" x2=\"-6.096\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-6.604\" y1=\"2.54\" x2=\"-6.096\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.096\" y=\"3.429\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.524\" y=\"-2.032\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C102_152-062X184\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm</description>\n<wire x1=\"-2.286\" y1=\"1.27\" x2=\"-2.286\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"0\" x2=\"-2.286\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-3.175\" y1=\"1.27\" x2=\"-3.175\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-3.175\" y1=\"0\" x2=\"-3.175\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"0\" x2=\"-3.175\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"0\" x2=\"3.683\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"0\" x2=\"8.636\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.096\" y1=\"3.048\" x2=\"6.223\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.223\" y1=\"-3.048\" x2=\"-6.096\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.604\" y1=\"-2.54\" x2=\"-6.604\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.223\" y1=\"3.048\" x2=\"6.731\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.223\" y1=\"-3.048\" x2=\"6.731\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-6.604\" y1=\"-2.54\" x2=\"-6.096\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-6.604\" y1=\"2.54\" x2=\"-6.096\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.731\" y1=\"2.54\" x2=\"6.731\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"11.176\" y1=\"3.048\" x2=\"11.684\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"11.176\" y1=\"-3.048\" x2=\"11.684\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"11.176\" y1=\"-3.048\" x2=\"7.112\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.112\" y1=\"3.048\" x2=\"11.176\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"11.684\" y1=\"2.54\" x2=\"11.684\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"3\" x=\"10.033\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-5.969\" y=\"3.429\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.524\" y=\"-2.286\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C150-054X183\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 15 mm, outline 5.4 x 18.3 mm</description>\n<wire x1=\"-5.08\" y1=\"1.27\" x2=\"-5.08\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-5.08\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"1.27\" x2=\"-4.191\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"-4.191\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.017\" y1=\"2.032\" x2=\"9.017\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"-2.54\" x2=\"-8.509\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.017\" y1=\"-2.032\" x2=\"-9.017\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.509\" y1=\"2.54\" x2=\"8.509\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"2.54\" x2=\"9.017\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"8.509\" y1=\"-2.54\" x2=\"9.017\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"-2.032\" x2=\"-8.509\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"2.032\" x2=\"-8.509\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.382\" y=\"2.921\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.429\" y=\"-2.032\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C150-064X183\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 15 mm, outline 6.4 x 18.3 mm</description>\n<wire x1=\"-5.08\" y1=\"1.27\" x2=\"-5.08\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-5.08\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"1.27\" x2=\"-4.191\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"-4.191\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.017\" y1=\"2.54\" x2=\"9.017\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"-3.048\" x2=\"-8.509\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.017\" y1=\"-2.54\" x2=\"-9.017\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.509\" y1=\"3.048\" x2=\"8.509\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"3.048\" x2=\"9.017\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"8.509\" y1=\"-3.048\" x2=\"9.017\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"-2.54\" x2=\"-8.509\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"2.54\" x2=\"-8.509\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.509\" y=\"3.429\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.429\" y=\"-2.032\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C150-072X183\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 15 mm, outline 7.2 x 18.3 mm</description>\n<wire x1=\"-5.08\" y1=\"1.27\" x2=\"-5.08\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-5.08\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"1.27\" x2=\"-4.191\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"-4.191\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.017\" y1=\"3.048\" x2=\"9.017\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"-3.556\" x2=\"-8.509\" y2=\"-3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.017\" y1=\"-3.048\" x2=\"-9.017\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.509\" y1=\"3.556\" x2=\"8.509\" y2=\"3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"3.556\" x2=\"9.017\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"8.509\" y1=\"-3.556\" x2=\"9.017\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"-3.048\" x2=\"-8.509\" y2=\"-3.556\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"3.048\" x2=\"-8.509\" y2=\"3.556\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.509\" y=\"3.937\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.429\" y=\"-2.286\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C150-084X183\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 15 mm, outline 8.4 x 18.3 mm</description>\n<wire x1=\"-5.08\" y1=\"1.27\" x2=\"-5.08\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-5.08\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"1.27\" x2=\"-4.191\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"-4.191\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.017\" y1=\"3.556\" x2=\"9.017\" y2=\"-3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"-4.064\" x2=\"-8.509\" y2=\"-4.064\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.017\" y1=\"-3.556\" x2=\"-9.017\" y2=\"3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.509\" y1=\"4.064\" x2=\"8.509\" y2=\"4.064\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"4.064\" x2=\"9.017\" y2=\"3.556\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"8.509\" y1=\"-4.064\" x2=\"9.017\" y2=\"-3.556\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"-3.556\" x2=\"-8.509\" y2=\"-4.064\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"3.556\" x2=\"-8.509\" y2=\"4.064\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.509\" y=\"4.445\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.429\" y=\"-2.54\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C150-091X182\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 15 mm, outline 9.1 x 18.2 mm</description>\n<wire x1=\"-5.08\" y1=\"1.27\" x2=\"-5.08\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-5.08\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"1.27\" x2=\"-4.191\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"-4.191\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-4.191\" y1=\"0\" x2=\"6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-6.096\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.017\" y1=\"3.937\" x2=\"9.017\" y2=\"-3.937\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"-4.445\" x2=\"-8.509\" y2=\"-4.445\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.017\" y1=\"-3.937\" x2=\"-9.017\" y2=\"3.937\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.509\" y1=\"4.445\" x2=\"8.509\" y2=\"4.445\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"4.445\" x2=\"9.017\" y2=\"3.937\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"8.509\" y1=\"-4.445\" x2=\"9.017\" y2=\"-3.937\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"-3.937\" x2=\"-8.509\" y2=\"-4.445\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-9.017\" y1=\"3.937\" x2=\"-8.509\" y2=\"4.445\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.493\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.509\" y=\"4.826\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.429\" y=\"-2.54\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C225-062X268\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 22.5 mm, outline 6.2 x 26.8 mm</description>\n<wire x1=\"-12.827\" y1=\"3.048\" x2=\"12.827\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"13.335\" y1=\"2.54\" x2=\"13.335\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"-3.048\" x2=\"-12.827\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-13.335\" y1=\"-2.54\" x2=\"-13.335\" y2=\"2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"3.048\" x2=\"13.335\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"12.827\" y1=\"-3.048\" x2=\"13.335\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"-2.54\" x2=\"-12.827\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"2.54\" x2=\"-12.827\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-9.652\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"9.652\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-12.7\" y=\"3.429\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C225-074X268\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 22.5 mm, outline 7.4 x 26.8 mm</description>\n<wire x1=\"-12.827\" y1=\"3.556\" x2=\"12.827\" y2=\"3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"13.335\" y1=\"3.048\" x2=\"13.335\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"-3.556\" x2=\"-12.827\" y2=\"-3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-13.335\" y1=\"-3.048\" x2=\"-13.335\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"3.556\" x2=\"13.335\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"12.827\" y1=\"-3.556\" x2=\"13.335\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"-3.048\" x2=\"-12.827\" y2=\"-3.556\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"3.048\" x2=\"-12.827\" y2=\"3.556\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-9.652\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"9.652\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-12.827\" y=\"3.937\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C225-087X268\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 22.5 mm, outline 8.7 x 26.8 mm</description>\n<wire x1=\"-12.827\" y1=\"4.318\" x2=\"12.827\" y2=\"4.318\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"13.335\" y1=\"3.81\" x2=\"13.335\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"-4.318\" x2=\"-12.827\" y2=\"-4.318\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-13.335\" y1=\"-3.81\" x2=\"-13.335\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"4.318\" x2=\"13.335\" y2=\"3.81\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"12.827\" y1=\"-4.318\" x2=\"13.335\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"-3.81\" x2=\"-12.827\" y2=\"-4.318\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"3.81\" x2=\"-12.827\" y2=\"4.318\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-9.652\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"9.652\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-12.827\" y=\"4.699\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C225-108X268\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 22.5 mm, outline 10.8 x 26.8 mm</description>\n<wire x1=\"-12.827\" y1=\"5.334\" x2=\"12.827\" y2=\"5.334\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"13.335\" y1=\"4.826\" x2=\"13.335\" y2=\"-4.826\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"-5.334\" x2=\"-12.827\" y2=\"-5.334\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-13.335\" y1=\"-4.826\" x2=\"-13.335\" y2=\"4.826\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"5.334\" x2=\"13.335\" y2=\"4.826\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"12.827\" y1=\"-5.334\" x2=\"13.335\" y2=\"-4.826\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"-4.826\" x2=\"-12.827\" y2=\"-5.334\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"4.826\" x2=\"-12.827\" y2=\"5.334\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-9.652\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"9.652\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-12.954\" y=\"5.715\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C225-113X268\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 22.5 mm, outline 11.3 x 26.8 mm</description>\n<wire x1=\"-12.827\" y1=\"5.588\" x2=\"12.827\" y2=\"5.588\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"13.335\" y1=\"5.08\" x2=\"13.335\" y2=\"-5.08\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"-5.588\" x2=\"-12.827\" y2=\"-5.588\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-13.335\" y1=\"-5.08\" x2=\"-13.335\" y2=\"5.08\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"12.827\" y1=\"5.588\" x2=\"13.335\" y2=\"5.08\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"12.827\" y1=\"-5.588\" x2=\"13.335\" y2=\"-5.08\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"-5.08\" x2=\"-12.827\" y2=\"-5.588\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-13.335\" y1=\"5.08\" x2=\"-12.827\" y2=\"5.588\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-9.652\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"9.652\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.303\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-12.954\" y=\"5.969\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C275-093X316\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 27.5 mm, outline 9.3 x 31.6 mm</description>\n<wire x1=\"-15.24\" y1=\"4.572\" x2=\"15.24\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.748\" y1=\"4.064\" x2=\"15.748\" y2=\"-4.064\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"-4.572\" x2=\"-15.24\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-15.748\" y1=\"-4.064\" x2=\"-15.748\" y2=\"4.064\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"4.572\" x2=\"15.748\" y2=\"4.064\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"15.24\" y1=\"-4.572\" x2=\"15.748\" y2=\"-4.064\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"-4.064\" x2=\"-15.24\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"4.064\" x2=\"-15.24\" y2=\"4.572\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-11.557\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"11.557\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-15.24\" y=\"4.953\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C275-113X316\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 27.5 mm, outline 11.3 x 31.6 mm</description>\n<wire x1=\"-15.24\" y1=\"5.588\" x2=\"15.24\" y2=\"5.588\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.748\" y1=\"5.08\" x2=\"15.748\" y2=\"-5.08\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"-5.588\" x2=\"-15.24\" y2=\"-5.588\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-15.748\" y1=\"-5.08\" x2=\"-15.748\" y2=\"5.08\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"5.588\" x2=\"15.748\" y2=\"5.08\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"15.24\" y1=\"-5.588\" x2=\"15.748\" y2=\"-5.08\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"-5.08\" x2=\"-15.24\" y2=\"-5.588\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"5.08\" x2=\"-15.24\" y2=\"5.588\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-11.557\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"11.557\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-15.24\" y=\"5.969\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C275-134X316\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 27.5 mm, outline 13.4 x 31.6 mm</description>\n<wire x1=\"-15.24\" y1=\"6.604\" x2=\"15.24\" y2=\"6.604\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.748\" y1=\"6.096\" x2=\"15.748\" y2=\"-6.096\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"-6.604\" x2=\"-15.24\" y2=\"-6.604\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-15.748\" y1=\"-6.096\" x2=\"-15.748\" y2=\"6.096\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"6.604\" x2=\"15.748\" y2=\"6.096\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"15.24\" y1=\"-6.604\" x2=\"15.748\" y2=\"-6.096\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"-6.096\" x2=\"-15.24\" y2=\"-6.604\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"6.096\" x2=\"-15.24\" y2=\"6.604\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-11.557\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"11.557\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-15.24\" y=\"6.985\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C275-205X316\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 27.5 mm, outline 20.5 x 31.6 mm</description>\n<wire x1=\"-15.24\" y1=\"10.16\" x2=\"15.24\" y2=\"10.16\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.748\" y1=\"9.652\" x2=\"15.748\" y2=\"-9.652\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"-10.16\" x2=\"-15.24\" y2=\"-10.16\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-15.748\" y1=\"-9.652\" x2=\"-15.748\" y2=\"9.652\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"10.16\" x2=\"15.748\" y2=\"9.652\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"15.24\" y1=\"-10.16\" x2=\"15.748\" y2=\"-9.652\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"-9.652\" x2=\"-15.24\" y2=\"-10.16\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"9.652\" x2=\"-15.24\" y2=\"10.16\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-11.557\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"11.557\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-15.24\" y=\"10.541\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-4.318\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C325-137X374\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 32.5 mm, outline 13.7 x 37.4 mm</description>\n<wire x1=\"-14.2748\" y1=\"0\" x2=\"-12.7\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-12.7\" y1=\"1.905\" x2=\"-12.7\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"1.905\" x2=\"-11.811\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"0\" x2=\"14.2748\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"0\" x2=\"-11.811\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-12.7\" y1=\"0\" x2=\"-12.7\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"18.542\" y1=\"6.731\" x2=\"18.542\" y2=\"-6.731\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-18.542\" y1=\"6.731\" x2=\"-18.542\" y2=\"-6.731\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-18.542\" y1=\"-6.731\" x2=\"18.542\" y2=\"-6.731\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"18.542\" y1=\"6.731\" x2=\"-18.542\" y2=\"6.731\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-16.256\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"16.256\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-18.2372\" y=\"7.0612\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-10.8458\" y=\"-2.8702\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C325-162X374\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 32.5 mm, outline 16.2 x 37.4 mm</description>\n<wire x1=\"-14.2748\" y1=\"0\" x2=\"-12.7\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-12.7\" y1=\"1.905\" x2=\"-12.7\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"1.905\" x2=\"-11.811\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"0\" x2=\"14.2748\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"0\" x2=\"-11.811\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-12.7\" y1=\"0\" x2=\"-12.7\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"18.542\" y1=\"8.001\" x2=\"18.542\" y2=\"-8.001\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-18.542\" y1=\"8.001\" x2=\"-18.542\" y2=\"-8.001\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-18.542\" y1=\"-8.001\" x2=\"18.542\" y2=\"-8.001\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"18.542\" y1=\"8.001\" x2=\"-18.542\" y2=\"8.001\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-16.256\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"16.256\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-18.3642\" y=\"8.3312\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-10.8458\" y=\"-2.8702\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C325-182X374\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 32.5 mm, outline 18.2 x 37.4 mm</description>\n<wire x1=\"-14.2748\" y1=\"0\" x2=\"-12.7\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-12.7\" y1=\"1.905\" x2=\"-12.7\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"1.905\" x2=\"-11.811\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"0\" x2=\"14.2748\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-11.811\" y1=\"0\" x2=\"-11.811\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-12.7\" y1=\"0\" x2=\"-12.7\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"18.542\" y1=\"9.017\" x2=\"18.542\" y2=\"-9.017\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-18.542\" y1=\"9.017\" x2=\"-18.542\" y2=\"-9.017\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-18.542\" y1=\"-9.017\" x2=\"18.542\" y2=\"-9.017\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"18.542\" y1=\"9.017\" x2=\"-18.542\" y2=\"9.017\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-16.256\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"16.256\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-18.3642\" y=\"9.3472\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-10.8458\" y=\"-2.8702\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C375-192X418\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 37.5 mm, outline 19.2 x 41.8 mm</description>\n<wire x1=\"-20.32\" y1=\"8.509\" x2=\"20.32\" y2=\"8.509\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"20.828\" y1=\"8.001\" x2=\"20.828\" y2=\"-8.001\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"20.32\" y1=\"-8.509\" x2=\"-20.32\" y2=\"-8.509\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-20.828\" y1=\"-8.001\" x2=\"-20.828\" y2=\"8.001\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"20.32\" y1=\"8.509\" x2=\"20.828\" y2=\"8.001\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"20.32\" y1=\"-8.509\" x2=\"20.828\" y2=\"-8.001\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-20.828\" y1=\"-8.001\" x2=\"-20.32\" y2=\"-8.509\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-20.828\" y1=\"8.001\" x2=\"-20.32\" y2=\"8.509\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-16.002\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"16.002\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-18.796\" y=\"0\" drill=\"1.3208\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"18.796\" y=\"0\" drill=\"1.3208\" shape=\"octagon\"/>\n<text x=\"-20.447\" y=\"8.89\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C375-203X418\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 37.5 mm, outline 20.3 x 41.8 mm</description>\n<wire x1=\"-20.32\" y1=\"10.16\" x2=\"20.32\" y2=\"10.16\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"20.828\" y1=\"9.652\" x2=\"20.828\" y2=\"-9.652\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"20.32\" y1=\"-10.16\" x2=\"-20.32\" y2=\"-10.16\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-20.828\" y1=\"-9.652\" x2=\"-20.828\" y2=\"9.652\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"20.32\" y1=\"10.16\" x2=\"20.828\" y2=\"9.652\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"20.32\" y1=\"-10.16\" x2=\"20.828\" y2=\"-9.652\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-20.828\" y1=\"-9.652\" x2=\"-20.32\" y2=\"-10.16\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-20.828\" y1=\"9.652\" x2=\"-20.32\" y2=\"10.16\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-16.002\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"16.002\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-18.796\" y=\"0\" drill=\"1.3208\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"18.796\" y=\"0\" drill=\"1.3208\" shape=\"octagon\"/>\n<text x=\"-20.32\" y=\"10.541\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C050-035X075\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 5 mm, outline 3.5 x 7.5 mm</description>\n<wire x1=\"-0.3048\" y1=\"0.635\" x2=\"-0.3048\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-0.3048\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"0\" x2=\"-1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0.635\" x2=\"0.3302\" y2=\"0\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"0.3302\" y2=\"-0.635\" width=\"0.3048\" layer=\"21\"/>\n<wire x1=\"0.3302\" y1=\"0\" x2=\"1.524\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.683\" y1=\"1.524\" x2=\"-3.683\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.429\" y1=\"-1.778\" x2=\"3.429\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.683\" y1=\"-1.524\" x2=\"3.683\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"1.778\" x2=\"-3.429\" y2=\"1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.429\" y1=\"1.778\" x2=\"3.683\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"3.429\" y1=\"-1.778\" x2=\"3.683\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"-1.524\" x2=\"-3.429\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-3.683\" y1=\"1.524\" x2=\"-3.429\" y2=\"1.778\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.556\" y=\"2.159\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.556\" y=\"-3.429\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C375-155X418\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 37.5 mm, outline 15.5 x 41.8 mm</description>\n<wire x1=\"-20.32\" y1=\"7.62\" x2=\"20.32\" y2=\"7.62\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"20.828\" y1=\"7.112\" x2=\"20.828\" y2=\"-7.112\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"20.32\" y1=\"-7.62\" x2=\"-20.32\" y2=\"-7.62\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-20.828\" y1=\"-7.112\" x2=\"-20.828\" y2=\"7.112\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"20.32\" y1=\"7.62\" x2=\"20.828\" y2=\"7.112\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"20.32\" y1=\"-7.62\" x2=\"20.828\" y2=\"-7.112\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-20.828\" y1=\"-7.112\" x2=\"-20.32\" y2=\"-7.62\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-20.828\" y1=\"7.112\" x2=\"-20.32\" y2=\"7.62\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-16.002\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"16.002\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-18.796\" y=\"0\" drill=\"1.3208\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"18.796\" y=\"0\" drill=\"1.3208\" shape=\"octagon\"/>\n<text x=\"-20.447\" y=\"8.001\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C075-063X106\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 7.5 mm, outline 6.3 x 10.6 mm</description>\n<wire x1=\"4.953\" y1=\"3.048\" x2=\"-4.953\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.207\" y1=\"2.794\" x2=\"-5.207\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.953\" y1=\"-3.048\" x2=\"4.953\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"-2.794\" x2=\"5.207\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"3.048\" x2=\"5.207\" y2=\"2.794\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.953\" y1=\"-3.048\" x2=\"5.207\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.207\" y1=\"-2.794\" x2=\"-4.953\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.207\" y1=\"2.794\" x2=\"-4.953\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"2.667\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.667\" y1=\"0\" x2=\"-2.159\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.159\" y1=\"1.27\" x2=\"-2.159\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-2.159\" y1=\"0\" x2=\"-2.159\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"1.27\" x2=\"-1.27\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"-1.27\" y2=\"-1.27\" width=\"0.4064\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"3.81\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-4.826\" y=\"3.429\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.54\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C275-154X316\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 27.5 mm, outline 15.4 x 31.6 mm</description>\n<wire x1=\"-15.24\" y1=\"7.62\" x2=\"15.24\" y2=\"7.62\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.748\" y1=\"7.112\" x2=\"15.748\" y2=\"-7.112\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"-7.62\" x2=\"-15.24\" y2=\"-7.62\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-15.748\" y1=\"-7.112\" x2=\"-15.748\" y2=\"7.112\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"7.62\" x2=\"15.748\" y2=\"7.112\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"15.24\" y1=\"-7.62\" x2=\"15.748\" y2=\"-7.112\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"-7.112\" x2=\"-15.24\" y2=\"-7.62\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"7.112\" x2=\"-15.24\" y2=\"7.62\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-11.557\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"11.557\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-15.24\" y=\"8.001\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C275-173X316\">\n<description>&lt;b&gt;CAPACITOR&lt;/b&gt;&lt;p&gt;\ngrid 27.5 mm, outline 17.3 x 31.6 mm</description>\n<wire x1=\"-15.24\" y1=\"8.509\" x2=\"15.24\" y2=\"8.509\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.748\" y1=\"8.001\" x2=\"15.748\" y2=\"-8.001\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"-8.509\" x2=\"-15.24\" y2=\"-8.509\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-15.748\" y1=\"-8.001\" x2=\"-15.748\" y2=\"8.001\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"1.905\" x2=\"-6.731\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"-6.731\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"1.905\" x2=\"-7.62\" y2=\"0\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-7.62\" y2=\"-1.905\" width=\"0.4064\" layer=\"21\"/>\n<wire x1=\"15.24\" y1=\"8.509\" x2=\"15.748\" y2=\"8.001\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"15.24\" y1=\"-8.509\" x2=\"15.748\" y2=\"-8.001\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"-8.001\" x2=\"-15.24\" y2=\"-8.509\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-15.748\" y1=\"8.001\" x2=\"-15.24\" y2=\"8.509\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-11.557\" y1=\"0\" x2=\"-7.62\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"0\" x2=\"11.557\" y2=\"0\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"13.716\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-15.24\" y=\"8.89\" size=\"1.778\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-2.54\" size=\"1.778\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"C0402K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0204 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 1005</description>\n<wire x1=\"-0.425\" y1=\"0.2\" x2=\"0.425\" y2=\"0.2\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"0.425\" y1=\"-0.2\" x2=\"-0.425\" y2=\"-0.2\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.6\" y=\"0\" dx=\"0.925\" dy=\"0.74\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.6\" y=\"0\" dx=\"0.925\" dy=\"0.74\" layer=\"1\"/>\n<text x=\"-0.5\" y=\"0.425\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.5\" y=\"-1.45\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.5\" y1=\"-0.25\" x2=\"-0.225\" y2=\"0.25\" layer=\"51\"/>\n<rectangle x1=\"0.225\" y1=\"-0.25\" x2=\"0.5\" y2=\"0.25\" layer=\"51\"/>\n</package>\n<package name=\"C0603K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0603 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 1608</description>\n<wire x1=\"-0.725\" y1=\"0.35\" x2=\"0.725\" y2=\"0.35\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"0.725\" y1=\"-0.35\" x2=\"-0.725\" y2=\"-0.35\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.875\" y=\"0\" dx=\"1.05\" dy=\"1.08\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.875\" y=\"0\" dx=\"1.05\" dy=\"1.08\" layer=\"1\"/>\n<text x=\"-0.8\" y=\"0.65\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.8\" y=\"-1.65\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.8\" y1=\"-0.4\" x2=\"-0.45\" y2=\"0.4\" layer=\"51\"/>\n<rectangle x1=\"0.45\" y1=\"-0.4\" x2=\"0.8\" y2=\"0.4\" layer=\"51\"/>\n</package>\n<package name=\"C0805K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 0805 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 2012</description>\n<wire x1=\"-0.925\" y1=\"0.6\" x2=\"0.925\" y2=\"0.6\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"0.925\" y1=\"-0.6\" x2=\"-0.925\" y2=\"-0.6\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"1\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1\" y=\"0.875\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1\" y=\"-1.9\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1\" y1=\"-0.65\" x2=\"-0.5\" y2=\"0.65\" layer=\"51\"/>\n<rectangle x1=\"0.5\" y1=\"-0.65\" x2=\"1\" y2=\"0.65\" layer=\"51\"/>\n</package>\n<package name=\"C1206K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1206 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 3216</description>\n<wire x1=\"-1.525\" y1=\"0.75\" x2=\"1.525\" y2=\"0.75\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"1.525\" y1=\"-0.75\" x2=\"-1.525\" y2=\"-0.75\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.5\" y=\"0\" dx=\"1.5\" dy=\"2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.5\" y=\"0\" dx=\"1.5\" dy=\"2\" layer=\"1\"/>\n<text x=\"-1.6\" y=\"1.1\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.6\" y=\"-2.1\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.6\" y1=\"-0.8\" x2=\"-1.1\" y2=\"0.8\" layer=\"51\"/>\n<rectangle x1=\"1.1\" y1=\"-0.8\" x2=\"1.6\" y2=\"0.8\" layer=\"51\"/>\n</package>\n<package name=\"C1210K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1210 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 3225</description>\n<wire x1=\"-1.525\" y1=\"1.175\" x2=\"1.525\" y2=\"1.175\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"1.525\" y1=\"-1.175\" x2=\"-1.525\" y2=\"-1.175\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.5\" y=\"0\" dx=\"1.5\" dy=\"2.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.5\" y=\"0\" dx=\"1.5\" dy=\"2.9\" layer=\"1\"/>\n<text x=\"-1.6\" y=\"1.55\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.6\" y=\"-2.575\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.6\" y1=\"-1.25\" x2=\"-1.1\" y2=\"1.25\" layer=\"51\"/>\n<rectangle x1=\"1.1\" y1=\"-1.25\" x2=\"1.6\" y2=\"1.25\" layer=\"51\"/>\n</package>\n<package name=\"C1812K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1812 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 4532</description>\n<wire x1=\"-2.175\" y1=\"1.525\" x2=\"2.175\" y2=\"1.525\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.175\" y1=\"-1.525\" x2=\"-2.175\" y2=\"-1.525\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-2.05\" y=\"0\" dx=\"1.8\" dy=\"3.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.05\" y=\"0\" dx=\"1.8\" dy=\"3.7\" layer=\"1\"/>\n<text x=\"-2.25\" y=\"1.95\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.25\" y=\"-2.975\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.25\" y1=\"-1.6\" x2=\"-1.65\" y2=\"1.6\" layer=\"51\"/>\n<rectangle x1=\"1.65\" y1=\"-1.6\" x2=\"2.25\" y2=\"1.6\" layer=\"51\"/>\n</package>\n<package name=\"C1825K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 1825 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 4564</description>\n<wire x1=\"-1.525\" y1=\"3.125\" x2=\"1.525\" y2=\"3.125\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"1.525\" y1=\"-3.125\" x2=\"-1.525\" y2=\"-3.125\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.5\" y=\"0\" dx=\"1.8\" dy=\"6.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.5\" y=\"0\" dx=\"1.8\" dy=\"6.9\" layer=\"1\"/>\n<text x=\"-1.6\" y=\"3.55\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.6\" y=\"-4.625\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.6\" y1=\"-3.2\" x2=\"-1.1\" y2=\"3.2\" layer=\"51\"/>\n<rectangle x1=\"1.1\" y1=\"-3.2\" x2=\"1.6\" y2=\"3.2\" layer=\"51\"/>\n</package>\n<package name=\"C2220K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2220 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 5650</description>\n<wire x1=\"-2.725\" y1=\"2.425\" x2=\"2.725\" y2=\"2.425\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.725\" y1=\"-2.425\" x2=\"-2.725\" y2=\"-2.425\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-2.55\" y=\"0\" dx=\"1.85\" dy=\"5.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.55\" y=\"0\" dx=\"1.85\" dy=\"5.5\" layer=\"1\"/>\n<text x=\"-2.8\" y=\"2.95\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.8\" y=\"-3.975\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.8\" y1=\"-2.5\" x2=\"-2.2\" y2=\"2.5\" layer=\"51\"/>\n<rectangle x1=\"2.2\" y1=\"-2.5\" x2=\"2.8\" y2=\"2.5\" layer=\"51\"/>\n</package>\n<package name=\"C2225K\">\n<description>&lt;b&gt;Ceramic Chip Capacitor KEMET 2225 Reflow solder&lt;/b&gt;&lt;p&gt;\nMetric Code Size 5664</description>\n<wire x1=\"-2.725\" y1=\"3.075\" x2=\"2.725\" y2=\"3.075\" width=\"0.1016\" layer=\"51\"/>\n<wire x1=\"2.725\" y1=\"-3.075\" x2=\"-2.725\" y2=\"-3.075\" width=\"0.1016\" layer=\"51\"/>\n<smd name=\"1\" x=\"-2.55\" y=\"0\" dx=\"1.85\" dy=\"6.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.55\" y=\"0\" dx=\"1.85\" dy=\"6.8\" layer=\"1\"/>\n<text x=\"-2.8\" y=\"3.6\" size=\"1.016\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.8\" y=\"-4.575\" size=\"1.016\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.8\" y1=\"-3.15\" x2=\"-2.2\" y2=\"3.15\" layer=\"51\"/>\n<rectangle x1=\"2.2\" y1=\"-3.15\" x2=\"2.8\" y2=\"3.15\" layer=\"51\"/>\n</package>\n<package name=\"R0402\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.245\" y1=\"0.224\" x2=\"0.245\" y2=\"0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.245\" y1=\"-0.224\" x2=\"-0.245\" y2=\"-0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.762\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.032\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.554\" y1=\"-0.3048\" x2=\"-0.254\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"0.2588\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.4001\" x2=\"0.1999\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"R0603\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.432\" y1=\"-0.356\" x2=\"0.432\" y2=\"-0.356\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.432\" y1=\"0.356\" x2=\"-0.432\" y2=\"0.356\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.983\" x2=\"1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.983\" x2=\"-1.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1\" dy=\"1.1\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1\" dy=\"1.1\" layer=\"1\"/>\n<text x=\"-0.889\" y=\"0.889\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.889\" y=\"-2.032\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4318\" y1=\"-0.4318\" x2=\"0.8382\" y2=\"0.4318\" layer=\"51\"/>\n<rectangle x1=\"-0.8382\" y1=\"-0.4318\" x2=\"-0.4318\" y2=\"0.4318\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.4001\" x2=\"0.1999\" y2=\"0.4001\" layer=\"35\"/>\n</package>\n<package name=\"R0805\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<text x=\"-0.762\" y=\"1.016\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.762\" y=\"-2.286\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5001\" x2=\"0.1999\" y2=\"0.5001\" layer=\"35\"/>\n</package>\n<package name=\"R0805W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.94\" y=\"0\" dx=\"1.5\" dy=\"1\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.94\" y=\"0\" dx=\"1.5\" dy=\"1\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"1.016\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.159\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5001\" x2=\"0.1999\" y2=\"0.5001\" layer=\"35\"/>\n</package>\n<package name=\"R1005\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.245\" y1=\"0.224\" x2=\"0.245\" y2=\"0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.245\" y1=\"-0.224\" x2=\"-0.245\" y2=\"-0.224\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"0.483\" x2=\"1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"-0.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"-0.483\" x2=\"-1.473\" y2=\"0.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.65\" y=\"0\" dx=\"0.7\" dy=\"0.9\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"0.762\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.032\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-0.554\" y1=\"-0.3048\" x2=\"-0.254\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"0.2588\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.2951\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.3\" x2=\"0.1999\" y2=\"0.3\" layer=\"35\"/>\n</package>\n<package name=\"R1206\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"0.9525\" y1=\"-0.8128\" x2=\"-0.9652\" y2=\"-0.8128\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.9525\" y1=\"0.8128\" x2=\"-0.9652\" y2=\"0.8128\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"2\" x=\"1.422\" y=\"0\" dx=\"1.6\" dy=\"1.803\" layer=\"1\"/>\n<smd name=\"1\" x=\"-1.422\" y=\"0\" dx=\"1.6\" dy=\"1.803\" layer=\"1\"/>\n<text x=\"-1.397\" y=\"1.143\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.397\" y=\"-2.413\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.6891\" y1=\"-0.8763\" x2=\"-0.9525\" y2=\"0.8763\" layer=\"51\"/>\n<rectangle x1=\"0.9525\" y1=\"-0.8763\" x2=\"1.6891\" y2=\"0.8763\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"R1206W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-0.913\" y1=\"0.8\" x2=\"0.888\" y2=\"0.8\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.913\" y1=\"-0.8\" x2=\"0.888\" y2=\"-0.8\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.499\" y=\"0\" dx=\"1.8\" dy=\"1.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.499\" y=\"0\" dx=\"1.8\" dy=\"1.2\" layer=\"1\"/>\n<text x=\"-1.651\" y=\"1.143\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.651\" y=\"-2.413\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-0.8763\" x2=\"-0.9009\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"0.889\" y1=\"-0.8763\" x2=\"1.6391\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"R1210\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.913\" y1=\"1.219\" x2=\"0.939\" y2=\"1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-1.219\" x2=\"0.939\" y2=\"-1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-1.3081\" x2=\"-0.9009\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-1.3081\" x2=\"1.6645\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.8999\" x2=\"0.3\" y2=\"0.8999\" layer=\"35\"/>\n</package>\n<package name=\"R1210W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-0.913\" y1=\"1.219\" x2=\"0.939\" y2=\"1.219\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.913\" y1=\"-1.219\" x2=\"0.939\" y2=\"-1.219\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.499\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.499\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.651\" y=\"1.524\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.651\" y=\"-2.794\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-1.3081\" x2=\"-0.9009\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-1.3081\" x2=\"1.6645\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.8001\" x2=\"0.3\" y2=\"0.8001\" layer=\"35\"/>\n</package>\n<package name=\"R2010\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-1.662\" y1=\"1.245\" x2=\"1.662\" y2=\"1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.637\" y1=\"-1.245\" x2=\"1.687\" y2=\"-1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.027\" y1=\"1.245\" x2=\"1.027\" y2=\"1.245\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.002\" y1=\"-1.245\" x2=\"1.016\" y2=\"-1.245\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.2\" y=\"0\" dx=\"1.8\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.2\" y=\"0\" dx=\"1.8\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-2.159\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.159\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.4892\" y1=\"-1.3208\" x2=\"-1.6393\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"1.651\" y1=\"-1.3208\" x2=\"2.5009\" y2=\"1.3292\" layer=\"51\"/>\n</package>\n<package name=\"R2010W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-1.662\" y1=\"1.245\" x2=\"1.662\" y2=\"1.245\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.637\" y1=\"-1.245\" x2=\"1.687\" y2=\"-1.245\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.311\" y=\"0\" dx=\"2\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.311\" y=\"0\" dx=\"2\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-2.286\" y=\"1.524\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.4892\" y1=\"-1.3208\" x2=\"-1.6393\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"1.651\" y1=\"-1.3208\" x2=\"2.5009\" y2=\"1.3292\" layer=\"51\"/>\n</package>\n<package name=\"R2012\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.85\" y=\"0\" dx=\"1.3\" dy=\"1.5\" layer=\"1\"/>\n<text x=\"-0.762\" y=\"1.016\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.762\" y=\"-2.286\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1001\" y1=\"-0.5999\" x2=\"0.1001\" y2=\"0.5999\" layer=\"35\"/>\n</package>\n<package name=\"R2012W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-0.41\" y1=\"0.635\" x2=\"0.41\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.41\" y1=\"-0.635\" x2=\"0.41\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-0.94\" y=\"0\" dx=\"1.5\" dy=\"1\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.94\" y=\"0\" dx=\"1.5\" dy=\"1\" layer=\"1\"/>\n<text x=\"-0.635\" y=\"1.016\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-2.286\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"0.4064\" y1=\"-0.6985\" x2=\"1.0564\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-1.0668\" y1=\"-0.6985\" x2=\"-0.4168\" y2=\"0.7015\" layer=\"51\"/>\n<rectangle x1=\"-0.1001\" y1=\"-0.5999\" x2=\"0.1001\" y2=\"0.5999\" layer=\"35\"/>\n</package>\n<package name=\"R2512\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.362\" y1=\"1.473\" x2=\"2.387\" y2=\"1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.362\" y1=\"-1.473\" x2=\"2.387\" y2=\"-1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"1.473\" x2=\"1.498\" y2=\"1.473\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.473\" y1=\"-1.473\" x2=\"1.498\" y2=\"-1.473\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.8\" y=\"0\" dx=\"1.8\" dy=\"3.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.8\" y=\"0\" dx=\"1.8\" dy=\"3.2\" layer=\"1\"/>\n<text x=\"-2.667\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.667\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.2004\" y1=\"-1.5494\" x2=\"-2.3505\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"2.3622\" y1=\"-1.5494\" x2=\"3.2121\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R2512W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-2.362\" y1=\"1.473\" x2=\"2.387\" y2=\"1.473\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.362\" y1=\"-1.473\" x2=\"2.387\" y2=\"-1.473\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.896\" y=\"0\" dx=\"2\" dy=\"2.1\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.896\" y=\"0\" dx=\"2\" dy=\"2.1\" layer=\"1\"/>\n<text x=\"-2.794\" y=\"1.778\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.794\" y=\"-3.048\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.2004\" y1=\"-1.5494\" x2=\"-2.3505\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"2.3622\" y1=\"-1.5494\" x2=\"3.2121\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R3216\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.913\" y1=\"0.8\" x2=\"0.888\" y2=\"0.8\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-0.8\" x2=\"0.888\" y2=\"-0.8\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.397\" y=\"1.143\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.397\" y=\"-2.413\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-0.8763\" x2=\"-0.9009\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"0.889\" y1=\"-0.8763\" x2=\"1.6391\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"R3216W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-0.913\" y1=\"0.8\" x2=\"0.888\" y2=\"0.8\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.913\" y1=\"-0.8\" x2=\"0.888\" y2=\"-0.8\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"0.983\" x2=\"2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-0.983\" x2=\"-2.473\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.499\" y=\"0\" dx=\"1.8\" dy=\"1.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.499\" y=\"0\" dx=\"1.8\" dy=\"1.2\" layer=\"1\"/>\n<text x=\"-1.524\" y=\"1.143\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.524\" y=\"-2.413\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-0.8763\" x2=\"-0.9009\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"0.889\" y1=\"-0.8763\" x2=\"1.6391\" y2=\"0.8738\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"R3225\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-0.913\" y1=\"1.219\" x2=\"0.939\" y2=\"1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-0.913\" y1=\"-1.219\" x2=\"0.939\" y2=\"-1.219\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-1.397\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.397\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-1.3081\" x2=\"-0.9009\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-1.3081\" x2=\"1.6645\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-1\" x2=\"0.3\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R3225W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-0.913\" y1=\"1.219\" x2=\"0.939\" y2=\"1.219\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.913\" y1=\"-1.219\" x2=\"0.939\" y2=\"-1.219\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-1.499\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.499\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.397\" y=\"1.524\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.397\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.651\" y1=\"-1.3081\" x2=\"-0.9009\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"0.9144\" y1=\"-1.3081\" x2=\"1.6645\" y2=\"1.2918\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-1\" x2=\"0.3\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R5025\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-1.662\" y1=\"1.245\" x2=\"1.662\" y2=\"1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.637\" y1=\"-1.245\" x2=\"1.687\" y2=\"-1.245\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-0.9\" y1=\"1.245\" x2=\"0.9\" y2=\"1.245\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.875\" y1=\"-1.245\" x2=\"0.925\" y2=\"-1.245\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.2\" y=\"0\" dx=\"1.8\" dy=\"2.7\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.2\" y=\"0\" dx=\"1.8\" dy=\"2.7\" layer=\"1\"/>\n<text x=\"-2.159\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.159\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.4892\" y1=\"-1.3208\" x2=\"-1.6393\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"1.651\" y1=\"-1.3208\" x2=\"2.5009\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R5025W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-1.662\" y1=\"1.245\" x2=\"1.662\" y2=\"1.245\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.637\" y1=\"-1.245\" x2=\"1.687\" y2=\"-1.245\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"1.483\" x2=\"3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.473\" y1=\"-1.483\" x2=\"-3.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.311\" y=\"0\" dx=\"2\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.311\" y=\"0\" dx=\"2\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-2.286\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-2.921\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-2.4892\" y1=\"-1.3208\" x2=\"-1.6393\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"1.651\" y1=\"-1.3208\" x2=\"2.5009\" y2=\"1.3292\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R6332\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip</description>\n<wire x1=\"-2.362\" y1=\"1.473\" x2=\"2.387\" y2=\"1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.362\" y1=\"-1.473\" x2=\"2.387\" y2=\"-1.473\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.473\" y1=\"1.473\" x2=\"1.498\" y2=\"1.473\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.473\" y1=\"-1.473\" x2=\"1.498\" y2=\"-1.473\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.8\" y=\"0\" dx=\"1.8\" dy=\"3.2\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.8\" y=\"0\" dx=\"1.8\" dy=\"3.2\" layer=\"1\"/>\n<text x=\"-2.794\" y=\"1.905\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.794\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.2004\" y1=\"-1.5494\" x2=\"-2.3505\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"2.3622\" y1=\"-1.5494\" x2=\"3.2121\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"R6332W\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nchip, wave soldering</description>\n<wire x1=\"-2.362\" y1=\"1.473\" x2=\"2.387\" y2=\"1.473\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.362\" y1=\"-1.473\" x2=\"2.387\" y2=\"-1.473\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"1.983\" x2=\"3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"-1.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-3.973\" y1=\"-1.983\" x2=\"-3.973\" y2=\"1.983\" width=\"0.0508\" layer=\"39\"/>\n<smd name=\"1\" x=\"-2.896\" y=\"0\" dx=\"2\" dy=\"2.1\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.896\" y=\"0\" dx=\"2\" dy=\"2.1\" layer=\"1\"/>\n<text x=\"-2.921\" y=\"1.778\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.921\" y=\"-3.048\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.2004\" y1=\"-1.5494\" x2=\"-2.3505\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"2.3622\" y1=\"-1.5494\" x2=\"3.2121\" y2=\"1.5507\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"M0805\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.10 W</description>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"0.7112\" y1=\"0.635\" x2=\"-0.7112\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.7112\" y1=\"-0.635\" x2=\"-0.7112\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.95\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.95\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1.016\" y=\"1.016\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.016\" y=\"-2.286\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.0414\" y1=\"-0.7112\" x2=\"-0.6858\" y2=\"0.7112\" layer=\"51\"/>\n<rectangle x1=\"0.6858\" y1=\"-0.7112\" x2=\"1.0414\" y2=\"0.7112\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5999\" x2=\"0.1999\" y2=\"0.5999\" layer=\"35\"/>\n</package>\n<package name=\"M1206\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.25 W</description>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.143\" y1=\"0.8382\" x2=\"-1.143\" y2=\"0.8382\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.143\" y1=\"-0.8382\" x2=\"-1.143\" y2=\"-0.8382\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.7018\" y1=\"-0.9144\" x2=\"-1.1176\" y2=\"0.9144\" layer=\"51\"/>\n<rectangle x1=\"1.1176\" y1=\"-0.9144\" x2=\"1.7018\" y2=\"0.9144\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.8001\" x2=\"0.3\" y2=\"0.8001\" layer=\"35\"/>\n</package>\n<package name=\"M1406\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.12 W</description>\n<wire x1=\"-2.973\" y1=\"0.983\" x2=\"2.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"-0.983\" x2=\"-2.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.973\" y1=\"-0.983\" x2=\"-2.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"0.983\" x2=\"2.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.3208\" y1=\"0.762\" x2=\"-1.3208\" y2=\"0.762\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.3208\" y1=\"-0.762\" x2=\"-1.3208\" y2=\"-0.762\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.6858\" y1=\"0.762\" x2=\"-0.6858\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.6858\" y1=\"-0.762\" x2=\"-0.6858\" y2=\"-0.762\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-1.7\" y=\"0\" dx=\"1.4\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.7\" y=\"0\" dx=\"1.4\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.651\" y=\"1.143\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.651\" y=\"-2.413\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.8542\" y1=\"-0.8382\" x2=\"-1.2954\" y2=\"0.8382\" layer=\"51\"/>\n<rectangle x1=\"1.2954\" y1=\"-0.8382\" x2=\"1.8542\" y2=\"0.8382\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.7\" x2=\"0.3\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"M2012\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.10 W</description>\n<wire x1=\"-1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-1.973\" y1=\"-0.983\" x2=\"-1.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.973\" y1=\"0.983\" x2=\"1.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"0.7112\" y1=\"0.635\" x2=\"-0.7112\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.7112\" y1=\"-0.635\" x2=\"-0.7112\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.95\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.95\" y=\"0\" dx=\"1.3\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1.016\" y=\"1.016\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.016\" y=\"-2.286\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.0414\" y1=\"-0.7112\" x2=\"-0.6858\" y2=\"0.7112\" layer=\"51\"/>\n<rectangle x1=\"0.6858\" y1=\"-0.7112\" x2=\"1.0414\" y2=\"0.7112\" layer=\"51\"/>\n<rectangle x1=\"-0.1999\" y1=\"-0.5999\" x2=\"0.1999\" y2=\"0.5999\" layer=\"35\"/>\n</package>\n<package name=\"M2309\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.25 W</description>\n<wire x1=\"-4.473\" y1=\"1.483\" x2=\"4.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"4.473\" y1=\"-1.483\" x2=\"-4.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-4.473\" y1=\"-1.483\" x2=\"-4.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"4.473\" y1=\"1.483\" x2=\"4.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.413\" y1=\"1.1684\" x2=\"-2.4384\" y2=\"1.1684\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.413\" y1=\"-1.1684\" x2=\"-2.413\" y2=\"-1.1684\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.651\" y1=\"1.1684\" x2=\"-1.6764\" y2=\"1.1684\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.651\" y1=\"-1.1684\" x2=\"-1.651\" y2=\"-1.1684\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.85\" y=\"0\" dx=\"1.5\" dy=\"2.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.85\" y=\"0\" dx=\"1.5\" dy=\"2.6\" layer=\"1\"/>\n<text x=\"-2.794\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.794\" y=\"-2.794\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.048\" y1=\"-1.2446\" x2=\"-2.3876\" y2=\"1.2446\" layer=\"51\"/>\n<rectangle x1=\"2.3876\" y1=\"-1.2446\" x2=\"3.048\" y2=\"1.2446\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"M3216\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.25 W</description>\n<wire x1=\"-2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.473\" y1=\"-1.483\" x2=\"-2.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.473\" y1=\"1.483\" x2=\"2.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.143\" y1=\"0.8382\" x2=\"-1.143\" y2=\"0.8382\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.143\" y1=\"-0.8382\" x2=\"-1.143\" y2=\"-0.8382\" width=\"0.1524\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.4\" y=\"0\" dx=\"1.6\" dy=\"2\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.4\" y=\"0\" dx=\"1.6\" dy=\"2\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"1.27\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.7018\" y1=\"-0.9144\" x2=\"-1.1176\" y2=\"0.9144\" layer=\"51\"/>\n<rectangle x1=\"1.1176\" y1=\"-0.9144\" x2=\"1.7018\" y2=\"0.9144\" layer=\"51\"/>\n<rectangle x1=\"-0.3\" y1=\"-0.8001\" x2=\"0.3\" y2=\"0.8001\" layer=\"35\"/>\n</package>\n<package name=\"M3516\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.12 W</description>\n<wire x1=\"-2.973\" y1=\"0.983\" x2=\"2.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"-0.983\" x2=\"-2.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-2.973\" y1=\"-0.983\" x2=\"-2.973\" y2=\"0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.973\" y1=\"0.983\" x2=\"2.973\" y2=\"-0.983\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"1.3208\" y1=\"0.762\" x2=\"-1.3208\" y2=\"0.762\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.3208\" y1=\"-0.762\" x2=\"-1.3208\" y2=\"-0.762\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"0.6858\" y1=\"0.762\" x2=\"-0.6858\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.6858\" y1=\"-0.762\" x2=\"-0.6858\" y2=\"-0.762\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-1.7\" y=\"0\" dx=\"1.4\" dy=\"1.8\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.7\" y=\"0\" dx=\"1.4\" dy=\"1.8\" layer=\"1\"/>\n<text x=\"-1.651\" y=\"1.143\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.651\" y=\"-2.413\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-1.8542\" y1=\"-0.8382\" x2=\"-1.2954\" y2=\"0.8382\" layer=\"51\"/>\n<rectangle x1=\"1.2954\" y1=\"-0.8382\" x2=\"1.8542\" y2=\"0.8382\" layer=\"51\"/>\n<rectangle x1=\"-0.4001\" y1=\"-0.7\" x2=\"0.4001\" y2=\"0.7\" layer=\"35\"/>\n</package>\n<package name=\"M5923\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\nMELF 0.25 W</description>\n<wire x1=\"-4.473\" y1=\"1.483\" x2=\"4.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"4.473\" y1=\"-1.483\" x2=\"-4.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"-4.473\" y1=\"-1.483\" x2=\"-4.473\" y2=\"1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"4.473\" y1=\"1.483\" x2=\"4.473\" y2=\"-1.483\" width=\"0.0508\" layer=\"39\"/>\n<wire x1=\"2.413\" y1=\"1.1684\" x2=\"-2.4384\" y2=\"1.1684\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"2.413\" y1=\"-1.1684\" x2=\"-2.413\" y2=\"-1.1684\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"1.651\" y1=\"1.1684\" x2=\"-1.6764\" y2=\"1.1684\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.651\" y1=\"-1.1684\" x2=\"-1.651\" y2=\"-1.1684\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.85\" y=\"0\" dx=\"1.5\" dy=\"2.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.85\" y=\"0\" dx=\"1.5\" dy=\"2.6\" layer=\"1\"/>\n<text x=\"-2.794\" y=\"1.651\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.794\" y=\"-2.794\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"-3.048\" y1=\"-1.2446\" x2=\"-2.3876\" y2=\"1.2446\" layer=\"51\"/>\n<rectangle x1=\"2.3876\" y1=\"-1.2446\" x2=\"3.048\" y2=\"1.2446\" layer=\"51\"/>\n<rectangle x1=\"-0.5001\" y1=\"-1\" x2=\"0.5001\" y2=\"1\" layer=\"35\"/>\n</package>\n<package name=\"0204/5\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0204, grid 5 mm</description>\n<wire x1=\"2.54\" y1=\"0\" x2=\"2.032\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-2.032\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-1.778\" y1=\"0.635\" x2=\"-1.524\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-1.778\" y1=\"-0.635\" x2=\"-1.524\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"1.524\" y1=\"-0.889\" x2=\"1.778\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"1.524\" y1=\"0.889\" x2=\"1.778\" y2=\"0.635\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-1.778\" y1=\"-0.635\" x2=\"-1.778\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-1.524\" y1=\"0.889\" x2=\"-1.27\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.143\" y1=\"0.762\" x2=\"-1.27\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.524\" y1=\"-0.889\" x2=\"-1.27\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.143\" y1=\"-0.762\" x2=\"-1.27\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.143\" y1=\"0.762\" x2=\"1.27\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.143\" y1=\"0.762\" x2=\"-1.143\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.143\" y1=\"-0.762\" x2=\"1.27\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.143\" y1=\"-0.762\" x2=\"-1.143\" y2=\"-0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.524\" y1=\"0.889\" x2=\"1.27\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.524\" y1=\"-0.889\" x2=\"1.27\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"-0.635\" x2=\"1.778\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.0066\" y=\"1.1684\" size=\"0.9906\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.1336\" y=\"-2.3114\" size=\"0.9906\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-2.032\" y1=\"-0.254\" x2=\"-1.778\" y2=\"0.254\" layer=\"51\"/>\n<rectangle x1=\"1.778\" y1=\"-0.254\" x2=\"2.032\" y2=\"0.254\" layer=\"51\"/>\n</package>\n<package name=\"0204/7\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0204, grid 7.5 mm</description>\n<wire x1=\"3.81\" y1=\"0\" x2=\"2.921\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-2.921\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-2.54\" y1=\"0.762\" x2=\"-2.286\" y2=\"1.016\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.54\" y1=\"-0.762\" x2=\"-2.286\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.286\" y1=\"-1.016\" x2=\"2.54\" y2=\"-0.762\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.286\" y1=\"1.016\" x2=\"2.54\" y2=\"0.762\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-2.54\" y1=\"-0.762\" x2=\"-2.54\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"1.016\" x2=\"-1.905\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.778\" y1=\"0.889\" x2=\"-1.905\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"-1.016\" x2=\"-1.905\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.778\" y1=\"-0.889\" x2=\"-1.905\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"0.889\" x2=\"1.905\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"0.889\" x2=\"-1.778\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"-0.889\" x2=\"1.905\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.778\" y1=\"-0.889\" x2=\"-1.778\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.286\" y1=\"1.016\" x2=\"1.905\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.286\" y1=\"-1.016\" x2=\"1.905\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-0.762\" x2=\"2.54\" y2=\"0.762\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.54\" y=\"1.2954\" size=\"0.9906\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.6256\" y=\"-0.4826\" size=\"0.9906\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"2.54\" y1=\"-0.254\" x2=\"2.921\" y2=\"0.254\" layer=\"21\"/>\n<rectangle x1=\"-2.921\" y1=\"-0.254\" x2=\"-2.54\" y2=\"0.254\" layer=\"21\"/>\n</package>\n<package name=\"0204V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0204, grid 2.5 mm</description>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"1.27\" y2=\"0\" width=\"0.508\" layer=\"51\"/>\n<wire x1=\"-0.127\" y1=\"0\" x2=\"0.127\" y2=\"0\" width=\"0.508\" layer=\"21\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"0.889\" width=\"0.1524\" layer=\"51\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"0.635\" width=\"0.0508\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.1336\" y=\"1.1684\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.1336\" y=\"-2.3114\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"0207/10\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 10 mm</description>\n<wire x1=\"5.08\" y1=\"0\" x2=\"4.064\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-4.064\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-3.175\" y1=\"0.889\" x2=\"-2.921\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-2.921\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"3.175\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"1.143\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"-1.143\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"-0.889\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.048\" y=\"1.524\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.2606\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"3.175\" y1=\"-0.3048\" x2=\"4.0386\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-4.0386\" y1=\"-0.3048\" x2=\"-3.175\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0207/12\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 12 mm</description>\n<wire x1=\"6.35\" y1=\"0\" x2=\"5.334\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.334\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-3.175\" y1=\"0.889\" x2=\"-2.921\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-2.921\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"3.175\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"1.143\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"-1.143\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"-0.889\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.445\" y1=\"0\" x2=\"4.064\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<wire x1=\"-4.445\" y1=\"0\" x2=\"-4.064\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.175\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-0.6858\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"3.175\" y1=\"-0.3048\" x2=\"4.0386\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-4.0386\" y1=\"-0.3048\" x2=\"-3.175\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"4.445\" y1=\"-0.3048\" x2=\"5.3086\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-5.3086\" y1=\"-0.3048\" x2=\"-4.445\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0207/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 15mm</description>\n<wire x1=\"7.62\" y1=\"0\" x2=\"6.604\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.604\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-3.175\" y1=\"0.889\" x2=\"-2.921\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-2.921\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"3.175\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"1.143\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"-1.143\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"-0.889\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.715\" y1=\"0\" x2=\"4.064\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<wire x1=\"-5.715\" y1=\"0\" x2=\"-4.064\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-3.175\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-0.6858\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"3.175\" y1=\"-0.3048\" x2=\"4.0386\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-4.0386\" y1=\"-0.3048\" x2=\"-3.175\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"5.715\" y1=\"-0.3048\" x2=\"6.5786\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-6.5786\" y1=\"-0.3048\" x2=\"-5.715\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0207/2V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 2.5 mm</description>\n<wire x1=\"-1.27\" y1=\"0\" x2=\"-0.381\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-0.254\" y1=\"0\" x2=\"0.254\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<wire x1=\"0.381\" y1=\"0\" x2=\"1.27\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"1.016\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-0.0508\" y=\"1.016\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.0508\" y=\"-2.2352\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"0207/5V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 5 mm</description>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-0.889\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-0.762\" y1=\"0\" x2=\"0.762\" y2=\"0\" width=\"0.6096\" layer=\"21\"/>\n<wire x1=\"0.889\" y1=\"0\" x2=\"2.54\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.27\" width=\"0.1016\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.016\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-1.143\" y=\"0.889\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.143\" y=\"-2.159\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"0207/7\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0207, grid 7.5 mm</description>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-3.429\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-3.175\" y1=\"0.889\" x2=\"-2.921\" y2=\"1.143\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-2.921\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"3.175\" y2=\"-0.889\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-3.175\" y1=\"-0.889\" x2=\"-3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-2.921\" y1=\"1.143\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"1.016\" x2=\"-2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.921\" y1=\"-1.143\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.413\" y1=\"-1.016\" x2=\"-2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"1.016\" x2=\"-2.413\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.413\" y1=\"-1.016\" x2=\"-2.413\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"1.143\" x2=\"2.54\" y2=\"1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.921\" y1=\"-1.143\" x2=\"2.54\" y2=\"-1.143\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"-0.889\" x2=\"3.175\" y2=\"0.889\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"3.429\" y1=\"0\" x2=\"3.81\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"3.81\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.54\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.286\" y=\"-0.5588\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-3.429\" y1=\"-0.3048\" x2=\"-3.175\" y2=\"0.3048\" layer=\"51\"/>\n<rectangle x1=\"3.175\" y1=\"-0.3048\" x2=\"3.429\" y2=\"0.3048\" layer=\"51\"/>\n</package>\n<package name=\"0309/10\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0309, grid 10mm</description>\n<wire x1=\"-4.699\" y1=\"0\" x2=\"-5.08\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-4.318\" y1=\"1.27\" x2=\"-4.064\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.318\" y1=\"-1.27\" x2=\"-4.064\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.064\" y1=\"-1.524\" x2=\"4.318\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.064\" y1=\"1.524\" x2=\"4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.318\" y1=\"-1.27\" x2=\"-4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-4.064\" y1=\"1.524\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"1.397\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.064\" y1=\"-1.524\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"-1.397\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"1.397\" x2=\"3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"1.397\" x2=\"-3.302\" y2=\"1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"-1.397\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"-1.397\" x2=\"-3.302\" y2=\"-1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.064\" y1=\"1.524\" x2=\"3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.064\" y1=\"-1.524\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.318\" y1=\"-1.27\" x2=\"4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"5.08\" y1=\"0\" x2=\"4.699\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"5.08\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-4.191\" y=\"1.905\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.6858\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-4.6228\" y1=\"-0.3048\" x2=\"-4.318\" y2=\"0.3048\" layer=\"51\"/>\n<rectangle x1=\"4.318\" y1=\"-0.3048\" x2=\"4.6228\" y2=\"0.3048\" layer=\"51\"/>\n</package>\n<package name=\"0309/12\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0309, grid 12.5 mm</description>\n<wire x1=\"6.35\" y1=\"0\" x2=\"5.08\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.08\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-4.318\" y1=\"1.27\" x2=\"-4.064\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.318\" y1=\"-1.27\" x2=\"-4.064\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.064\" y1=\"-1.524\" x2=\"4.318\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.064\" y1=\"1.524\" x2=\"4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-4.318\" y1=\"-1.27\" x2=\"-4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.064\" y1=\"1.524\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"1.397\" x2=\"-3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.064\" y1=\"-1.524\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.302\" y1=\"-1.397\" x2=\"-3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"1.397\" x2=\"3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"1.397\" x2=\"-3.302\" y2=\"1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"-1.397\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.302\" y1=\"-1.397\" x2=\"-3.302\" y2=\"-1.397\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.064\" y1=\"1.524\" x2=\"3.429\" y2=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.064\" y1=\"-1.524\" x2=\"3.429\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.318\" y1=\"-1.27\" x2=\"4.318\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-4.191\" y=\"1.905\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.175\" y=\"-0.6858\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"4.318\" y1=\"-0.3048\" x2=\"5.1816\" y2=\"0.3048\" layer=\"21\"/>\n<rectangle x1=\"-5.1816\" y1=\"-0.3048\" x2=\"-4.318\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0309V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0309, grid 2.5 mm</description>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0.635\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<wire x1=\"-0.635\" y1=\"0\" x2=\"-1.27\" y2=\"0\" width=\"0.6096\" layer=\"51\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"1.524\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-1.27\" y=\"0\" radius=\"0.762\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"0.254\" y=\"1.016\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0.254\" y=\"-2.2098\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"0.254\" y1=\"-0.3048\" x2=\"0.5588\" y2=\"0.3048\" layer=\"51\"/>\n<rectangle x1=\"-0.635\" y1=\"-0.3048\" x2=\"-0.3302\" y2=\"0.3048\" layer=\"51\"/>\n<rectangle x1=\"-0.3302\" y1=\"-0.3048\" x2=\"0.254\" y2=\"0.3048\" layer=\"21\"/>\n</package>\n<package name=\"0411/12\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0411, grid 12.5 mm</description>\n<wire x1=\"6.35\" y1=\"0\" x2=\"5.461\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.461\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<wire x1=\"5.08\" y1=\"-1.651\" x2=\"5.08\" y2=\"1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"2.032\" x2=\"5.08\" y2=\"1.651\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-5.08\" y1=\"-1.651\" x2=\"-4.699\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.699\" y1=\"-2.032\" x2=\"5.08\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.08\" y1=\"1.651\" x2=\"-4.699\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"2.032\" x2=\"4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.937\" y1=\"1.905\" x2=\"4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-2.032\" x2=\"4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.937\" y1=\"-1.905\" x2=\"4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"1.905\" x2=\"-4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"1.905\" x2=\"3.937\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"-1.905\" x2=\"-4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"-1.905\" x2=\"3.937\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"1.651\" x2=\"-5.08\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"2.032\" x2=\"-4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"-2.032\" x2=\"-4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-5.08\" y=\"2.413\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.5814\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-5.3594\" y1=\"-0.381\" x2=\"-5.08\" y2=\"0.381\" layer=\"21\"/>\n<rectangle x1=\"5.08\" y1=\"-0.381\" x2=\"5.3594\" y2=\"0.381\" layer=\"21\"/>\n</package>\n<package name=\"0411/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0411, grid 15 mm</description>\n<wire x1=\"5.08\" y1=\"-1.651\" x2=\"5.08\" y2=\"1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"2.032\" x2=\"5.08\" y2=\"1.651\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-5.08\" y1=\"-1.651\" x2=\"-4.699\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"4.699\" y1=\"-2.032\" x2=\"5.08\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-5.08\" y1=\"1.651\" x2=\"-4.699\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"2.032\" x2=\"4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.937\" y1=\"1.905\" x2=\"4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-2.032\" x2=\"4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.937\" y1=\"-1.905\" x2=\"4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"1.905\" x2=\"-4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"1.905\" x2=\"3.937\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"-1.905\" x2=\"-4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.937\" y1=\"-1.905\" x2=\"3.937\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"1.651\" x2=\"-5.08\" y2=\"-1.651\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"2.032\" x2=\"-4.064\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.699\" y1=\"-2.032\" x2=\"-4.064\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.35\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<wire x1=\"6.35\" y1=\"0\" x2=\"7.62\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-5.08\" y=\"2.413\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.5814\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"5.08\" y1=\"-0.381\" x2=\"6.477\" y2=\"0.381\" layer=\"21\"/>\n<rectangle x1=\"-6.477\" y1=\"-0.381\" x2=\"-5.08\" y2=\"0.381\" layer=\"21\"/>\n</package>\n<package name=\"0411V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0411, grid 3.81 mm</description>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0.3048\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<wire x1=\"-1.5748\" y1=\"0\" x2=\"-2.54\" y2=\"0\" width=\"0.762\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.016\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.9144\" shape=\"octagon\"/>\n<text x=\"-0.508\" y=\"1.143\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.5334\" y=\"-2.413\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.4732\" y1=\"-0.381\" x2=\"0.2032\" y2=\"0.381\" layer=\"21\"/>\n</package>\n<package name=\"0414/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0414, grid 15 mm</description>\n<wire x1=\"7.62\" y1=\"0\" x2=\"6.604\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.604\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.096\" y1=\"1.905\" x2=\"-5.842\" y2=\"2.159\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.096\" y1=\"-1.905\" x2=\"-5.842\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"5.842\" y1=\"-2.159\" x2=\"6.096\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"5.842\" y1=\"2.159\" x2=\"6.096\" y2=\"1.905\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.096\" y1=\"-1.905\" x2=\"-6.096\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.842\" y1=\"2.159\" x2=\"-4.953\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.826\" y1=\"2.032\" x2=\"-4.953\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.842\" y1=\"-2.159\" x2=\"-4.953\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.826\" y1=\"-2.032\" x2=\"-4.953\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"2.032\" x2=\"4.953\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"2.032\" x2=\"-4.826\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"-2.032\" x2=\"4.953\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.826\" y1=\"-2.032\" x2=\"-4.826\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.842\" y1=\"2.159\" x2=\"4.953\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.842\" y1=\"-2.159\" x2=\"4.953\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"-1.905\" x2=\"6.096\" y2=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.096\" y=\"2.5654\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-4.318\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"6.096\" y1=\"-0.4064\" x2=\"6.5024\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"-6.5024\" y1=\"-0.4064\" x2=\"-6.096\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"0414V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0414, grid 5 mm</description>\n<wire x1=\"2.54\" y1=\"0\" x2=\"1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.143\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-0.381\" y=\"1.1684\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.381\" y=\"-2.3622\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.2954\" y1=\"-0.4064\" x2=\"1.2954\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"0617/17\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0617, grid 17.5 mm</description>\n<wire x1=\"-8.89\" y1=\"0\" x2=\"-8.636\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-7.874\" y1=\"3.048\" x2=\"-6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"2.794\" x2=\"-6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.874\" y1=\"-3.048\" x2=\"-6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"-2.794\" x2=\"-6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"2.794\" x2=\"6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"2.794\" x2=\"-6.731\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.794\" x2=\"6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.794\" x2=\"-6.731\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.874\" y1=\"3.048\" x2=\"6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.874\" y1=\"-3.048\" x2=\"6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.255\" y1=\"-2.667\" x2=\"-8.255\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.255\" y1=\"1.016\" x2=\"-8.255\" y2=\"-1.016\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-8.255\" y1=\"1.016\" x2=\"-8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.255\" y1=\"-2.667\" x2=\"8.255\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.255\" y1=\"1.016\" x2=\"8.255\" y2=\"-1.016\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"8.255\" y1=\"1.016\" x2=\"8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"0\" x2=\"8.89\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.255\" y1=\"2.667\" x2=\"-7.874\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"7.874\" y1=\"3.048\" x2=\"8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-8.255\" y1=\"-2.667\" x2=\"-7.874\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"7.874\" y1=\"-3.048\" x2=\"8.255\" y2=\"-2.667\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<pad name=\"1\" x=\"-8.89\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"8.89\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.128\" y=\"3.4544\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-6.096\" y=\"-0.7112\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-8.5344\" y1=\"-0.4064\" x2=\"-8.2296\" y2=\"0.4064\" layer=\"51\"/>\n<rectangle x1=\"8.2296\" y1=\"-0.4064\" x2=\"8.5344\" y2=\"0.4064\" layer=\"51\"/>\n</package>\n<package name=\"0617/22\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0617, grid 22.5 mm</description>\n<wire x1=\"-10.287\" y1=\"0\" x2=\"-11.43\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.255\" y1=\"-2.667\" x2=\"-8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.874\" y1=\"3.048\" x2=\"-6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"2.794\" x2=\"-6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.874\" y1=\"-3.048\" x2=\"-6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.731\" y1=\"-2.794\" x2=\"-6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"2.794\" x2=\"6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"2.794\" x2=\"-6.731\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.794\" x2=\"6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.794\" x2=\"-6.731\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.874\" y1=\"3.048\" x2=\"6.985\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.874\" y1=\"-3.048\" x2=\"6.985\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.255\" y1=\"-2.667\" x2=\"8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"11.43\" y1=\"0\" x2=\"10.287\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.255\" y1=\"2.667\" x2=\"-7.874\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-8.255\" y1=\"-2.667\" x2=\"-7.874\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"7.874\" y1=\"3.048\" x2=\"8.255\" y2=\"2.667\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"7.874\" y1=\"-3.048\" x2=\"8.255\" y2=\"-2.667\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<pad name=\"1\" x=\"-11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.255\" y=\"3.4544\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-6.477\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-10.1854\" y1=\"-0.4064\" x2=\"-8.255\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"8.255\" y1=\"-0.4064\" x2=\"10.1854\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"0617V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0617, grid 5 mm</description>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-1.27\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"1.27\" y1=\"0\" x2=\"2.54\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.143\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"0.635\" y=\"1.4224\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0.635\" y=\"-2.6162\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.3208\" y1=\"-0.4064\" x2=\"1.3208\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"0922/22\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0922, grid 22.5 mm</description>\n<wire x1=\"11.43\" y1=\"0\" x2=\"10.795\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-11.43\" y1=\"0\" x2=\"-10.795\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-10.16\" y1=\"-4.191\" x2=\"-10.16\" y2=\"4.191\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.779\" y1=\"4.572\" x2=\"-8.89\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.636\" y1=\"4.318\" x2=\"-8.89\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-9.779\" y1=\"-4.572\" x2=\"-8.89\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.636\" y1=\"-4.318\" x2=\"-8.89\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"4.318\" x2=\"8.89\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"4.318\" x2=\"-8.636\" y2=\"4.318\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"-4.318\" x2=\"8.89\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.636\" y1=\"-4.318\" x2=\"-8.636\" y2=\"-4.318\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.779\" y1=\"4.572\" x2=\"8.89\" y2=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"9.779\" y1=\"-4.572\" x2=\"8.89\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"10.16\" y1=\"-4.191\" x2=\"10.16\" y2=\"4.191\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-10.16\" y1=\"-4.191\" x2=\"-9.779\" y2=\"-4.572\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-10.16\" y1=\"4.191\" x2=\"-9.779\" y2=\"4.572\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"9.779\" y1=\"-4.572\" x2=\"10.16\" y2=\"-4.191\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"9.779\" y1=\"4.572\" x2=\"10.16\" y2=\"4.191\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-10.16\" y=\"5.1054\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-6.477\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-10.7188\" y1=\"-0.4064\" x2=\"-10.16\" y2=\"0.4064\" layer=\"51\"/>\n<rectangle x1=\"10.16\" y1=\"-0.4064\" x2=\"10.3124\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"-10.3124\" y1=\"-0.4064\" x2=\"-10.16\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"10.16\" y1=\"-0.4064\" x2=\"10.7188\" y2=\"0.4064\" layer=\"51\"/>\n</package>\n<package name=\"P0613V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0613, grid 5 mm</description>\n<wire x1=\"2.54\" y1=\"0\" x2=\"1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-2.54\" y1=\"0\" x2=\"-1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-2.54\" y=\"0\" radius=\"1.143\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-0.254\" y=\"1.143\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.254\" y=\"-2.413\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.2954\" y1=\"-0.4064\" x2=\"1.3208\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"P0613/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0613, grid 15 mm</description>\n<wire x1=\"7.62\" y1=\"0\" x2=\"6.985\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.985\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.477\" y1=\"2.032\" x2=\"-6.223\" y2=\"2.286\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.477\" y1=\"-2.032\" x2=\"-6.223\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"6.223\" y1=\"-2.286\" x2=\"6.477\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"6.223\" y1=\"2.286\" x2=\"6.477\" y2=\"2.032\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.223\" y1=\"2.286\" x2=\"-5.334\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.207\" y1=\"2.159\" x2=\"-5.334\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.223\" y1=\"-2.286\" x2=\"-5.334\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.207\" y1=\"-2.159\" x2=\"-5.334\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"2.159\" x2=\"5.334\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"2.159\" x2=\"-5.207\" y2=\"2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"-2.159\" x2=\"5.334\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.207\" y1=\"-2.159\" x2=\"-5.207\" y2=\"-2.159\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.223\" y1=\"2.286\" x2=\"5.334\" y2=\"2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.223\" y1=\"-2.286\" x2=\"5.334\" y2=\"-2.286\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"-0.635\" x2=\"6.477\" y2=\"-2.032\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"-0.635\" x2=\"6.477\" y2=\"0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"6.477\" y1=\"2.032\" x2=\"6.477\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.477\" y1=\"-2.032\" x2=\"-6.477\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.477\" y1=\"0.635\" x2=\"-6.477\" y2=\"-0.635\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-6.477\" y1=\"0.635\" x2=\"-6.477\" y2=\"2.032\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.477\" y=\"2.6924\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-4.318\" y=\"-0.7112\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-7.0358\" y1=\"-0.4064\" x2=\"-6.477\" y2=\"0.4064\" layer=\"51\"/>\n<rectangle x1=\"6.477\" y1=\"-0.4064\" x2=\"7.0358\" y2=\"0.4064\" layer=\"51\"/>\n</package>\n<package name=\"P0817/22\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0817, grid 22.5 mm</description>\n<wire x1=\"-10.414\" y1=\"0\" x2=\"-11.43\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.509\" y1=\"-3.429\" x2=\"-8.509\" y2=\"3.429\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.128\" y1=\"3.81\" x2=\"-7.239\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.985\" y1=\"3.556\" x2=\"-7.239\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-8.128\" y1=\"-3.81\" x2=\"-7.239\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.985\" y1=\"-3.556\" x2=\"-7.239\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"3.556\" x2=\"7.239\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"3.556\" x2=\"-6.985\" y2=\"3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"-3.556\" x2=\"7.239\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.985\" y1=\"-3.556\" x2=\"-6.985\" y2=\"-3.556\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.128\" y1=\"3.81\" x2=\"7.239\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.128\" y1=\"-3.81\" x2=\"7.239\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.509\" y1=\"-3.429\" x2=\"8.509\" y2=\"3.429\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"11.43\" y1=\"0\" x2=\"10.414\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-8.509\" y1=\"3.429\" x2=\"-8.128\" y2=\"3.81\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-8.509\" y1=\"-3.429\" x2=\"-8.128\" y2=\"-3.81\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"8.128\" y1=\"3.81\" x2=\"8.509\" y2=\"3.429\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"8.128\" y1=\"-3.81\" x2=\"8.509\" y2=\"-3.429\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<pad name=\"1\" x=\"-11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"11.43\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-8.382\" y=\"4.2164\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-6.223\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<text x=\"6.604\" y=\"-2.2606\" size=\"1.27\" layer=\"51\" ratio=\"10\" rot=\"R90\">0817</text>\n<rectangle x1=\"8.509\" y1=\"-0.4064\" x2=\"10.3124\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"-10.3124\" y1=\"-0.4064\" x2=\"-8.509\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"P0817V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0817, grid 6.35 mm</description>\n<wire x1=\"-3.81\" y1=\"0\" x2=\"-5.08\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"1.27\" y1=\"0\" x2=\"0\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-5.08\" y=\"0\" radius=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-5.08\" y=\"0\" radius=\"1.27\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-1.016\" y=\"1.27\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.016\" y=\"-2.54\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<text x=\"-6.858\" y=\"2.032\" size=\"1.016\" layer=\"21\" ratio=\"12\">0817</text>\n<rectangle x1=\"-3.81\" y1=\"-0.4064\" x2=\"0\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"V234/12\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype V234, grid 12.5 mm</description>\n<wire x1=\"-4.953\" y1=\"1.524\" x2=\"-4.699\" y2=\"1.778\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"1.778\" x2=\"4.953\" y2=\"1.524\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"4.699\" y1=\"-1.778\" x2=\"4.953\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-4.953\" y1=\"-1.524\" x2=\"-4.699\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-4.699\" y1=\"1.778\" x2=\"4.699\" y2=\"1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.953\" y1=\"1.524\" x2=\"-4.953\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.699\" y1=\"-1.778\" x2=\"-4.699\" y2=\"-1.778\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"1.524\" x2=\"4.953\" y2=\"-1.524\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.35\" y1=\"0\" x2=\"5.461\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.35\" y1=\"0\" x2=\"-5.461\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<pad name=\"1\" x=\"-6.35\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"6.35\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-4.953\" y=\"2.159\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-3.81\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"4.953\" y1=\"-0.4064\" x2=\"5.4102\" y2=\"0.4064\" layer=\"21\"/>\n<rectangle x1=\"-5.4102\" y1=\"-0.4064\" x2=\"-4.953\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"V235/17\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype V235, grid 17.78 mm</description>\n<wire x1=\"-6.731\" y1=\"2.921\" x2=\"6.731\" y2=\"2.921\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-7.112\" y1=\"2.54\" x2=\"-7.112\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.731\" y1=\"-2.921\" x2=\"-6.731\" y2=\"-2.921\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"7.112\" y1=\"2.54\" x2=\"7.112\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"8.89\" y1=\"0\" x2=\"7.874\" y2=\"0\" width=\"1.016\" layer=\"51\"/>\n<wire x1=\"-7.874\" y1=\"0\" x2=\"-8.89\" y2=\"0\" width=\"1.016\" layer=\"51\"/>\n<wire x1=\"-7.112\" y1=\"-2.54\" x2=\"-6.731\" y2=\"-2.921\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"6.731\" y1=\"2.921\" x2=\"7.112\" y2=\"2.54\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.731\" y1=\"-2.921\" x2=\"7.112\" y2=\"-2.54\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-7.112\" y1=\"2.54\" x2=\"-6.731\" y2=\"2.921\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<pad name=\"1\" x=\"-8.89\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"8.89\" y=\"0\" drill=\"1.1938\" shape=\"octagon\"/>\n<text x=\"-6.858\" y=\"3.302\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.842\" y=\"-0.635\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"7.112\" y1=\"-0.508\" x2=\"7.747\" y2=\"0.508\" layer=\"21\"/>\n<rectangle x1=\"-7.747\" y1=\"-0.508\" x2=\"-7.112\" y2=\"0.508\" layer=\"21\"/>\n</package>\n<package name=\"V526-0\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype V526-0, grid 2.5 mm</description>\n<wire x1=\"-2.54\" y1=\"1.016\" x2=\"-2.286\" y2=\"1.27\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.286\" y1=\"1.27\" x2=\"2.54\" y2=\"1.016\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"2.286\" y1=\"-1.27\" x2=\"2.54\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"-2.54\" y1=\"-1.016\" x2=\"-2.286\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"2.286\" y1=\"1.27\" x2=\"-2.286\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-1.016\" x2=\"2.54\" y2=\"1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.286\" y1=\"-1.27\" x2=\"2.286\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"1.016\" x2=\"-2.54\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"1.27\" y=\"0\" drill=\"0.8128\" shape=\"octagon\"/>\n<text x=\"-2.413\" y=\"1.651\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.413\" y=\"-2.794\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0102R\">\n<description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Reflow Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-1\" y1=\"-0.5\" x2=\"1\" y2=\"-0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1\" y1=\"-0.5\" x2=\"1\" y2=\"0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1\" y1=\"0.5\" x2=\"-1\" y2=\"0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-1\" y1=\"0.5\" x2=\"-1\" y2=\"-0.5\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.9\" y=\"0\" dx=\"0.5\" dy=\"1.3\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.9\" y=\"0\" dx=\"0.5\" dy=\"1.3\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0102W\">\n<description>&lt;b&gt;CECC Size RC2211&lt;/b&gt; Wave Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-1\" y1=\"-0.5\" x2=\"1\" y2=\"-0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1\" y1=\"-0.5\" x2=\"1\" y2=\"0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1\" y1=\"0.5\" x2=\"-1\" y2=\"0.5\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-1\" y1=\"0.5\" x2=\"-1\" y2=\"-0.5\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-0.95\" y=\"0\" dx=\"0.6\" dy=\"1.3\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.95\" y=\"0\" dx=\"0.6\" dy=\"1.3\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0204R\">\n<description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Reflow Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-1.7\" y1=\"-0.6\" x2=\"1.7\" y2=\"-0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.7\" y1=\"-0.6\" x2=\"1.7\" y2=\"0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.7\" y1=\"0.6\" x2=\"-1.7\" y2=\"0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-1.7\" y1=\"0.6\" x2=\"-1.7\" y2=\"-0.6\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.5\" y=\"0\" dx=\"0.8\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.5\" y=\"0\" dx=\"0.8\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0204W\">\n<description>&lt;b&gt;CECC Size RC3715&lt;/b&gt; Wave Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-1.7\" y1=\"-0.6\" x2=\"1.7\" y2=\"-0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.7\" y1=\"-0.6\" x2=\"1.7\" y2=\"0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"1.7\" y1=\"0.6\" x2=\"-1.7\" y2=\"0.6\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-1.7\" y1=\"0.6\" x2=\"-1.7\" y2=\"-0.6\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-1.5\" y=\"0\" dx=\"1.2\" dy=\"1.6\" layer=\"1\"/>\n<smd name=\"2\" x=\"1.5\" y=\"0\" dx=\"1.2\" dy=\"1.6\" layer=\"1\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0207R\">\n<description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Reflow Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-2.8\" y1=\"-1\" x2=\"2.8\" y2=\"-1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.8\" y1=\"-1\" x2=\"2.8\" y2=\"1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.8\" y1=\"1\" x2=\"-2.8\" y2=\"1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-2.8\" y1=\"1\" x2=\"-2.8\" y2=\"-1\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-2.25\" y=\"0\" dx=\"1.6\" dy=\"2.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.25\" y=\"0\" dx=\"1.6\" dy=\"2.5\" layer=\"1\"/>\n<text x=\"-2.2225\" y=\"1.5875\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.2225\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"MINI_MELF-0207W\">\n<description>&lt;b&gt;CECC Size RC6123&lt;/b&gt; Wave Soldering&lt;p&gt;\nsource Beyschlag</description>\n<wire x1=\"-2.8\" y1=\"-1\" x2=\"2.8\" y2=\"-1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.8\" y1=\"-1\" x2=\"2.8\" y2=\"1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"2.8\" y1=\"1\" x2=\"-2.8\" y2=\"1\" width=\"0.2032\" layer=\"51\"/>\n<wire x1=\"-2.8\" y1=\"1\" x2=\"-2.8\" y2=\"-1\" width=\"0.2032\" layer=\"51\"/>\n<smd name=\"1\" x=\"-2.6\" y=\"0\" dx=\"2.4\" dy=\"2.5\" layer=\"1\"/>\n<smd name=\"2\" x=\"2.6\" y=\"0\" dx=\"2.4\" dy=\"2.5\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"1.5875\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-2.54\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"0922V\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype 0922, grid 7.5 mm</description>\n<wire x1=\"2.54\" y1=\"0\" x2=\"1.397\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-5.08\" y1=\"0\" x2=\"-3.81\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<circle x=\"-5.08\" y=\"0\" radius=\"4.572\" width=\"0.1524\" layer=\"21\"/>\n<circle x=\"-5.08\" y=\"0\" radius=\"1.905\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-5.08\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"2.54\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-0.508\" y=\"1.6764\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-2.9972\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<text x=\"-6.858\" y=\"2.54\" size=\"1.016\" layer=\"21\" ratio=\"12\">0922</text>\n<rectangle x1=\"-3.81\" y1=\"-0.4064\" x2=\"1.3208\" y2=\"0.4064\" layer=\"21\"/>\n</package>\n<package name=\"RDH/15\">\n<description>&lt;b&gt;RESISTOR&lt;/b&gt;&lt;p&gt;\ntype RDH, grid 15 mm</description>\n<wire x1=\"-7.62\" y1=\"0\" x2=\"-6.858\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.096\" y1=\"3.048\" x2=\"-5.207\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.953\" y1=\"2.794\" x2=\"-5.207\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.096\" y1=\"-3.048\" x2=\"-5.207\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.953\" y1=\"-2.794\" x2=\"-5.207\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"2.794\" x2=\"5.207\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"2.794\" x2=\"-4.953\" y2=\"2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"-2.794\" x2=\"5.207\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.953\" y1=\"-2.794\" x2=\"-4.953\" y2=\"-2.794\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"3.048\" x2=\"5.207\" y2=\"3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.096\" y1=\"-3.048\" x2=\"5.207\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.477\" y1=\"-2.667\" x2=\"-6.477\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-6.477\" y1=\"1.016\" x2=\"-6.477\" y2=\"-1.016\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"-6.477\" y1=\"1.016\" x2=\"-6.477\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"-2.667\" x2=\"6.477\" y2=\"-1.016\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.477\" y1=\"1.016\" x2=\"6.477\" y2=\"-1.016\" width=\"0.1524\" layer=\"51\"/>\n<wire x1=\"6.477\" y1=\"1.016\" x2=\"6.477\" y2=\"2.667\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"6.858\" y1=\"0\" x2=\"7.62\" y2=\"0\" width=\"0.8128\" layer=\"51\"/>\n<wire x1=\"-6.477\" y1=\"2.667\" x2=\"-6.096\" y2=\"3.048\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"6.096\" y1=\"3.048\" x2=\"6.477\" y2=\"2.667\" width=\"0.1524\" layer=\"21\" curve=\"-90\"/>\n<wire x1=\"-6.477\" y1=\"-2.667\" x2=\"-6.096\" y2=\"-3.048\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<wire x1=\"6.096\" y1=\"-3.048\" x2=\"6.477\" y2=\"-2.667\" width=\"0.1524\" layer=\"21\" curve=\"90\"/>\n<pad name=\"1\" x=\"-7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<pad name=\"2\" x=\"7.62\" y=\"0\" drill=\"1.016\" shape=\"octagon\"/>\n<text x=\"-6.35\" y=\"3.4544\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-4.318\" y=\"-0.5842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<text x=\"4.572\" y=\"-1.7272\" size=\"1.27\" layer=\"51\" ratio=\"10\" rot=\"R90\">RDH</text>\n<rectangle x1=\"-6.7564\" y1=\"-0.4064\" x2=\"-6.4516\" y2=\"0.4064\" layer=\"51\"/>\n<rectangle x1=\"6.4516\" y1=\"-0.4064\" x2=\"6.7564\" y2=\"0.4064\" layer=\"51\"/>\n</package>\n<package name=\"MINI_MELF-0102AX\">\n<description>&lt;b&gt;Mini MELF 0102 Axial&lt;/b&gt;</description>\n<circle x=\"0\" y=\"0\" radius=\"0.6\" width=\"0\" layer=\"51\"/>\n<circle x=\"0\" y=\"0\" radius=\"0.6\" width=\"0\" layer=\"52\"/>\n<smd name=\"1\" x=\"0\" y=\"0\" dx=\"1.9\" dy=\"1.9\" layer=\"1\" roundness=\"100\"/>\n<smd name=\"2\" x=\"0\" y=\"0\" dx=\"1.9\" dy=\"1.9\" layer=\"16\" roundness=\"100\"/>\n<text x=\"-1.27\" y=\"0.9525\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-2.2225\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<hole x=\"0\" y=\"0\" drill=\"1.3\"/>\n</package>\n</packages>\n<symbols>\n<symbol name=\"C-EU\">\n<wire x1=\"0\" y1=\"0\" x2=\"0\" y2=\"-0.508\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0\" y1=\"-2.54\" x2=\"0\" y2=\"-2.032\" width=\"0.1524\" layer=\"94\"/>\n<text x=\"1.524\" y=\"0.381\" size=\"1.778\" layer=\"95\">&gt;NAME</text>\n<text x=\"1.524\" y=\"-4.699\" size=\"1.778\" layer=\"96\">&gt;VALUE</text>\n<rectangle x1=\"-2.032\" y1=\"-2.032\" x2=\"2.032\" y2=\"-1.524\" layer=\"94\"/>\n<rectangle x1=\"-2.032\" y1=\"-1.016\" x2=\"2.032\" y2=\"-0.508\" layer=\"94\"/>\n<pin name=\"1\" x=\"0\" y=\"2.54\" visible=\"off\" length=\"short\" direction=\"pas\" swaplevel=\"1\" rot=\"R270\"/>\n<pin name=\"2\" x=\"0\" y=\"-5.08\" visible=\"off\" length=\"short\" direction=\"pas\" swaplevel=\"1\" rot=\"R90\"/>\n</symbol>\n<symbol name=\"R-EU\">\n<wire x1=\"-2.54\" y1=\"-0.889\" x2=\"2.54\" y2=\"-0.889\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"2.54\" y1=\"0.889\" x2=\"-2.54\" y2=\"0.889\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"2.54\" y1=\"-0.889\" x2=\"2.54\" y2=\"0.889\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"-2.54\" y1=\"-0.889\" x2=\"-2.54\" y2=\"0.889\" width=\"0.254\" layer=\"94\"/>\n<text x=\"-3.81\" y=\"1.4986\" size=\"1.778\" layer=\"95\">&gt;NAME</text>\n<text x=\"-3.81\" y=\"-3.302\" size=\"1.778\" layer=\"96\">&gt;VALUE</text>\n<pin name=\"2\" x=\"5.08\" y=\"0\" visible=\"off\" length=\"short\" direction=\"pas\" swaplevel=\"1\" rot=\"R180\"/>\n<pin name=\"1\" x=\"-5.08\" y=\"0\" visible=\"off\" length=\"short\" direction=\"pas\" swaplevel=\"1\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"C-EU\" prefix=\"C\" uservalue=\"yes\">\n<description>&lt;B&gt;CAPACITOR&lt;/B&gt;, European symbol</description>\n<gates>\n<gate name=\"G$1\" symbol=\"C-EU\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"C0402\" package=\"C0402\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C0504\" package=\"C0504\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C0603\" package=\"C0603\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C0805\" package=\"C0805\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1005\" package=\"C1005\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1206\" package=\"C1206\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1210\" package=\"C1210\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1310\" package=\"C1310\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1608\" package=\"C1608\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1812\" package=\"C1812\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1825\" package=\"C1825\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C2012\" package=\"C2012\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C3216\" package=\"C3216\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C3225\" package=\"C3225\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C4532\" package=\"C4532\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C4564\" package=\"C4564\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025-024X044\" package=\"C025-024X044\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025-025X050\" package=\"C025-025X050\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025-030X050\" package=\"C025-030X050\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025-040X050\" package=\"C025-040X050\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025-050X050\" package=\"C025-050X050\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025-060X050\" package=\"C025-060X050\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C025_050-024X070\" package=\"C025_050-024X070\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025_050-025X075\" package=\"C025_050-025X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025_050-035X075\" package=\"C025_050-035X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025_050-045X075\" package=\"C025_050-045X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"025_050-055X075\" package=\"C025_050-055X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050-024X044\" package=\"C050-024X044\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050-025X075\" package=\"C050-025X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050-045X075\" package=\"C050-045X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050-030X075\" package=\"C050-030X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050-050X075\" package=\"C050-050X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050-055X075\" package=\"C050-055X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050-075X075\" package=\"C050-075X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050H075X075\" package=\"C050H075X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"075-032X103\" package=\"C075-032X103\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"075-042X103\" package=\"C075-042X103\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"075-052X106\" package=\"C075-052X106\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"102-043X133\" package=\"C102-043X133\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"102-054X133\" package=\"C102-054X133\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"102-064X133\" package=\"C102-064X133\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"102_152-062X184\" package=\"C102_152-062X184\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"150-054X183\" package=\"C150-054X183\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"150-064X183\" package=\"C150-064X183\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"150-072X183\" package=\"C150-072X183\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"150-084X183\" package=\"C150-084X183\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"150-091X182\" package=\"C150-091X182\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"225-062X268\" package=\"C225-062X268\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"225-074X268\" package=\"C225-074X268\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"225-087X268\" package=\"C225-087X268\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"225-108X268\" package=\"C225-108X268\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"225-113X268\" package=\"C225-113X268\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"275-093X316\" package=\"C275-093X316\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"275-113X316\" package=\"C275-113X316\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"275-134X316\" package=\"C275-134X316\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"275-205X316\" package=\"C275-205X316\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"325-137X374\" package=\"C325-137X374\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"325-162X374\" package=\"C325-162X374\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"325-182X374\" package=\"C325-182X374\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"375-192X418\" package=\"C375-192X418\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"375-203X418\" package=\"C375-203X418\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"050-035X075\" package=\"C050-035X075\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"375-155X418\" package=\"C375-155X418\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"075-063X106\" package=\"C075-063X106\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"275-154X316\" package=\"C275-154X316\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"275-173X316\" package=\"C275-173X316\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C0402K\" package=\"C0402K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C0603K\" package=\"C0603K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C0805K\" package=\"C0805K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1206K\" package=\"C1206K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1210K\" package=\"C1210K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1812K\" package=\"C1812K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C1825K\" package=\"C1825K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C2220K\" package=\"C2220K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"C2225K\" package=\"C2225K\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n</devices>\n</deviceset>\n<deviceset name=\"R-EU_\" prefix=\"R\" uservalue=\"yes\">\n<description>&lt;B&gt;RESISTOR&lt;/B&gt;, European symbol</description>\n<gates>\n<gate name=\"G$1\" symbol=\"R-EU\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"R0402\" package=\"R0402\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R0603\" package=\"R0603\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R0805\" package=\"R0805\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R0805W\" package=\"R0805W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1005\" package=\"R1005\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1206\" package=\"R1206\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1206W\" package=\"R1206W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1210\" package=\"R1210\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R1210W\" package=\"R1210W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2010\" package=\"R2010\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2010W\" package=\"R2010W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2012\" package=\"R2012\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2012W\" package=\"R2012W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2512\" package=\"R2512\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R2512W\" package=\"R2512W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R3216\" package=\"R3216\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R3216W\" package=\"R3216W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R3225\" package=\"R3225\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R3225W\" package=\"R3225W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R5025\" package=\"R5025\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R5025W\" package=\"R5025W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R6332\" package=\"R6332\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"R6332W\" package=\"R6332W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M0805\" package=\"M0805\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M1206\" package=\"M1206\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M1406\" package=\"M1406\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M2012\" package=\"M2012\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M2309\" package=\"M2309\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M3216\" package=\"M3216\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M3516\" package=\"M3516\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"M5923\" package=\"M5923\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0204/5\" package=\"0204/5\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0204/7\" package=\"0204/7\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0204/2V\" package=\"0204V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/10\" package=\"0207/10\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/12\" package=\"0207/12\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/15\" package=\"0207/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/2V\" package=\"0207/2V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/5V\" package=\"0207/5V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0207/7\" package=\"0207/7\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0309/10\" package=\"0309/10\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0309/12\" package=\"0309/12\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0309/V\" package=\"0309V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0411/12\" package=\"0411/12\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0411/15\" package=\"0411/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0411/3V\" package=\"0411V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0414/15\" package=\"0414/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0414/5V\" package=\"0414V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0617/17\" package=\"0617/17\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0617/22\" package=\"0617/22\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0617/5V\" package=\"0617V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0922/22\" package=\"0922/22\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0613/5V\" package=\"P0613V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0613/15\" package=\"P0613/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0817/22\" package=\"P0817/22\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0817/7V\" package=\"P0817V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"V234/12\" package=\"V234/12\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"V235/17\" package=\"V235/17\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"V526-0\" package=\"V526-0\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0102R\" package=\"MINI_MELF-0102R\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0102W\" package=\"MINI_MELF-0102W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0204R\" package=\"MINI_MELF-0204R\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0204W\" package=\"MINI_MELF-0204W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0207R\" package=\"MINI_MELF-0207R\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0207W\" package=\"MINI_MELF-0207W\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"0922V\" package=\"0922V\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"RDH/15\" package=\"RDH/15\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"MELF0102AX\" package=\"MINI_MELF-0102AX\">\n<connects>\n<connect gate=\"G$1\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"2\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"ftdichip\">\n<description>&lt;b&gt;FTDI (TM) CHIP&lt;/b&gt; Future Technology Devices International Ltd.&lt;p&gt;\nhttp://www.ftdichip.com</description>\n<packages>\n<package name=\"SSOP16\">\n<description>&lt;b&gt;SSOP-16&lt;/b&gt;&lt;p&gt;\nAuto generated by &lt;i&gt;make-symbol-device-package-bsdl.ulp Rev. 43&lt;/i&gt;&lt;br&gt;\nSource: &lt;a href=\"http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT230X.pdf\"&gt; Data sheet &lt;/a&gt;</description>\n<smd name=\"1\" x=\"-2.7178\" y=\"2.2225\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"-3.0988\" y1=\"2.0701\" x2=\"-1.9939\" y2=\"2.3749\" layer=\"51\"/>\n<smd name=\"2\" x=\"-2.7178\" y=\"1.5875\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"-3.0988\" y1=\"1.4351\" x2=\"-1.9939\" y2=\"1.7399\" layer=\"51\"/>\n<smd name=\"3\" x=\"-2.7178\" y=\"0.9525\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"-3.0988\" y1=\"0.8001\" x2=\"-1.9939\" y2=\"1.1049\" layer=\"51\"/>\n<smd name=\"4\" x=\"-2.7178\" y=\"0.3175\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"-3.0988\" y1=\"0.1651\" x2=\"-1.9939\" y2=\"0.4699\" layer=\"51\"/>\n<smd name=\"5\" x=\"-2.7178\" y=\"-0.3175\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"-3.0988\" y1=\"-0.4699\" x2=\"-1.9939\" y2=\"-0.1651\" layer=\"51\"/>\n<smd name=\"6\" x=\"-2.7178\" y=\"-0.9525\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"-3.0988\" y1=\"-1.1049\" x2=\"-1.9939\" y2=\"-0.8001\" layer=\"51\"/>\n<smd name=\"7\" x=\"-2.7178\" y=\"-1.5875\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"-3.0988\" y1=\"-1.7399\" x2=\"-1.9939\" y2=\"-1.4351\" layer=\"51\"/>\n<smd name=\"8\" x=\"-2.7178\" y=\"-2.2225\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"-3.0988\" y1=\"-2.3749\" x2=\"-1.9939\" y2=\"-2.0701\" layer=\"51\"/>\n<smd name=\"9\" x=\"2.7178\" y=\"-2.2225\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"1.9939\" y1=\"-2.3749\" x2=\"3.0988\" y2=\"-2.0701\" layer=\"51\"/>\n<smd name=\"10\" x=\"2.7178\" y=\"-1.5875\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"1.9939\" y1=\"-1.7399\" x2=\"3.0988\" y2=\"-1.4351\" layer=\"51\"/>\n<smd name=\"11\" x=\"2.7178\" y=\"-0.9525\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"1.9939\" y1=\"-1.1049\" x2=\"3.0988\" y2=\"-0.8001\" layer=\"51\"/>\n<smd name=\"12\" x=\"2.7178\" y=\"-0.3175\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"1.9939\" y1=\"-0.4699\" x2=\"3.0988\" y2=\"-0.1651\" layer=\"51\"/>\n<smd name=\"13\" x=\"2.7178\" y=\"0.3175\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"1.9939\" y1=\"0.1651\" x2=\"3.0988\" y2=\"0.4699\" layer=\"51\"/>\n<smd name=\"14\" x=\"2.7178\" y=\"0.9525\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"1.9939\" y1=\"0.8001\" x2=\"3.0988\" y2=\"1.1049\" layer=\"51\"/>\n<smd name=\"15\" x=\"2.7178\" y=\"1.5875\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"1.9939\" y1=\"1.4351\" x2=\"3.0988\" y2=\"1.7399\" layer=\"51\"/>\n<smd name=\"16\" x=\"2.7178\" y=\"2.2225\" dx=\"0.9144\" dy=\"0.4064\" layer=\"1\"/>\n<rectangle x1=\"1.9939\" y1=\"2.0701\" x2=\"3.0988\" y2=\"2.3749\" layer=\"51\"/>\n<wire x1=\"-0.508\" y1=\"2.49931875\" x2=\"0.508\" y2=\"2.49931875\" width=\"0.2032\" layer=\"21\" curve=\"180\"/>\n<wire x1=\"-1.99131875\" y1=\"-2.49931875\" x2=\"1.99131875\" y2=\"-2.49931875\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"1.99131875\" y1=\"-2.49931875\" x2=\"1.99131875\" y2=\"2.49931875\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"1.99131875\" y1=\"2.49931875\" x2=\"-1.99131875\" y2=\"2.49931875\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-1.99131875\" y1=\"2.49931875\" x2=\"-1.99131875\" y2=\"-2.49931875\" width=\"0.2032\" layer=\"21\"/>\n<text x=\"-3.175\" y=\"2.794\" size=\"1.778\" layer=\"25\">&gt;NAME</text>\n<text x=\"-3.429\" y=\"-4.826\" size=\"1.778\" layer=\"27\">&gt;VALUE</text>\n</package>\n<package name=\"QFN16\">\n<description>&lt;b&gt;QFN-16 4 x 4 mm&lt;/b&gt;&lt;p&gt;\nSource: &lt;a href=\"http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT230X.pdf\"&gt; Data sheet &lt;/a&gt;</description>\n<wire x1=\"-1.9\" y1=\"1.9\" x2=\"-1.9\" y2=\"-1.9\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"-1.9\" y1=\"-1.9\" x2=\"1.9\" y2=\"-1.9\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"1.9\" y1=\"-1.9\" x2=\"1.9\" y2=\"1.9\" width=\"0.2032\" layer=\"21\"/>\n<wire x1=\"1.9\" y1=\"1.9\" x2=\"-1.9\" y2=\"1.9\" width=\"0.2032\" layer=\"21\"/>\n<smd name=\"TAB\" x=\"0\" y=\"0\" dx=\"1\" dy=\"1\" layer=\"1\" stop=\"no\"/>\n<smd name=\"1\" x=\"-1.725\" y=\"0.975\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" stop=\"no\"/>\n<smd name=\"2\" x=\"-1.725\" y=\"0.325\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" stop=\"no\"/>\n<smd name=\"3\" x=\"-1.725\" y=\"-0.325\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" stop=\"no\"/>\n<smd name=\"4\" x=\"-1.725\" y=\"-0.975\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" stop=\"no\"/>\n<smd name=\"5\" x=\"-0.975\" y=\"-1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R90\" stop=\"no\"/>\n<smd name=\"6\" x=\"-0.325\" y=\"-1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R90\" stop=\"no\"/>\n<smd name=\"7\" x=\"0.325\" y=\"-1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R90\" stop=\"no\"/>\n<smd name=\"8\" x=\"0.975\" y=\"-1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R90\" stop=\"no\"/>\n<smd name=\"9\" x=\"1.725\" y=\"-0.975\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R180\" stop=\"no\"/>\n<smd name=\"10\" x=\"1.725\" y=\"-0.325\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R180\" stop=\"no\"/>\n<smd name=\"11\" x=\"1.725\" y=\"0.325\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R180\" stop=\"no\"/>\n<smd name=\"12\" x=\"1.725\" y=\"0.975\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R180\" stop=\"no\"/>\n<smd name=\"13\" x=\"0.975\" y=\"1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R270\" stop=\"no\"/>\n<smd name=\"14\" x=\"0.325\" y=\"1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R270\" stop=\"no\"/>\n<smd name=\"15\" x=\"-0.325\" y=\"1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R270\" stop=\"no\"/>\n<smd name=\"16\" x=\"-0.975\" y=\"1.725\" dx=\"0.7\" dy=\"0.35\" layer=\"1\" rot=\"R270\" stop=\"no\"/>\n<polygon width=\"0.2032\" layer=\"1\">\n<vertex x=\"-0.9525\" y=\"-0.9525\"/>\n<vertex x=\"-0.9525\" y=\"0.635\"/>\n<vertex x=\"-0.635\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"-0.9525\"/>\n</polygon>\n<polygon width=\"0.254\" layer=\"29\">\n<vertex x=\"-0.9525\" y=\"-0.9525\"/>\n<vertex x=\"-0.9525\" y=\"0.635\"/>\n<vertex x=\"-0.635\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"-0.9525\"/>\n</polygon>\n<polygon width=\"0.15\" layer=\"31\">\n<vertex x=\"-0.9525\" y=\"-0.9525\"/>\n<vertex x=\"-0.9525\" y=\"0.635\"/>\n<vertex x=\"-0.635\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"0.9525\"/>\n<vertex x=\"0.9525\" y=\"-0.9525\"/>\n</polygon>\n<rectangle x1=\"-2.15\" y1=\"0.775\" x2=\"-1.3\" y2=\"1.175\" layer=\"29\"/>\n<rectangle x1=\"-2.15\" y1=\"0.125\" x2=\"-1.3\" y2=\"0.525\" layer=\"29\"/>\n<rectangle x1=\"-2.15\" y1=\"-0.525\" x2=\"-1.3\" y2=\"-0.125\" layer=\"29\"/>\n<rectangle x1=\"-2.15\" y1=\"-1.175\" x2=\"-1.3\" y2=\"-0.775\" layer=\"29\"/>\n<rectangle x1=\"-1.4\" y1=\"-1.925\" x2=\"-0.55\" y2=\"-1.525\" layer=\"29\" rot=\"R90\"/>\n<rectangle x1=\"-0.75\" y1=\"-1.925\" x2=\"0.1\" y2=\"-1.525\" layer=\"29\" rot=\"R90\"/>\n<rectangle x1=\"-0.1\" y1=\"-1.925\" x2=\"0.75\" y2=\"-1.525\" layer=\"29\" rot=\"R90\"/>\n<rectangle x1=\"0.55\" y1=\"-1.925\" x2=\"1.4\" y2=\"-1.525\" layer=\"29\" rot=\"R90\"/>\n<rectangle x1=\"1.3\" y1=\"-1.175\" x2=\"2.15\" y2=\"-0.775\" layer=\"29\" rot=\"R180\"/>\n<rectangle x1=\"1.3\" y1=\"-0.525\" x2=\"2.15\" y2=\"-0.125\" layer=\"29\" rot=\"R180\"/>\n<rectangle x1=\"1.3\" y1=\"0.125\" x2=\"2.15\" y2=\"0.525\" layer=\"29\" rot=\"R180\"/>\n<rectangle x1=\"1.3\" y1=\"0.775\" x2=\"2.15\" y2=\"1.175\" layer=\"29\" rot=\"R180\"/>\n<rectangle x1=\"0.55\" y1=\"1.525\" x2=\"1.4\" y2=\"1.925\" layer=\"29\" rot=\"R270\"/>\n<rectangle x1=\"-0.1\" y1=\"1.525\" x2=\"0.75\" y2=\"1.925\" layer=\"29\" rot=\"R270\"/>\n<rectangle x1=\"-0.75\" y1=\"1.525\" x2=\"0.1\" y2=\"1.925\" layer=\"29\" rot=\"R270\"/>\n<rectangle x1=\"-1.4\" y1=\"1.525\" x2=\"-0.55\" y2=\"1.925\" layer=\"29\" rot=\"R270\"/>\n<text x=\"-2.15\" y=\"2.277\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-2.15\" y=\"-4.055\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n</package>\n</packages>\n<symbols>\n<symbol name=\"FT230X\">\n<pin name=\"TXD\" x=\"-15.24\" y=\"7.62\" length=\"short\" direction=\"out\"/>\n<pin name=\"!RTS\" x=\"-15.24\" y=\"5.08\" length=\"short\" direction=\"out\"/>\n<pin name=\"VCCIO\" x=\"-15.24\" y=\"2.54\" length=\"short\" direction=\"pwr\"/>\n<pin name=\"RXD\" x=\"-15.24\" y=\"0\" length=\"short\" direction=\"in\"/>\n<pin name=\"GND\" x=\"-15.24\" y=\"-2.54\" length=\"short\" direction=\"pwr\"/>\n<pin name=\"!CTS\" x=\"-15.24\" y=\"-5.08\" length=\"short\" direction=\"in\"/>\n<pin name=\"CBUS2\" x=\"-15.24\" y=\"-7.62\" length=\"short\"/>\n<pin name=\"USBDP\" x=\"-15.24\" y=\"-10.16\" length=\"short\" direction=\"in\"/>\n<pin name=\"USBDM\" x=\"15.24\" y=\"-10.16\" length=\"short\" direction=\"in\" rot=\"R180\"/>\n<pin name=\"3V3OUT\" x=\"15.24\" y=\"-7.62\" length=\"short\" direction=\"out\" rot=\"R180\"/>\n<pin name=\"!RESET\" x=\"15.24\" y=\"-5.08\" length=\"short\" direction=\"in\" rot=\"R180\"/>\n<pin name=\"VCC\" x=\"15.24\" y=\"-2.54\" length=\"short\" direction=\"pwr\" rot=\"R180\"/>\n<pin name=\"GND@1\" x=\"15.24\" y=\"0\" length=\"short\" direction=\"pwr\" rot=\"R180\"/>\n<pin name=\"CBUS1\" x=\"15.24\" y=\"2.54\" length=\"short\" rot=\"R180\"/>\n<pin name=\"CBUS0\" x=\"15.24\" y=\"5.08\" length=\"short\" rot=\"R180\"/>\n<pin name=\"CBUS3\" x=\"15.24\" y=\"7.62\" length=\"short\" rot=\"R180\"/>\n<wire x1=\"-12.7\" y1=\"-12.7\" x2=\"12.7\" y2=\"-12.7\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"12.7\" y1=\"-12.7\" x2=\"12.7\" y2=\"10.16\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"12.7\" y1=\"10.16\" x2=\"-12.7\" y2=\"10.16\" width=\"0.254\" layer=\"94\"/>\n<wire x1=\"-12.7\" y1=\"10.16\" x2=\"-12.7\" y2=\"-12.7\" width=\"0.254\" layer=\"94\"/>\n<text x=\"-12.7\" y=\"11.43\" size=\"1.778\" layer=\"95\">&gt;NAME</text>\n<text x=\"-12.7\" y=\"-15.24\" size=\"1.778\" layer=\"96\">&gt;VALUE</text>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"FT230X\" prefix=\"IC\">\n<description>&lt;b&gt;USB to BASIC UART IC&lt;/b&gt;&lt;p&gt;\nAuto generated by &lt;i&gt;make-symbol-device-package-bsdl.ulp Rev. 43&lt;/i&gt;&lt;br&gt;\nSource: &lt;a href=\"http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT230X.pdf\"&gt; Data sheet &lt;/a&gt;</description>\n<gates>\n<gate name=\"G$1\" symbol=\"FT230X\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"S\" package=\"SSOP16\">\n<connects>\n<connect gate=\"G$1\" pin=\"!CTS\" pad=\"6\"/>\n<connect gate=\"G$1\" pin=\"!RESET\" pad=\"11\"/>\n<connect gate=\"G$1\" pin=\"!RTS\" pad=\"2\"/>\n<connect gate=\"G$1\" pin=\"3V3OUT\" pad=\"10\"/>\n<connect gate=\"G$1\" pin=\"CBUS0\" pad=\"15\"/>\n<connect gate=\"G$1\" pin=\"CBUS1\" pad=\"14\"/>\n<connect gate=\"G$1\" pin=\"CBUS2\" pad=\"7\"/>\n<connect gate=\"G$1\" pin=\"CBUS3\" pad=\"16\"/>\n<connect gate=\"G$1\" pin=\"GND\" pad=\"5\"/>\n<connect gate=\"G$1\" pin=\"GND@1\" pad=\"13\"/>\n<connect gate=\"G$1\" pin=\"RXD\" pad=\"4\"/>\n<connect gate=\"G$1\" pin=\"TXD\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"USBDM\" pad=\"9\"/>\n<connect gate=\"G$1\" pin=\"USBDP\" pad=\"8\"/>\n<connect gate=\"G$1\" pin=\"VCC\" pad=\"12\"/>\n<connect gate=\"G$1\" pin=\"VCCIO\" pad=\"3\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"Q\" package=\"QFN16\">\n<connects>\n<connect gate=\"G$1\" pin=\"!CTS\" pad=\"4\"/>\n<connect gate=\"G$1\" pin=\"!RESET\" pad=\"9\"/>\n<connect gate=\"G$1\" pin=\"!RTS\" pad=\"16\"/>\n<connect gate=\"G$1\" pin=\"3V3OUT\" pad=\"8\"/>\n<connect gate=\"G$1\" pin=\"CBUS0\" pad=\"12\"/>\n<connect gate=\"G$1\" pin=\"CBUS1\" pad=\"11\"/>\n<connect gate=\"G$1\" pin=\"CBUS2\" pad=\"5\"/>\n<connect gate=\"G$1\" pin=\"CBUS3\" pad=\"14\"/>\n<connect gate=\"G$1\" pin=\"GND\" pad=\"3\"/>\n<connect gate=\"G$1\" pin=\"GND@1\" pad=\"13\"/>\n<connect gate=\"G$1\" pin=\"RXD\" pad=\"2\"/>\n<connect gate=\"G$1\" pin=\"TXD\" pad=\"15\"/>\n<connect gate=\"G$1\" pin=\"USBDM\" pad=\"7\"/>\n<connect gate=\"G$1\" pin=\"USBDP\" pad=\"6\"/>\n<connect gate=\"G$1\" pin=\"VCC\" pad=\"10\"/>\n<connect gate=\"G$1\" pin=\"VCCIO\" pad=\"1\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"burr-brown\">\n<description>&lt;b&gt;Burr-Brown Components&lt;/b&gt;&lt;p&gt;\n&lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>\n<packages>\n<package name=\"SOT223\">\n<description>&lt;b&gt;Smal Outline Transistor&lt;/b&gt;</description>\n<wire x1=\"-3.124\" y1=\"1.731\" x2=\"-3.124\" y2=\"-1.729\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.124\" y1=\"-1.729\" x2=\"3.124\" y2=\"1.731\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.124\" y1=\"1.731\" x2=\"3.124\" y2=\"1.731\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.124\" y1=\"-1.729\" x2=\"-3.124\" y2=\"-1.729\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.2606\" y=\"-3.1496\" dx=\"1.4986\" dy=\"2.0066\" layer=\"1\"/>\n<smd name=\"2\" x=\"0.0254\" y=\"-3.1496\" dx=\"1.4986\" dy=\"2.0066\" layer=\"1\"/>\n<smd name=\"3\" x=\"2.3114\" y=\"-3.1496\" dx=\"1.4986\" dy=\"2.0066\" layer=\"1\"/>\n<smd name=\"4\" x=\"0\" y=\"3.1496\" dx=\"3.81\" dy=\"2.0066\" layer=\"1\"/>\n<text x=\"-2.54\" y=\"4.318\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-2.794\" y=\"-5.842\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-1.524\" y1=\"1.778\" x2=\"1.524\" y2=\"3.302\" layer=\"51\"/>\n<rectangle x1=\"-2.667\" y1=\"-3.302\" x2=\"-1.905\" y2=\"-1.778\" layer=\"51\"/>\n<rectangle x1=\"1.905\" y1=\"-3.302\" x2=\"2.667\" y2=\"-1.778\" layer=\"51\"/>\n<rectangle x1=\"-0.381\" y1=\"-3.302\" x2=\"0.381\" y2=\"-1.778\" layer=\"51\"/>\n</package>\n<package name=\"DD-3\">\n<description>&lt;b&gt;DPAC&lt;/b&gt;</description>\n<wire x1=\"-5.398\" y1=\"-4.445\" x2=\"-5.084\" y2=\"-4.445\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.084\" y1=\"-4.445\" x2=\"5.076\" y2=\"-4.445\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.076\" y1=\"-4.445\" x2=\"5.398\" y2=\"-4.445\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.398\" y1=\"-4.445\" x2=\"5.398\" y2=\"4.128\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.398\" y1=\"4.128\" x2=\"-5.398\" y2=\"4.128\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.398\" y1=\"4.128\" x2=\"-5.398\" y2=\"-4.445\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.084\" y1=\"3.81\" x2=\"5.076\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.076\" y1=\"3.81\" x2=\"5.076\" y2=\"-4.445\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.084\" y1=\"-4.445\" x2=\"-5.084\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.398\" y1=\"4.128\" x2=\"-5.084\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.398\" y1=\"4.128\" x2=\"5.076\" y2=\"3.81\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.398\" y1=\"4.128\" x2=\"-5.398\" y2=\"5.08\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.398\" y1=\"5.08\" x2=\"-4.445\" y2=\"5.715\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.445\" y1=\"5.715\" x2=\"4.445\" y2=\"5.715\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.445\" y1=\"5.715\" x2=\"5.398\" y2=\"5.08\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.398\" y1=\"5.08\" x2=\"5.398\" y2=\"4.128\" width=\"0.1524\" layer=\"21\"/>\n<smd name=\"1\" x=\"-2.54\" y=\"-7.9375\" dx=\"1.27\" dy=\"5.08\" layer=\"1\"/>\n<smd name=\"2\" x=\"0\" y=\"-7.9375\" dx=\"1.27\" dy=\"5.08\" layer=\"1\"/>\n<smd name=\"3\" x=\"2.54\" y=\"-7.9375\" dx=\"1.27\" dy=\"5.08\" layer=\"1\"/>\n<text x=\"-3.81\" y=\"-10.795\" size=\"1.27\" layer=\"25\" ratio=\"10\" rot=\"R90\">&gt;NAME</text>\n<text x=\"-2.54\" y=\"-1.27\" size=\"1.27\" layer=\"27\" ratio=\"10\">&gt;VALUE</text>\n<rectangle x1=\"-3.175\" y1=\"-9.525\" x2=\"-1.905\" y2=\"-4.445\" layer=\"51\"/>\n<rectangle x1=\"-0.635\" y1=\"-9.525\" x2=\"0.635\" y2=\"-4.445\" layer=\"51\"/>\n<rectangle x1=\"1.905\" y1=\"-9.525\" x2=\"3.175\" y2=\"-4.445\" layer=\"51\"/>\n</package>\n</packages>\n<symbols>\n<symbol name=\"REG1118\">\n<wire x1=\"-7.62\" y1=\"-7.62\" x2=\"7.62\" y2=\"-7.62\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"7.62\" y1=\"-7.62\" x2=\"7.62\" y2=\"5.08\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"7.62\" y1=\"5.08\" x2=\"-7.62\" y2=\"5.08\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"-7.62\" y1=\"5.08\" x2=\"-7.62\" y2=\"-7.62\" width=\"0.4064\" layer=\"94\"/>\n<text x=\"-7.62\" y=\"5.715\" size=\"1.778\" layer=\"95\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"2.54\" size=\"1.778\" layer=\"96\" ratio=\"10\">&gt;VALUE</text>\n<pin name=\"VIN\" x=\"-12.7\" y=\"0\" length=\"middle\" direction=\"in\"/>\n<pin name=\"VOUT\" x=\"12.7\" y=\"0\" length=\"middle\" direction=\"out\" rot=\"R180\"/>\n<pin name=\"GND\" x=\"0\" y=\"-12.7\" length=\"middle\" direction=\"pwr\" rot=\"R90\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"REG1117\" prefix=\"IC\">\n<description>&lt;b&gt;800mA and 1A Low Dropout (LDO) Positive Regulator&lt;/b&gt;&lt;p&gt;\n1.8V, 2.5V, 2.85V, 3.3V, 5V, and Adj</description>\n<gates>\n<gate name=\"G$1\" symbol=\"REG1118\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"\" package=\"SOT223\">\n<connects>\n<connect gate=\"G$1\" pin=\"GND\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"VIN\" pad=\"3\"/>\n<connect gate=\"G$1\" pin=\"VOUT\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"MF\" value=\"\" constant=\"no\"/>\n<attribute name=\"MPN\" value=\"REG1117\" constant=\"no\"/>\n<attribute name=\"OC_FARNELL\" value=\"1097566\" constant=\"no\"/>\n<attribute name=\"OC_NEWARK\" value=\"14P6981\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"F\" package=\"DD-3\">\n<connects>\n<connect gate=\"G$1\" pin=\"GND\" pad=\"1\"/>\n<connect gate=\"G$1\" pin=\"VIN\" pad=\"3\"/>\n<connect gate=\"G$1\" pin=\"VOUT\" pad=\"2\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"MF\" value=\"TEXAS INSTRUMENTS\" constant=\"no\"/>\n<attribute name=\"MPN\" value=\"REG1117FAKTTT\" constant=\"no\"/>\n<attribute name=\"OC_FARNELL\" value=\"1296120\" constant=\"no\"/>\n<attribute name=\"OC_NEWARK\" value=\"87H2562\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"ZXCT1110W5-7\">\n<packages>\n<package name=\"SOT95P280X130-5N\">\n<wire x1=\"0.6096\" y1=\"1.5494\" x2=\"0.3048\" y2=\"1.5494\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3048\" y1=\"1.5494\" x2=\"-0.3048\" y2=\"1.5494\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.3048\" y1=\"1.5494\" x2=\"-0.6096\" y2=\"1.5494\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.3048\" y1=\"1.5494\" x2=\"-0.3048\" y2=\"1.5494\" width=\"0.1524\" layer=\"21\" curve=\"-180\"/>\n<wire x1=\"-0.8382\" y1=\"-1.5494\" x2=\"0.8382\" y2=\"-1.5494\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"-1.5494\" x2=\"0.8382\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"-1.1938\" x2=\"0.8382\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"-0.7112\" x2=\"0.8382\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"1.5494\" x2=\"0.3048\" y2=\"1.5494\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.3048\" y1=\"1.5494\" x2=\"-0.3048\" y2=\"1.5494\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.3048\" y1=\"1.5494\" x2=\"-0.8382\" y2=\"1.5494\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"1.5494\" x2=\"-0.8382\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"1.1938\" x2=\"-0.8382\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"0.7112\" x2=\"-0.8382\" y2=\"0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"0.254\" x2=\"-0.8382\" y2=\"-0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"-0.254\" x2=\"-0.8382\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"1.1938\" x2=\"-1.4986\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"1.1938\" x2=\"-1.4986\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"0.7112\" x2=\"-0.8382\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"0.254\" x2=\"-1.4986\" y2=\"0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"0.254\" x2=\"-1.4986\" y2=\"-0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"-0.254\" x2=\"-0.8382\" y2=\"-0.254\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"-1.5494\" x2=\"-0.8382\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"-1.1938\" x2=\"-0.8382\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-0.8382\" y1=\"-0.7112\" x2=\"-1.4986\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"-0.7112\" x2=\"-1.4986\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"-1.4986\" y1=\"-1.1938\" x2=\"-0.8382\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"-1.1938\" x2=\"1.4986\" y2=\"-1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"1.4986\" y1=\"-1.1938\" x2=\"1.4986\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"1.4986\" y1=\"-0.7112\" x2=\"0.8382\" y2=\"-0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"1.5494\" x2=\"0.8382\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"1.1938\" x2=\"0.8382\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.8382\" y1=\"0.7112\" x2=\"1.4986\" y2=\"0.7112\" width=\"0\" layer=\"51\"/>\n<wire x1=\"1.4986\" y1=\"0.7112\" x2=\"1.4986\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"1.4986\" y1=\"1.1938\" x2=\"0.8382\" y2=\"1.1938\" width=\"0\" layer=\"51\"/>\n<wire x1=\"0.3048\" y1=\"1.5494\" x2=\"-0.3048\" y2=\"1.5494\" width=\"0\" layer=\"51\" curve=\"-180\"/>\n<text x=\"-3.457740625\" y=\"2.54245\" size=\"2.084809375\" layer=\"25\" ratio=\"10\" rot=\"SR0\">&gt;NAME</text>\n<text x=\"-3.45926875\" y=\"-4.45128125\" size=\"2.085740625\" layer=\"27\" ratio=\"10\" rot=\"SR0\">&gt;VALUE</text>\n<smd name=\"1\" x=\"-1.2954\" y=\"0.9398\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n<smd name=\"2\" x=\"-1.2954\" y=\"0\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n<smd name=\"3\" x=\"-1.2954\" y=\"-0.9398\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n<smd name=\"4\" x=\"1.2954\" y=\"-0.9398\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n<smd name=\"5\" x=\"1.2954\" y=\"0.9398\" dx=\"1.27\" dy=\"0.5588\" layer=\"1\"/>\n</package>\n</packages>\n<symbols>\n<symbol name=\"ZXCT1110W5-7\">\n<wire x1=\"-12.7\" y1=\"7.62\" x2=\"-12.7\" y2=\"-15.24\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"-12.7\" y1=\"-15.24\" x2=\"12.7\" y2=\"-15.24\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"12.7\" y1=\"-15.24\" x2=\"12.7\" y2=\"7.62\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"12.7\" y1=\"7.62\" x2=\"-12.7\" y2=\"7.62\" width=\"0.4064\" layer=\"94\"/>\n<text x=\"-4.95398125\" y=\"9.22203125\" size=\"2.08321875\" layer=\"95\" ratio=\"10\" rot=\"SR0\">&gt;NAME</text>\n<text x=\"-4.19998125\" y=\"-17.9199\" size=\"2.08725\" layer=\"96\" ratio=\"10\" rot=\"SR0\">&gt;VALUE</text>\n<pin name=\"S+\" x=\"-17.78\" y=\"2.54\" length=\"middle\" direction=\"in\"/>\n<pin name=\"S-\" x=\"-17.78\" y=\"0\" length=\"middle\" direction=\"in\"/>\n<pin name=\"NC\" x=\"-17.78\" y=\"-5.08\" length=\"middle\" direction=\"nc\"/>\n<pin name=\"GND\" x=\"-17.78\" y=\"-10.16\" length=\"middle\" direction=\"pas\"/>\n<pin name=\"OUT\" x=\"17.78\" y=\"2.54\" length=\"middle\" direction=\"out\" rot=\"R180\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"ZXCT1110W5-7\" prefix=\"U\">\n<description>LOW POWER HIGH-SIDE CURRENT MONITORS</description>\n<gates>\n<gate name=\"A\" symbol=\"ZXCT1110W5-7\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"\" package=\"SOT95P280X130-5N\">\n<connects>\n<connect gate=\"A\" pin=\"GND\" pad=\"2\"/>\n<connect gate=\"A\" pin=\"NC\" pad=\"1\"/>\n<connect gate=\"A\" pin=\"OUT\" pad=\"3\"/>\n<connect gate=\"A\" pin=\"S+\" pad=\"4\"/>\n<connect gate=\"A\" pin=\"S-\" pad=\"5\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"AVAILABILITY\" value=\"Good\"/>\n<attribute name=\"DESCRIPTION\" value=\" Battery Management IC Automotive 5-Pin SOT-25 T/R \"/>\n<attribute name=\"MF\" value=\"Diodes Inc.\"/>\n<attribute name=\"MP\" value=\"ZXCT1110W5-7\"/>\n<attribute name=\"PACKAGE\" value=\"SOT-753 Diodes Inc.\"/>\n<attribute name=\"PRICE\" value=\"0.57 USD\"/>\n</technology>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"testpad\">\n<description>&lt;b&gt;Test Pins/Pads&lt;/b&gt;&lt;p&gt;\nCream on SMD OFF.&lt;br&gt;\nnew: Attribute TP_SIGNAL_NAME&lt;br&gt;\n&lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>\n<packages>\n<package name=\"B1,27\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<wire x1=\"-0.635\" y1=\"0\" x2=\"0.635\" y2=\"0\" width=\"0.0024\" layer=\"37\"/>\n<wire x1=\"0\" y1=\"0.635\" x2=\"0\" y2=\"-0.635\" width=\"0.0024\" layer=\"37\"/>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.27\" dy=\"1.27\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.635\" y=\"1.016\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-0.762\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-0.635\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"B2,54\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<wire x1=\"-0.635\" y1=\"0\" x2=\"0.635\" y2=\"0\" width=\"0.0024\" layer=\"37\"/>\n<wire x1=\"0\" y1=\"-0.635\" x2=\"0\" y2=\"0.635\" width=\"0.0024\" layer=\"37\"/>\n<circle x=\"0\" y=\"0\" radius=\"0.635\" width=\"0.254\" layer=\"37\"/>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"2.54\" dy=\"2.54\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-1.27\" y=\"1.651\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-1.27\" y=\"-1.397\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-1.27\" y=\"-3.175\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"P1-13\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<circle x=\"0\" y=\"0\" radius=\"0.762\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"TP\" x=\"0\" y=\"0\" drill=\"1.3208\" diameter=\"2.159\" shape=\"octagon\"/>\n<text x=\"-1.016\" y=\"1.27\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0\" y=\"0\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-1.27\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n<rectangle x1=\"-0.3302\" y1=\"-0.3302\" x2=\"0.3302\" y2=\"0.3302\" layer=\"51\"/>\n</package>\n<package name=\"P1-13Y\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<circle x=\"0\" y=\"0\" radius=\"0.762\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"TP\" x=\"0\" y=\"0\" drill=\"1.3208\" diameter=\"1.905\" shape=\"long\" rot=\"R90\"/>\n<text x=\"-0.889\" y=\"2.159\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0\" y=\"0\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-1.27\" y=\"-3.81\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n<rectangle x1=\"-0.3302\" y1=\"-0.3302\" x2=\"0.3302\" y2=\"0.3302\" layer=\"51\"/>\n</package>\n<package name=\"P1-17\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<circle x=\"0\" y=\"0\" radius=\"0.8128\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"TP\" x=\"0\" y=\"0\" drill=\"1.7018\" diameter=\"2.54\" shape=\"octagon\"/>\n<text x=\"-1.143\" y=\"1.397\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0\" y=\"0\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-1.27\" y=\"-3.175\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n<rectangle x1=\"-0.3302\" y1=\"-0.3302\" x2=\"0.3302\" y2=\"0.3302\" layer=\"51\"/>\n</package>\n<package name=\"P1-17Y\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<circle x=\"0\" y=\"0\" radius=\"0.8128\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"TP\" x=\"0\" y=\"0\" drill=\"1.7018\" diameter=\"2.1208\" shape=\"long\" rot=\"R90\"/>\n<text x=\"-1.143\" y=\"2.286\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0\" y=\"0\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-1.27\" y=\"-3.81\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n<rectangle x1=\"-0.3302\" y1=\"-0.3302\" x2=\"0.3302\" y2=\"0.3302\" layer=\"51\"/>\n</package>\n<package name=\"P1-20\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<circle x=\"0\" y=\"0\" radius=\"1.016\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"TP\" x=\"0\" y=\"0\" drill=\"2.0066\" diameter=\"3.1496\" shape=\"octagon\"/>\n<text x=\"-1.524\" y=\"1.778\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0\" y=\"0\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-1.27\" y=\"-3.175\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n<rectangle x1=\"-0.3302\" y1=\"-0.3302\" x2=\"0.3302\" y2=\"0.3302\" layer=\"51\"/>\n</package>\n<package name=\"P1-20Y\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<circle x=\"0\" y=\"0\" radius=\"1.016\" width=\"0.1524\" layer=\"51\"/>\n<pad name=\"TP\" x=\"0\" y=\"0\" drill=\"2.0066\" diameter=\"2.54\" shape=\"long\" rot=\"R90\"/>\n<text x=\"-1.27\" y=\"2.794\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"0\" y=\"0\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"-1.27\" y=\"-4.445\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n<rectangle x1=\"-0.3302\" y1=\"-0.3302\" x2=\"0.3302\" y2=\"0.3302\" layer=\"51\"/>\n</package>\n<package name=\"TP06R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"0.6\" dy=\"0.6\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.3\" y=\"0.4001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.254\" y=\"-0.381\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP06SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"0.5996\" dy=\"0.5996\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.3\" y=\"0.4001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.254\" y=\"-0.381\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP07R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"0.7\" dy=\"0.7\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.3\" y=\"0.4001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.254\" y=\"-0.508\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP07SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"0.7\" dy=\"0.7\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.3\" y=\"0.4001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.381\" y=\"-0.381\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP08R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"0.8\" dy=\"0.8\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.3\" y=\"0.4001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.381\" y=\"-0.381\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP08SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"0.8\" dy=\"0.8\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.3\" y=\"0.4001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.381\" y=\"-0.508\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP09R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"0.9\" dy=\"0.9\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.4501\" y=\"0.5001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.381\" y=\"-0.508\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP09SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"0.8998\" dy=\"0.8998\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.4501\" y=\"0.5001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.381\" y=\"-0.508\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP10R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1\" dy=\"1\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.5001\" y=\"0.5499\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.381\" y=\"-0.508\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP10SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1\" dy=\"1\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.5001\" y=\"0.5499\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-0.635\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP11R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.1\" dy=\"1.1\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.5499\" y=\"0.5999\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-0.508\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-1.905\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP11SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.1\" dy=\"1.1\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.5499\" y=\"0.5999\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-0.635\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP12SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.1998\" dy=\"1.1998\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.5999\" y=\"0.65\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-0.635\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP12R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.2\" dy=\"1.2\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.5999\" y=\"0.65\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-0.635\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP13R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.3\" dy=\"1.3\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.65\" y=\"0.7\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-0.635\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP14R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.4\" dy=\"1.4\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.7\" y=\"0.7501\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.508\" y=\"-0.762\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP15R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.5\" dy=\"1.5\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.7501\" y=\"0.8001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-0.762\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP16R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.6\" dy=\"1.6\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.8001\" y=\"0.8499\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-0.762\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP17R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.7\" dy=\"1.7\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.8499\" y=\"0.8999\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-0.889\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP18R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.8999\" y=\"0.95\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.762\" y=\"-0.889\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP19R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.9\" dy=\"1.9\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-0.95\" y=\"1\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.762\" y=\"-0.889\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP20R\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"2\" dy=\"2\" layer=\"1\" roundness=\"100\" cream=\"no\"/>\n<text x=\"-1\" y=\"1.05\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.762\" y=\"-1.016\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP13SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.3\" dy=\"1.3\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.65\" y=\"0.7\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-0.762\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP14SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.4\" dy=\"1.4\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.7\" y=\"0.7501\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.635\" y=\"-0.762\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP15SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.5\" dy=\"1.5\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.7501\" y=\"0.8001\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.762\" y=\"-0.889\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP16SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.5996\" dy=\"1.5996\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.8001\" y=\"0.8499\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.762\" y=\"-0.889\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP17SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.7\" dy=\"1.7\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.8499\" y=\"0.8999\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.762\" y=\"-0.889\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP18SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.8\" dy=\"1.8\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.8999\" y=\"0.95\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.889\" y=\"-1.016\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP19SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"1.8998\" dy=\"1.8998\" layer=\"1\" cream=\"no\"/>\n<text x=\"-0.95\" y=\"1\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-0.889\" y=\"-1.016\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n<package name=\"TP20SQ\">\n<description>&lt;b&gt;TEST PAD&lt;/b&gt;</description>\n<smd name=\"TP\" x=\"0\" y=\"0\" dx=\"2\" dy=\"2\" layer=\"1\" cream=\"no\"/>\n<text x=\"-1\" y=\"1.05\" size=\"1.27\" layer=\"25\">&gt;NAME</text>\n<text x=\"-1.016\" y=\"-1.143\" size=\"0.0254\" layer=\"27\">&gt;VALUE</text>\n<text x=\"0\" y=\"-2.54\" size=\"1\" layer=\"37\">&gt;TP_SIGNAL_NAME</text>\n</package>\n</packages>\n<symbols>\n<symbol name=\"PS\">\n<wire x1=\"0.635\" y1=\"-4.572\" x2=\"-0.635\" y2=\"-4.572\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.635\" y1=\"-4.572\" x2=\"0.635\" y2=\"0\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.635\" y1=\"0\" x2=\"-0.635\" y2=\"0\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"-0.635\" y1=\"0\" x2=\"-0.635\" y2=\"-4.572\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.381\" y1=\"-3.048\" x2=\"-0.381\" y2=\"-2.794\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"-0.381\" y1=\"-2.794\" x2=\"0.381\" y2=\"-2.54\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.381\" y1=\"-2.54\" x2=\"-0.381\" y2=\"-2.286\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"-0.381\" y1=\"-2.286\" x2=\"0.381\" y2=\"-2.032\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.381\" y1=\"-2.032\" x2=\"-0.381\" y2=\"-1.778\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"-0.381\" y1=\"-1.778\" x2=\"0.381\" y2=\"-1.524\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.381\" y1=\"-1.524\" x2=\"-0.381\" y2=\"-1.27\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"-0.381\" y1=\"-1.27\" x2=\"0.381\" y2=\"-1.016\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.381\" y1=\"-1.016\" x2=\"-0.381\" y2=\"-0.762\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"-0.381\" y1=\"-0.762\" x2=\"0.381\" y2=\"-0.508\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.508\" y1=\"-5.207\" x2=\"-0.508\" y2=\"-5.207\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"-0.508\" y1=\"-5.207\" x2=\"-0.508\" y2=\"-5.715\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"-0.508\" y1=\"-5.715\" x2=\"0\" y2=\"-6.35\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0\" y1=\"-6.35\" x2=\"0.508\" y2=\"-5.715\" width=\"0.1524\" layer=\"94\"/>\n<wire x1=\"0.508\" y1=\"-5.715\" x2=\"0.508\" y2=\"-5.207\" width=\"0.1524\" layer=\"94\"/>\n<text x=\"-1.016\" y=\"-6.35\" size=\"1.778\" layer=\"95\" rot=\"R90\">&gt;NAME</text>\n<text x=\"1.27\" y=\"-2.54\" size=\"1.778\" layer=\"97\">&gt;TP_SIGNAL_NAME</text>\n<rectangle x1=\"-0.381\" y1=\"-5.207\" x2=\"0.381\" y2=\"-4.572\" layer=\"94\"/>\n<pin name=\"TP\" x=\"0\" y=\"2.54\" visible=\"off\" length=\"short\" direction=\"in\" rot=\"R270\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"PTR1\" prefix=\"TP\">\n<description>&lt;b&gt;TEST PIN&lt;/b&gt;</description>\n<gates>\n<gate name=\"G$1\" symbol=\"PS\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"B1,27\" package=\"B1,27\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"B2,54\" package=\"B2,54\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"PAD1-13\" package=\"P1-13\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"PAD1-13Y\" package=\"P1-13Y\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"PAD1-17\" package=\"P1-17\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"PAD1-17Y\" package=\"P1-17Y\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"PAD1-20\" package=\"P1-20\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"PAD1-20Y\" package=\"P1-20Y\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP06R\" package=\"TP06R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP06SQ\" package=\"TP06SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP07R\" package=\"TP07R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP07SQ\" package=\"TP07SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP08R\" package=\"TP08R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP08SQ\" package=\"TP08SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP09R\" package=\"TP09R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP09SQ\" package=\"TP09SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP10R\" package=\"TP10R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP10SQ\" package=\"TP10SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP11R\" package=\"TP11R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP11SQ\" package=\"TP11SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP12SQ\" package=\"TP12SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP12R\" package=\"TP12R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP13R\" package=\"TP13R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP14R\" package=\"TP14R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP15R\" package=\"TP15R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP16R\" package=\"TP16R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP17R\" package=\"TP17R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP18R\" package=\"TP18R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP19R\" package=\"TP19R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP20R\" package=\"TP20R\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP13SQ\" package=\"TP13SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP14SQ\" package=\"TP14SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP15SQ\" package=\"TP15SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP16SQ\" package=\"TP16SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP17SQ\" package=\"TP17SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP18SQ\" package=\"TP18SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP19SQ\" package=\"TP19SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n<device name=\"TP20SQ\" package=\"TP20SQ\">\n<connects>\n<connect gate=\"G$1\" pin=\"TP\" pad=\"TP\"/>\n</connects>\n<technologies>\n<technology name=\"\">\n<attribute name=\"TP_SIGNAL_NAME\" value=\"\" constant=\"no\"/>\n</technology>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n<library name=\"pinhead\">\n<description>&lt;b&gt;Pin Header Connectors&lt;/b&gt;&lt;p&gt;\n&lt;author&gt;Created by librarian@cadsoft.de&lt;/author&gt;</description>\n<packages>\n<package name=\"1X04\">\n<description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>\n<wire x1=\"0\" y1=\"0.635\" x2=\"0.635\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.635\" y1=\"1.27\" x2=\"1.905\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.905\" y1=\"1.27\" x2=\"2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"0.635\" x2=\"2.54\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-0.635\" x2=\"1.905\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.905\" y1=\"-1.27\" x2=\"0.635\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0.635\" y1=\"-1.27\" x2=\"0\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.445\" y1=\"1.27\" x2=\"-3.175\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.175\" y1=\"1.27\" x2=\"-2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"0.635\" x2=\"-2.54\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"-0.635\" x2=\"-3.175\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"0.635\" x2=\"-1.905\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.905\" y1=\"1.27\" x2=\"-0.635\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.635\" y1=\"1.27\" x2=\"0\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0\" y1=\"0.635\" x2=\"0\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0\" y1=\"-0.635\" x2=\"-0.635\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-0.635\" y1=\"-1.27\" x2=\"-1.905\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.905\" y1=\"-1.27\" x2=\"-2.54\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0.635\" x2=\"-5.08\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-4.445\" y1=\"1.27\" x2=\"-5.08\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"-0.635\" x2=\"-4.445\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.175\" y1=\"-1.27\" x2=\"-4.445\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"1.27\" x2=\"4.445\" y2=\"1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.445\" y1=\"1.27\" x2=\"5.08\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"0.635\" x2=\"5.08\" y2=\"-0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"-0.635\" x2=\"4.445\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.175\" y1=\"1.27\" x2=\"2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-0.635\" x2=\"3.175\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"4.445\" y1=\"-1.27\" x2=\"3.175\" y2=\"-1.27\" width=\"0.1524\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"0\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"2\" x=\"-1.27\" y=\"0\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"3\" x=\"1.27\" y=\"0\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"4\" x=\"3.81\" y=\"0\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<text x=\"-5.1562\" y=\"1.8288\" size=\"1.27\" layer=\"25\" ratio=\"10\">&gt;NAME</text>\n<text x=\"-5.08\" y=\"-3.175\" size=\"1.27\" layer=\"27\">&gt;VALUE</text>\n<rectangle x1=\"1.016\" y1=\"-0.254\" x2=\"1.524\" y2=\"0.254\" layer=\"51\"/>\n<rectangle x1=\"-1.524\" y1=\"-0.254\" x2=\"-1.016\" y2=\"0.254\" layer=\"51\"/>\n<rectangle x1=\"-4.064\" y1=\"-0.254\" x2=\"-3.556\" y2=\"0.254\" layer=\"51\"/>\n<rectangle x1=\"3.556\" y1=\"-0.254\" x2=\"4.064\" y2=\"0.254\" layer=\"51\"/>\n</package>\n<package name=\"1X04/90\">\n<description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>\n<wire x1=\"-5.08\" y1=\"-1.905\" x2=\"-2.54\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"-1.905\" x2=\"-2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"0.635\" x2=\"-5.08\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-5.08\" y1=\"0.635\" x2=\"-5.08\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-3.81\" y1=\"6.985\" x2=\"-3.81\" y2=\"1.27\" width=\"0.762\" layer=\"21\"/>\n<wire x1=\"-2.54\" y1=\"-1.905\" x2=\"0\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0\" y1=\"-1.905\" x2=\"0\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"0\" y1=\"0.635\" x2=\"-2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"-1.27\" y1=\"6.985\" x2=\"-1.27\" y2=\"1.27\" width=\"0.762\" layer=\"21\"/>\n<wire x1=\"0\" y1=\"-1.905\" x2=\"2.54\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-1.905\" x2=\"2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"0.635\" x2=\"0\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"1.27\" y1=\"6.985\" x2=\"1.27\" y2=\"1.27\" width=\"0.762\" layer=\"21\"/>\n<wire x1=\"2.54\" y1=\"-1.905\" x2=\"5.08\" y2=\"-1.905\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"-1.905\" x2=\"5.08\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"5.08\" y1=\"0.635\" x2=\"2.54\" y2=\"0.635\" width=\"0.1524\" layer=\"21\"/>\n<wire x1=\"3.81\" y1=\"6.985\" x2=\"3.81\" y2=\"1.27\" width=\"0.762\" layer=\"21\"/>\n<pad name=\"1\" x=\"-3.81\" y=\"-3.81\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"2\" x=\"-1.27\" y=\"-3.81\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"3\" x=\"1.27\" y=\"-3.81\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<pad name=\"4\" x=\"3.81\" y=\"-3.81\" drill=\"1.016\" shape=\"long\" rot=\"R90\"/>\n<text x=\"-5.715\" y=\"-3.81\" size=\"1.27\" layer=\"25\" ratio=\"10\" rot=\"R90\">&gt;NAME</text>\n<text x=\"6.985\" y=\"-4.445\" size=\"1.27\" layer=\"27\" rot=\"R90\">&gt;VALUE</text>\n<rectangle x1=\"-4.191\" y1=\"0.635\" x2=\"-3.429\" y2=\"1.143\" layer=\"21\"/>\n<rectangle x1=\"-1.651\" y1=\"0.635\" x2=\"-0.889\" y2=\"1.143\" layer=\"21\"/>\n<rectangle x1=\"0.889\" y1=\"0.635\" x2=\"1.651\" y2=\"1.143\" layer=\"21\"/>\n<rectangle x1=\"3.429\" y1=\"0.635\" x2=\"4.191\" y2=\"1.143\" layer=\"21\"/>\n<rectangle x1=\"-4.191\" y1=\"-2.921\" x2=\"-3.429\" y2=\"-1.905\" layer=\"21\"/>\n<rectangle x1=\"-1.651\" y1=\"-2.921\" x2=\"-0.889\" y2=\"-1.905\" layer=\"21\"/>\n<rectangle x1=\"0.889\" y1=\"-2.921\" x2=\"1.651\" y2=\"-1.905\" layer=\"21\"/>\n<rectangle x1=\"3.429\" y1=\"-2.921\" x2=\"4.191\" y2=\"-1.905\" layer=\"21\"/>\n</package>\n</packages>\n<symbols>\n<symbol name=\"PINHD4\">\n<wire x1=\"-6.35\" y1=\"-5.08\" x2=\"1.27\" y2=\"-5.08\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"1.27\" y1=\"-5.08\" x2=\"1.27\" y2=\"7.62\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"1.27\" y1=\"7.62\" x2=\"-6.35\" y2=\"7.62\" width=\"0.4064\" layer=\"94\"/>\n<wire x1=\"-6.35\" y1=\"7.62\" x2=\"-6.35\" y2=\"-5.08\" width=\"0.4064\" layer=\"94\"/>\n<text x=\"-6.35\" y=\"8.255\" size=\"1.778\" layer=\"95\">&gt;NAME</text>\n<text x=\"-6.35\" y=\"-7.62\" size=\"1.778\" layer=\"96\">&gt;VALUE</text>\n<pin name=\"1\" x=\"-2.54\" y=\"5.08\" visible=\"pad\" length=\"short\" direction=\"pas\" function=\"dot\"/>\n<pin name=\"2\" x=\"-2.54\" y=\"2.54\" visible=\"pad\" length=\"short\" direction=\"pas\" function=\"dot\"/>\n<pin name=\"3\" x=\"-2.54\" y=\"0\" visible=\"pad\" length=\"short\" direction=\"pas\" function=\"dot\"/>\n<pin name=\"4\" x=\"-2.54\" y=\"-2.54\" visible=\"pad\" length=\"short\" direction=\"pas\" function=\"dot\"/>\n</symbol>\n</symbols>\n<devicesets>\n<deviceset name=\"PINHD-1X4\" prefix=\"JP\" uservalue=\"yes\">\n<description>&lt;b&gt;PIN HEADER&lt;/b&gt;</description>\n<gates>\n<gate name=\"A\" symbol=\"PINHD4\" x=\"0\" y=\"0\"/>\n</gates>\n<devices>\n<device name=\"\" package=\"1X04\">\n<connects>\n<connect gate=\"A\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"A\" pin=\"2\" pad=\"2\"/>\n<connect gate=\"A\" pin=\"3\" pad=\"3\"/>\n<connect gate=\"A\" pin=\"4\" pad=\"4\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n<device name=\"/90\" package=\"1X04/90\">\n<connects>\n<connect gate=\"A\" pin=\"1\" pad=\"1\"/>\n<connect gate=\"A\" pin=\"2\" pad=\"2\"/>\n<connect gate=\"A\" pin=\"3\" pad=\"3\"/>\n<connect gate=\"A\" pin=\"4\" pad=\"4\"/>\n</connects>\n<technologies>\n<technology name=\"\"/>\n</technologies>\n</device>\n</devices>\n</deviceset>\n</devicesets>\n</library>\n</libraries>\n<attributes>\n</attributes>\n<variantdefs>\n</variantdefs>\n<classes>\n<class number=\"0\" name=\"default\" width=\"0\" drill=\"0\">\n</class>\n<class number=\"1\" name=\"power\" width=\"0.4064\" drill=\"0\">\n</class>\n</classes>\n<parts>\n<part name=\"U$1\" library=\"adafruit\" deviceset=\"JD-T1800\" device=\"\"/>\n<part name=\"3V3\" library=\"supply1\" deviceset=\"+3V3\" device=\"\"/>\n<part name=\"GND1\" library=\"supply1\" deviceset=\"GND\" device=\"\"/>\n<part name=\"GND2\" library=\"supply1\" deviceset=\"GND\" device=\"\"/>\n<part name=\"GND3\" library=\"supply1\" deviceset=\"GND\" device=\"\"/>\n<part name=\"+3V3\" library=\"supply1\" deviceset=\"+3V3\" device=\"\"/>\n<part name=\"R6\" library=\"rcl\" deviceset=\"R-EU_\" device=\"R0402\" value=\"7.5\"/>\n<part name=\"GND4\" library=\"supply1\" deviceset=\"GND\" device=\"\"/>\n<part name=\"J1\" library=\"10118194-0001LF\" deviceset=\"10118194-0001LF\" device=\"\"/>\n<part name=\"U1\" library=\"MF_IC_Digital\" deviceset=\"EFM8BB10F(2/4/8)G-A-QFN20\" device=\"\" value=\"EFM8BB10F2G-A-QFN20\">\n<attribute name=\"MPN\" value=\"EFM8BB10F2G-A-QFN20\"/>\n</part>\n<part name=\"C3\" library=\"resistor\" deviceset=\"C-EU\" device=\"C0402K\" value=\".1uF\"/>\n<part name=\"C1\" library=\"resistor\" deviceset=\"C-EU\" device=\"C0402K\" value=\".1uF\"/>\n<part name=\"U2\" library=\"ftdichip\" deviceset=\"FT230X\" device=\"Q\"/>\n<part name=\"R1\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"1K\"/>\n<part name=\"R2\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"1K21\"/>\n<part name=\"R5\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"12K1\"/>\n<part name=\"IC2\" library=\"burr-brown\" deviceset=\"REG1117\" device=\"\"/>\n<part name=\"U4\" library=\"ZXCT1110W5-7\" deviceset=\"ZXCT1110W5-7\" device=\"\"/>\n<part name=\"C5\" library=\"resistor\" deviceset=\"C-EU\" device=\"C0402K\" value=\"10uF\"/>\n<part name=\"C4\" library=\"resistor\" deviceset=\"C-EU\" device=\"C0402K\" value=\".1uF\"/>\n<part name=\"C2\" library=\"resistor\" deviceset=\"C-EU\" device=\"C0402K\" value=\"1uF\"/>\n<part name=\"TP1\" library=\"testpad\" deviceset=\"PTR1\" device=\"B1,27\"/>\n<part name=\"TP2\" library=\"testpad\" deviceset=\"PTR1\" device=\"B1,27\"/>\n<part name=\"TP3\" library=\"testpad\" deviceset=\"PTR1\" device=\"B1,27\"/>\n<part name=\"TP4\" library=\"testpad\" deviceset=\"PTR1\" device=\"B1,27\"/>\n<part name=\"R4\" library=\"rcl\" deviceset=\"R-EU_\" device=\"R0805\" value=\".1\"/>\n<part name=\"C6\" library=\"resistor\" deviceset=\"C-EU\" device=\"C0402K\" value=\".1uF\"/>\n<part name=\"R3\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"2K2\"/>\n<part name=\"R7\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"4K3\"/>\n<part name=\"R8\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"4K7\"/>\n<part name=\"R9\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"2K2\"/>\n<part name=\"R10\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"4K3\"/>\n<part name=\"R11\" library=\"resistor\" deviceset=\"R-EU_\" device=\"R0402\" value=\"4K7\"/>\n<part name=\"JP1\" library=\"pinhead\" deviceset=\"PINHD-1X4\" device=\"/90\"/>\n<part name=\"JP2\" library=\"pinhead\" deviceset=\"PINHD-1X4\" device=\"/90\"/>\n<part name=\"JP3\" library=\"pinhead\" deviceset=\"PINHD-1X4\" device=\"/90\"/>\n</parts>\n<sheets>\n<sheet>\n<plain>\n</plain>\n<instances>\n<instance part=\"U$1\" gate=\"G$1\" x=\"-17.78\" y=\"73.66\" rot=\"MR0\"/>\n<instance part=\"3V3\" gate=\"G$1\" x=\"17.78\" y=\"93.98\" rot=\"MR0\"/>\n<instance part=\"GND1\" gate=\"1\" x=\"10.16\" y=\"91.44\" rot=\"R180\"/>\n<instance part=\"GND2\" gate=\"1\" x=\"10.16\" y=\"58.42\"/>\n<instance part=\"GND3\" gate=\"1\" x=\"25.4\" y=\"81.28\" rot=\"R90\"/>\n<instance part=\"+3V3\" gate=\"G$1\" x=\"20.32\" y=\"73.66\" rot=\"MR0\"/>\n<instance part=\"R6\" gate=\"G$1\" x=\"34.29\" y=\"111.76\" rot=\"R180\"/>\n<instance part=\"GND4\" gate=\"1\" x=\"43.18\" y=\"114.3\" rot=\"R180\"/>\n<instance part=\"J1\" gate=\"G$1\" x=\"-121.92\" y=\"83.82\" rot=\"R180\"/>\n<instance part=\"U1\" gate=\"G$1\" x=\"-78.74\" y=\"58.42\"/>\n<instance part=\"C3\" gate=\"G$1\" x=\"-53.34\" y=\"110.49\"/>\n<instance part=\"C1\" gate=\"G$1\" x=\"-78.74\" y=\"110.49\"/>\n<instance part=\"U2\" gate=\"G$1\" x=\"-78.74\" y=\"83.82\"/>\n<instance part=\"R1\" gate=\"G$1\" x=\"-21.59\" y=\"-30.48\" rot=\"R270\"/>\n<instance part=\"R2\" gate=\"G$1\" x=\"-21.59\" y=\"-20.32\" rot=\"R270\"/>\n<instance part=\"R5\" gate=\"G$1\" x=\"-43.18\" y=\"-5.08\" rot=\"R270\"/>\n<instance part=\"IC2\" gate=\"G$1\" x=\"68.58\" y=\"58.42\"/>\n<instance part=\"U4\" gate=\"A\" x=\"-66.04\" y=\"-2.54\"/>\n<instance part=\"C5\" gate=\"G$1\" x=\"-105.41\" y=\"110.49\"/>\n<instance part=\"C4\" gate=\"G$1\" x=\"-95.25\" y=\"110.49\"/>\n<instance part=\"C2\" gate=\"G$1\" x=\"-66.04\" y=\"110.49\"/>\n<instance part=\"TP1\" gate=\"G$1\" x=\"-80.01\" y=\"-31.75\" rot=\"R90\"/>\n<instance part=\"TP2\" gate=\"G$1\" x=\"-80.01\" y=\"-36.83\" rot=\"R90\"/>\n<instance part=\"TP3\" gate=\"G$1\" x=\"-80.01\" y=\"-41.91\" rot=\"R90\"/>\n<instance part=\"TP4\" gate=\"G$1\" x=\"-80.01\" y=\"-46.99\" rot=\"R90\"/>\n<instance part=\"R4\" gate=\"G$1\" x=\"-90.17\" y=\"2.54\" rot=\"R270\"/>\n<instance part=\"C6\" gate=\"G$1\" x=\"85.09\" y=\"55.88\"/>\n<instance part=\"R3\" gate=\"G$1\" x=\"-35.56\" y=\"25.4\"/>\n<instance part=\"R7\" gate=\"G$1\" x=\"-43.18\" y=\"22.86\"/>\n<instance part=\"R8\" gate=\"G$1\" x=\"-48.26\" y=\"17.78\"/>\n<instance part=\"R9\" gate=\"G$1\" x=\"-55.88\" y=\"58.42\"/>\n<instance part=\"R10\" gate=\"G$1\" x=\"-48.26\" y=\"55.88\"/>\n<instance part=\"R11\" gate=\"G$1\" x=\"-41.91\" y=\"50.8\"/>\n<instance part=\"JP1\" gate=\"A\" x=\"7.62\" y=\"21.59\"/>\n<instance part=\"JP2\" gate=\"A\" x=\"7.62\" y=\"3.81\"/>\n<instance part=\"JP3\" gate=\"A\" x=\"7.62\" y=\"-15.24\"/>\n</instances>\n<busses>\n</busses>\n<nets>\n<net name=\"GND\" class=\"0\">\n<segment>\n<wire x1=\"10.16\" y1=\"88.9\" x2=\"5.08\" y2=\"88.9\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"GND\"/>\n<pinref part=\"GND1\" gate=\"1\" pin=\"GND\"/>\n</segment>\n<segment>\n<wire x1=\"10.16\" y1=\"60.96\" x2=\"5.08\" y2=\"60.96\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"GND2\"/>\n<pinref part=\"GND2\" gate=\"1\" pin=\"GND\"/>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"CS\"/>\n<wire x1=\"5.08\" y1=\"63.5\" x2=\"10.16\" y2=\"63.5\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"11.43\" y=\"63.5\" size=\"1.778\" layer=\"95\"/>\n<wire x1=\"10.16\" y1=\"63.5\" x2=\"10.16\" y2=\"60.96\" width=\"0.1524\" layer=\"91\"/>\n</segment>\n<segment>\n<wire x1=\"22.86\" y1=\"81.28\" x2=\"5.08\" y2=\"81.28\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"GND1\"/>\n<pinref part=\"GND3\" gate=\"1\" pin=\"GND\"/>\n</segment>\n<segment>\n<pinref part=\"R6\" gate=\"G$1\" pin=\"1\"/>\n<pinref part=\"GND4\" gate=\"1\" pin=\"GND\"/>\n<wire x1=\"39.37\" y1=\"111.76\" x2=\"43.18\" y2=\"111.76\" width=\"0.1524\" layer=\"91\"/>\n</segment>\n<segment>\n<wire x1=\"-40.64\" y1=\"105.41\" x2=\"-53.34\" y2=\"105.41\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"C3\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-53.34\" y1=\"105.41\" x2=\"-66.04\" y2=\"105.41\" width=\"0.1524\" layer=\"91\"/>\n<junction x=\"-53.34\" y=\"105.41\"/>\n<pinref part=\"C1\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-66.04\" y1=\"105.41\" x2=\"-78.74\" y2=\"105.41\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-78.74\" y1=\"105.41\" x2=\"-83.82\" y2=\"105.41\" width=\"0.1524\" layer=\"91\"/>\n<junction x=\"-78.74\" y=\"105.41\"/>\n<label x=\"-41.91\" y=\"101.6\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"C2\" gate=\"G$1\" pin=\"2\"/>\n<junction x=\"-66.04\" y=\"105.41\"/>\n</segment>\n<segment>\n<pinref part=\"C4\" gate=\"G$1\" pin=\"2\"/>\n<pinref part=\"C5\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-95.25\" y1=\"105.41\" x2=\"-105.41\" y2=\"105.41\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-105.41\" y1=\"105.41\" x2=\"-110.49\" y2=\"105.41\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-114.3\" y=\"102.87\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"GND\"/>\n<wire x1=\"-93.98\" y1=\"81.28\" x2=\"-102.87\" y2=\"81.28\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-106.68\" y=\"81.28\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"TP2\" gate=\"G$1\" pin=\"TP\"/>\n<wire x1=\"-82.55\" y1=\"-36.83\" x2=\"-88.9\" y2=\"-36.83\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-95.25\" y=\"-36.83\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"R1\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-30.48\" y1=\"-35.56\" x2=\"-21.59\" y2=\"-35.56\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-35.56\" y=\"-35.56\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"IC2\" gate=\"G$1\" pin=\"GND\"/>\n<wire x1=\"68.58\" y1=\"45.72\" x2=\"68.58\" y2=\"43.18\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"68.58\" y=\"36.83\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"C6\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"68.58\" y1=\"43.18\" x2=\"68.58\" y2=\"38.1\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"68.58\" y1=\"43.18\" x2=\"85.09\" y2=\"43.18\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"85.09\" y1=\"43.18\" x2=\"85.09\" y2=\"50.8\" width=\"0.1524\" layer=\"91\"/>\n</segment>\n<segment>\n<pinref part=\"R5\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-43.18\" y1=\"-10.16\" x2=\"-39.37\" y2=\"-10.16\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-39.37\" y=\"-10.16\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U4\" gate=\"A\" pin=\"GND\"/>\n<wire x1=\"-83.82\" y1=\"-12.7\" x2=\"-92.71\" y2=\"-12.7\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-97.79\" y=\"-12.7\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"GND\"/>\n<wire x1=\"-81.28\" y1=\"15.24\" x2=\"-93.98\" y2=\"15.24\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-101.6\" y=\"15.24\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"J1\" gate=\"G$1\" pin=\"GND\"/>\n<wire x1=\"-134.62\" y1=\"86.36\" x2=\"-142.24\" y2=\"86.36\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-144.78\" y=\"86.36\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"GND@1\"/>\n<wire x1=\"-63.5\" y1=\"83.82\" x2=\"-58.42\" y2=\"83.82\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-58.42\" y=\"83.82\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"JP1\" gate=\"A\" pin=\"1\"/>\n<wire x1=\"5.08\" y1=\"26.67\" x2=\"-6.35\" y2=\"26.67\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"26.67\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"5.08\" y1=\"8.89\" x2=\"-6.35\" y2=\"8.89\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"8.89\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"JP2\" gate=\"A\" pin=\"1\"/>\n</segment>\n<segment>\n<wire x1=\"5.08\" y1=\"-10.16\" x2=\"-6.35\" y2=\"-10.16\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"-10.16\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"JP3\" gate=\"A\" pin=\"1\"/>\n</segment>\n</net>\n<net name=\"N$4\" class=\"0\">\n<segment>\n<wire x1=\"5.08\" y1=\"86.36\" x2=\"15.24\" y2=\"86.36\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"15.24\" y1=\"86.36\" x2=\"15.24\" y2=\"111.76\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"15.24\" y1=\"111.76\" x2=\"29.21\" y2=\"111.76\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"LEDK\"/>\n<pinref part=\"R6\" gate=\"G$1\" pin=\"2\"/>\n</segment>\n</net>\n<net name=\"3V3\" class=\"0\">\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"VDD\"/>\n<wire x1=\"-81.28\" y1=\"58.42\" x2=\"-91.44\" y2=\"58.42\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-93.98\" y=\"58.42\" size=\"1.778\" layer=\"95\" rot=\"R180\"/>\n</segment>\n<segment>\n<wire x1=\"-83.82\" y1=\"113.03\" x2=\"-78.74\" y2=\"113.03\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-78.74\" y1=\"113.03\" x2=\"-66.04\" y2=\"113.03\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-66.04\" y1=\"113.03\" x2=\"-53.34\" y2=\"113.03\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-53.34\" y1=\"113.03\" x2=\"-40.64\" y2=\"113.03\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"C3\" gate=\"G$1\" pin=\"1\"/>\n<junction x=\"-53.34\" y=\"113.03\"/>\n<pinref part=\"C1\" gate=\"G$1\" pin=\"1\"/>\n<junction x=\"-78.74\" y=\"113.03\"/>\n<label x=\"-83.82\" y=\"114.3\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"C2\" gate=\"G$1\" pin=\"1\"/>\n<junction x=\"-66.04\" y=\"113.03\"/>\n</segment>\n<segment>\n<wire x1=\"17.78\" y1=\"91.44\" x2=\"17.78\" y2=\"83.82\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"17.78\" y1=\"83.82\" x2=\"5.08\" y2=\"83.82\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"LEDA\"/>\n<pinref part=\"3V3\" gate=\"G$1\" pin=\"+3V3\"/>\n<wire x1=\"20.32\" y1=\"83.82\" x2=\"17.78\" y2=\"83.82\" width=\"0.1524\" layer=\"91\"/>\n</segment>\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"3V3OUT\"/>\n<wire x1=\"-63.5\" y1=\"76.2\" x2=\"-58.42\" y2=\"76.2\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-58.42\" y=\"76.2\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"VCCIO\"/>\n<wire x1=\"-93.98\" y1=\"86.36\" x2=\"-102.87\" y2=\"86.36\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-106.68\" y=\"86.36\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"TP1\" gate=\"G$1\" pin=\"TP\"/>\n<wire x1=\"-82.55\" y1=\"-31.75\" x2=\"-88.9\" y2=\"-31.75\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-95.25\" y=\"-31.75\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"20.32\" y1=\"71.12\" x2=\"20.32\" y2=\"68.58\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"20.32\" y1=\"68.58\" x2=\"20.32\" y2=\"66.04\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"20.32\" y1=\"66.04\" x2=\"5.08\" y2=\"66.04\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"20.32\" y1=\"68.58\" x2=\"5.08\" y2=\"68.58\" width=\"0.1524\" layer=\"91\"/>\n<junction x=\"20.32\" y=\"68.58\"/>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"VCC\"/>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"VCC2\"/>\n<pinref part=\"+3V3\" gate=\"G$1\" pin=\"+3V3\"/>\n</segment>\n</net>\n<net name=\"5V\" class=\"0\">\n<segment>\n<pinref part=\"C5\" gate=\"G$1\" pin=\"1\"/>\n<wire x1=\"-110.49\" y1=\"113.03\" x2=\"-105.41\" y2=\"113.03\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"C4\" gate=\"G$1\" pin=\"1\"/>\n<wire x1=\"-105.41\" y1=\"113.03\" x2=\"-95.25\" y2=\"113.03\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-114.3\" y=\"113.03\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"VCC\"/>\n<wire x1=\"-63.5\" y1=\"81.28\" x2=\"-58.42\" y2=\"81.28\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-58.42\" y=\"81.28\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"R2\" gate=\"G$1\" pin=\"1\"/>\n<wire x1=\"-30.48\" y1=\"-15.24\" x2=\"-21.59\" y2=\"-15.24\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-35.56\" y=\"-15.24\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U4\" gate=\"A\" pin=\"S+\"/>\n<wire x1=\"-83.82\" y1=\"0\" x2=\"-85.09\" y2=\"0\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-85.09\" y1=\"0\" x2=\"-85.09\" y2=\"7.62\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R4\" gate=\"G$1\" pin=\"1\"/>\n<wire x1=\"-85.09\" y1=\"7.62\" x2=\"-90.17\" y2=\"7.62\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-90.17\" y1=\"7.62\" x2=\"-96.52\" y2=\"7.62\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-101.6\" y=\"7.62\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"J1\" gate=\"G$1\" pin=\"VDD\"/>\n<wire x1=\"-134.62\" y1=\"81.28\" x2=\"-142.24\" y2=\"81.28\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-144.78\" y=\"81.28\" size=\"1.778\" layer=\"95\"/>\n</segment>\n</net>\n<net name=\"TXD\" class=\"0\">\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"TXD\"/>\n<wire x1=\"-93.98\" y1=\"91.44\" x2=\"-102.87\" y2=\"91.44\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-106.68\" y=\"91.44\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P0.5\"/>\n<wire x1=\"-60.96\" y1=\"45.72\" x2=\"-55.88\" y2=\"45.72\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-55.88\" y=\"45.72\" size=\"1.778\" layer=\"95\"/>\n</segment>\n</net>\n<net name=\"RXD\" class=\"0\">\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"RXD\"/>\n<wire x1=\"-93.98\" y1=\"83.82\" x2=\"-102.87\" y2=\"83.82\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-106.68\" y=\"83.82\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P0.4\"/>\n<wire x1=\"-60.96\" y1=\"48.26\" x2=\"-55.88\" y2=\"48.26\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-55.88\" y=\"48.26\" size=\"1.778\" layer=\"95\"/>\n</segment>\n</net>\n<net name=\"N$19\" class=\"0\">\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"USBDP\"/>\n<pinref part=\"J1\" gate=\"G$1\" pin=\"D+\"/>\n<wire x1=\"-93.98\" y1=\"73.66\" x2=\"-109.22\" y2=\"73.66\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-109.22\" y1=\"73.66\" x2=\"-109.22\" y2=\"81.28\" width=\"0.1524\" layer=\"91\"/>\n</segment>\n</net>\n<net name=\"N$20\" class=\"0\">\n<segment>\n<pinref part=\"U2\" gate=\"G$1\" pin=\"USBDM\"/>\n<wire x1=\"-63.5\" y1=\"73.66\" x2=\"-62.23\" y2=\"73.66\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-62.23\" y1=\"73.66\" x2=\"-62.23\" y2=\"67.31\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-62.23\" y1=\"67.31\" x2=\"-107.95\" y2=\"67.31\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-107.95\" y1=\"67.31\" x2=\"-107.95\" y2=\"83.82\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"J1\" gate=\"G$1\" pin=\"D-\"/>\n<wire x1=\"-107.95\" y1=\"83.82\" x2=\"-109.22\" y2=\"83.82\" width=\"0.1524\" layer=\"91\"/>\n</segment>\n</net>\n<net name=\"C2D\" class=\"0\">\n<segment>\n<pinref part=\"TP3\" gate=\"G$1\" pin=\"TP\"/>\n<wire x1=\"-82.55\" y1=\"-41.91\" x2=\"-88.9\" y2=\"-41.91\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-95.25\" y=\"-41.91\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"C2D/P2.7\"/>\n<wire x1=\"-60.96\" y1=\"15.24\" x2=\"-58.42\" y2=\"15.24\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-58.42\" y=\"12.7\" size=\"1.778\" layer=\"95\"/>\n<wire x1=\"-58.42\" y1=\"15.24\" x2=\"-55.88\" y2=\"15.24\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-58.42\" y1=\"15.24\" x2=\"-58.42\" y2=\"17.78\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-58.42\" y1=\"17.78\" x2=\"-53.34\" y2=\"17.78\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R8\" gate=\"G$1\" pin=\"1\"/>\n</segment>\n</net>\n<net name=\"C2CK\" class=\"0\">\n<segment>\n<pinref part=\"TP4\" gate=\"G$1\" pin=\"TP\"/>\n<wire x1=\"-82.55\" y1=\"-46.99\" x2=\"-88.9\" y2=\"-46.99\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-95.25\" y=\"-46.99\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"!RST!/C2CK\"/>\n<wire x1=\"-81.28\" y1=\"48.26\" x2=\"-91.44\" y2=\"48.26\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-96.52\" y=\"48.26\" size=\"1.778\" layer=\"95\"/>\n</segment>\n</net>\n<net name=\"A.V\" class=\"0\">\n<segment>\n<pinref part=\"R1\" gate=\"G$1\" pin=\"1\"/>\n<pinref part=\"R2\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-21.59\" y1=\"-25.4\" x2=\"-12.7\" y2=\"-25.4\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-12.7\" y=\"-25.4\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"-60.96\" y1=\"43.18\" x2=\"-55.88\" y2=\"43.18\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-55.88\" y=\"43.18\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P0.6\"/>\n</segment>\n</net>\n<net name=\"5VB\" class=\"0\">\n<segment>\n<pinref part=\"U4\" gate=\"A\" pin=\"S-\"/>\n<pinref part=\"R4\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-83.82\" y1=\"-2.54\" x2=\"-90.17\" y2=\"-2.54\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-90.17\" y1=\"-2.54\" x2=\"-96.52\" y2=\"-2.54\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-101.6\" y=\"-2.54\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"IC2\" gate=\"G$1\" pin=\"VIN\"/>\n<wire x1=\"55.88\" y1=\"58.42\" x2=\"45.72\" y2=\"58.42\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"45.72\" y1=\"58.42\" x2=\"45.72\" y2=\"59.69\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"39.37\" y=\"58.42\" size=\"1.778\" layer=\"95\"/>\n</segment>\n</net>\n<net name=\"3V3B\" class=\"0\">\n<segment>\n<pinref part=\"IC2\" gate=\"G$1\" pin=\"VOUT\"/>\n<wire x1=\"81.28\" y1=\"58.42\" x2=\"85.09\" y2=\"58.42\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"90.17\" y=\"58.42\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"C6\" gate=\"G$1\" pin=\"1\"/>\n<wire x1=\"85.09\" y1=\"58.42\" x2=\"90.17\" y2=\"58.42\" width=\"0.1524\" layer=\"91\"/>\n<junction x=\"85.09\" y=\"58.42\"/>\n</segment>\n<segment>\n<pinref part=\"JP1\" gate=\"A\" pin=\"2\"/>\n<wire x1=\"5.08\" y1=\"24.13\" x2=\"-6.35\" y2=\"24.13\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"24.13\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"5.08\" y1=\"6.35\" x2=\"-6.35\" y2=\"6.35\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"6.35\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"JP2\" gate=\"A\" pin=\"2\"/>\n</segment>\n<segment>\n<wire x1=\"5.08\" y1=\"-12.7\" x2=\"-6.35\" y2=\"-12.7\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"-12.7\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"JP3\" gate=\"A\" pin=\"2\"/>\n</segment>\n</net>\n<net name=\"A.C\" class=\"0\">\n<segment>\n<pinref part=\"U4\" gate=\"A\" pin=\"OUT\"/>\n<wire x1=\"-48.26\" y1=\"0\" x2=\"-43.18\" y2=\"0\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R5\" gate=\"G$1\" pin=\"1\"/>\n<wire x1=\"-43.18\" y1=\"0\" x2=\"-39.37\" y2=\"0\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-39.37\" y=\"0\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"-60.96\" y1=\"40.64\" x2=\"-55.88\" y2=\"40.64\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-55.88\" y=\"40.64\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P0.7\"/>\n</segment>\n</net>\n<net name=\"CLOCK\" class=\"0\">\n<segment>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"CLOCK\"/>\n<wire x1=\"5.08\" y1=\"71.12\" x2=\"10.16\" y2=\"71.12\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"10.16\" y=\"71.12\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"-60.96\" y1=\"30.48\" x2=\"-55.88\" y2=\"30.48\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-55.88\" y=\"30.48\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P1.2\"/>\n</segment>\n</net>\n<net name=\"DATA\" class=\"0\">\n<segment>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"DATA\"/>\n<wire x1=\"5.08\" y1=\"73.66\" x2=\"10.16\" y2=\"73.66\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"10.16\" y=\"73.66\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"-60.96\" y1=\"33.02\" x2=\"-55.88\" y2=\"33.02\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-55.88\" y=\"33.02\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P1.1\"/>\n</segment>\n</net>\n<net name=\"RS/DC\" class=\"0\">\n<segment>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"RS/DC\"/>\n<wire x1=\"5.08\" y1=\"76.2\" x2=\"10.16\" y2=\"76.2\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"10.16\" y=\"76.2\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"-60.96\" y1=\"35.56\" x2=\"-55.88\" y2=\"35.56\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-55.88\" y=\"35.56\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P1.0\"/>\n</segment>\n</net>\n<net name=\"SCL\" class=\"0\">\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P1.7\"/>\n<wire x1=\"-60.96\" y1=\"20.32\" x2=\"-30.48\" y2=\"20.32\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R8\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-30.48\" y1=\"20.32\" x2=\"-30.48\" y2=\"17.78\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-30.48\" y1=\"17.78\" x2=\"-43.18\" y2=\"17.78\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R3\" gate=\"G$1\" pin=\"2\"/>\n<pinref part=\"R7\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-30.48\" y1=\"25.4\" x2=\"-30.48\" y2=\"22.86\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-38.1\" y1=\"22.86\" x2=\"-30.48\" y2=\"22.86\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-30.48\" y1=\"22.86\" x2=\"-30.48\" y2=\"20.32\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-30.48\" y1=\"25.4\" x2=\"-29.21\" y2=\"25.4\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-29.21\" y=\"25.4\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"JP1\" gate=\"A\" pin=\"4\"/>\n<wire x1=\"5.08\" y1=\"19.05\" x2=\"-6.35\" y2=\"19.05\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"19.05\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"5.08\" y1=\"1.27\" x2=\"-6.35\" y2=\"1.27\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"1.27\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"JP2\" gate=\"A\" pin=\"4\"/>\n</segment>\n<segment>\n<wire x1=\"5.08\" y1=\"-17.78\" x2=\"-6.35\" y2=\"-17.78\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"-17.78\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"JP3\" gate=\"A\" pin=\"4\"/>\n</segment>\n</net>\n<net name=\"N$2\" class=\"0\">\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P1.6\"/>\n<wire x1=\"-60.96\" y1=\"22.86\" x2=\"-48.26\" y2=\"22.86\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R7\" gate=\"G$1\" pin=\"1\"/>\n</segment>\n</net>\n<net name=\"N$3\" class=\"0\">\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P1.5\"/>\n<wire x1=\"-60.96\" y1=\"25.4\" x2=\"-40.64\" y2=\"25.4\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R3\" gate=\"G$1\" pin=\"1\"/>\n</segment>\n</net>\n<net name=\"C2D1\" class=\"0\">\n<segment>\n<wire x1=\"-60.96\" y1=\"50.8\" x2=\"-46.99\" y2=\"50.8\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R11\" gate=\"G$1\" pin=\"1\"/>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P0.3\"/>\n</segment>\n</net>\n<net name=\"N$1\" class=\"0\">\n<segment>\n<wire x1=\"-60.96\" y1=\"55.88\" x2=\"-53.34\" y2=\"55.88\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R10\" gate=\"G$1\" pin=\"1\"/>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P0.1\"/>\n</segment>\n</net>\n<net name=\"SDA\" class=\"0\">\n<segment>\n<pinref part=\"R9\" gate=\"G$1\" pin=\"2\"/>\n<pinref part=\"R10\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-50.8\" y1=\"58.42\" x2=\"-43.18\" y2=\"58.42\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-43.18\" y1=\"58.42\" x2=\"-43.18\" y2=\"55.88\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P0.2\"/>\n<wire x1=\"-60.96\" y1=\"53.34\" x2=\"-40.64\" y2=\"53.34\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-43.18\" y1=\"55.88\" x2=\"-40.64\" y2=\"55.88\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-40.64\" y1=\"55.88\" x2=\"-40.64\" y2=\"53.34\" width=\"0.1524\" layer=\"91\"/>\n<pinref part=\"R11\" gate=\"G$1\" pin=\"2\"/>\n<wire x1=\"-40.64\" y1=\"53.34\" x2=\"-36.83\" y2=\"53.34\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-36.83\" y1=\"53.34\" x2=\"-36.83\" y2=\"50.8\" width=\"0.1524\" layer=\"91\"/>\n<wire x1=\"-36.83\" y1=\"50.8\" x2=\"-39.37\" y2=\"50.8\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-30.48\" y=\"50.8\" size=\"1.778\" layer=\"95\"/>\n<wire x1=\"-36.83\" y1=\"50.8\" x2=\"-30.48\" y2=\"50.8\" width=\"0.1524\" layer=\"91\"/>\n</segment>\n<segment>\n<pinref part=\"JP1\" gate=\"A\" pin=\"3\"/>\n<wire x1=\"5.08\" y1=\"21.59\" x2=\"-6.35\" y2=\"21.59\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"21.59\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<wire x1=\"5.08\" y1=\"3.81\" x2=\"-6.35\" y2=\"3.81\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"3.81\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"JP2\" gate=\"A\" pin=\"3\"/>\n</segment>\n<segment>\n<wire x1=\"5.08\" y1=\"-15.24\" x2=\"-6.35\" y2=\"-15.24\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-11.43\" y=\"-15.24\" size=\"1.778\" layer=\"95\"/>\n<pinref part=\"JP3\" gate=\"A\" pin=\"3\"/>\n</segment>\n</net>\n<net name=\"N$5\" class=\"0\">\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P0.0\"/>\n<pinref part=\"R9\" gate=\"G$1\" pin=\"1\"/>\n</segment>\n</net>\n<net name=\"RESET\" class=\"0\">\n<segment>\n<pinref part=\"U$1\" gate=\"G$1\" pin=\"RESET\"/>\n<wire x1=\"5.08\" y1=\"78.74\" x2=\"10.16\" y2=\"78.74\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"10.16\" y=\"78.74\" size=\"1.778\" layer=\"95\"/>\n</segment>\n<segment>\n<pinref part=\"U1\" gate=\"G$1\" pin=\"P1.3\"/>\n<wire x1=\"-60.96\" y1=\"27.94\" x2=\"-55.88\" y2=\"27.94\" width=\"0.1524\" layer=\"91\"/>\n<label x=\"-55.88\" y=\"27.94\" size=\"1.778\" layer=\"95\"/>\n</segment>\n</net>\n</nets>\n</sheet>\n</sheets>\n</schematic>\n</drawing>\n</eagle>\n"
  },
  {
    "path": "nsis/.gitignore",
    "content": "*.exe\n"
  },
  {
    "path": "nsis/go.bat",
    "content": "copy /Y ..\\c\\build\\i2ccl.exe\r\ncopy /Y ..\\python\\samples\\dist\\i2cgui.exe\r\n\r\n\"C:\\Program Files\\NSIS\\makensis.exe\" i2cdriver.nsi\r\ncopy /Y i2cdriver-installer.exe C:\\Users\\james\\Desktop\r\n"
  },
  {
    "path": "nsis/i2cdriver.nsi",
    "content": "# This installs two files, app.exe and logo.ico, creates a start menu shortcut, builds an uninstaller, and\n# adds uninstall information to the registry for Add/Remove Programs\n \n# To get started, put this script into a folder with the two files (app.exe, logo.ico, and license.rtf -\n# You'll have to create these yourself) and run makensis on it\n \n# If you change the names \"app.exe\", \"logo.ico\", or \"license.rtf\" you should do a search and replace - they\n# show up in a few places.\n# All the other settings can be tweaked by editing the !defines at the top of this script\n!define APPNAME \"I2CDriver\"\n!define COMPANYNAME \"Excamera Labs\"\n!define DESCRIPTION \"Utilities for the I2CDriver\"\n# These three must be integers\n!define VERSIONMAJOR 1\n!define VERSIONMINOR 0\n!define VERSIONBUILD 0\n# These will be displayed by the \"Click here for support information\" link in \"Add/Remove Programs\"\n# It is possible to use \"mailto:\" links in here to open the email client\n!define HELPURL \"http://i2cdriver.com\" # \"Support Information\" link\n!define UPDATEURL \"http://i2cdriver.com\" # \"Product Updates\" link\n!define ABOUTURL \"http://excamera.com.\" # \"Publisher\" link\n# This is the size (in kB) of all the files copied into \"Program Files\"\n!define INSTALLSIZE 700\n \nRequestExecutionLevel admin ;Require admin rights on NT6+ (When UAC is turned on)\n \nInstallDir \"$PROGRAMFILES\\${COMPANYNAME}\\${APPNAME}\"\n \n# rtf or txt file - remember if it is txt, it must be in the DOS text format (\\r\\n)\nLicenseData \"license.txt\"\n# This will be in the installer/uninstaller's title bar\nName \"${COMPANYNAME} - ${APPNAME}\"\nIcon \"Application.ico\"\noutFile \"i2cdriver-installer.exe\"\n \n!include LogicLib.nsh\n \n# Just three pages - license agreement, install location, and installation\npage license\npage directory\nPage instfiles\n \n!macro VerifyUserIsAdmin\nUserInfo::GetAccountType\npop $0\n${If} $0 != \"admin\" ;Require admin rights on NT4+\n        messageBox mb_iconstop \"Administrator rights required!\"\n        setErrorLevel 740 ;ERROR_ELEVATION_REQUIRED\n        quit\n${EndIf}\n!macroend\n \nfunction .onInit\n\tsetShellVarContext all\n\t!insertmacro VerifyUserIsAdmin\nfunctionEnd\n \nsection \"install\"\n\t# Files for the install directory - to build the installer, these should be in the same directory as the install script (this file)\n\tsetOutPath $INSTDIR\n\t# Files added here should be removed by the uninstaller (see section \"uninstall\")\n\tfile \"i2ccl.exe\"\n\tfile \"i2cgui.exe\"\n\t# Add any other files for the install directory (license files, app data, etc) here\n \n\t# Uninstaller - See function un.onInit and section \"uninstall\" for configuration\n\twriteUninstaller \"$INSTDIR\\uninstall.exe\"\n \n\t# Start Menu\n\tcreateDirectory \"$SMPROGRAMS\\${COMPANYNAME}\"\n\tcreateShortCut \"$SMPROGRAMS\\${COMPANYNAME}\\${APPNAME}.lnk\" \"$INSTDIR\\i2cgui.exe\"\n \n        # Desktop Shortcut\n        CreateShortCut \"$DESKTOP\\I2CDriver.lnk\" \"$INSTDIR\\i2cgui.exe\"\n\n\t# Registry information for add/remove programs\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"DisplayName\" \"${COMPANYNAME} - ${APPNAME} - ${DESCRIPTION}\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"UninstallString\" \"$\\\"$INSTDIR\\uninstall.exe$\\\"\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"QuietUninstallString\" \"$\\\"$INSTDIR\\uninstall.exe$\\\" /S\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"InstallLocation\" \"$\\\"$INSTDIR$\\\"\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"DisplayIcon\" \"$\\\"$INSTDIR\\logo.ico$\\\"\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"Publisher\" \"$\\\"${COMPANYNAME}$\\\"\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"HelpLink\" \"$\\\"${HELPURL}$\\\"\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"URLUpdateInfo\" \"$\\\"${UPDATEURL}$\\\"\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"URLInfoAbout\" \"$\\\"${ABOUTURL}$\\\"\"\n\tWriteRegStr HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"DisplayVersion\" \"$\\\"${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONBUILD}$\\\"\"\n\tWriteRegDWORD HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"VersionMajor\" ${VERSIONMAJOR}\n\tWriteRegDWORD HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"VersionMinor\" ${VERSIONMINOR}\n\t# There is no option for modifying or repairing the install\n\tWriteRegDWORD HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"NoModify\" 1\n\tWriteRegDWORD HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"NoRepair\" 1\n\t# Set the INSTALLSIZE constant (!defined at the top of this script) so Add/Remove Programs can accurately report the size\n\tWriteRegDWORD HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\" \"EstimatedSize\" ${INSTALLSIZE}\n\n        Push \"$INSTDIR\"\n        Call AddToPath\nsectionEnd\n \n# Uninstaller\n \nfunction un.onInit\n\tSetShellVarContext all\n \n\t#Verify the uninstaller - last chance to back out\n\tMessageBox MB_OKCANCEL \"Permanantly remove ${APPNAME}?\" IDOK next\n\t\tAbort\n\tnext:\n\t!insertmacro VerifyUserIsAdmin\nfunctionEnd\n \nsection \"uninstall\"\n \n\t# Remove Start Menu launcher\n\tdelete \"$SMPROGRAMS\\${COMPANYNAME}\\${APPNAME}.lnk\"\n\t# Try to remove the Start Menu folder - this will only happen if it is empty\n\trmDir \"$SMPROGRAMS\\${COMPANYNAME}\"\n\n\t# Remove files\n\tdelete $INSTDIR\\i2ccl.exe\n\tdelete $INSTDIR\\i2cgui.exe\n \n\t# Always delete uninstaller as the last action\n\tdelete $INSTDIR\\uninstall.exe\n \n\t# Try to remove the install directory - this will only happen if it is empty\n\trmDir $INSTDIR\n \n\t# Remove uninstaller information from the registry\n\tDeleteRegKey HKLM \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${COMPANYNAME} ${APPNAME}\"\n\n\t# Remove the desktop shortcut\n\tdelete \"$DESKTOP\\I2CDriver.lnk\"\n\n        # Remove install dir from PATH\n        Push \"$INSTDIR\"\n        Call un.RemoveFromPath\nsectionEnd\n\n;--------------------------------------------------------------------\n; Path functions\n;\n; Based on example from:\n; http://nsis.sourceforge.net/Path_Manipulation\n;\n\n\n!include \"WinMessages.nsh\"\n\n; Registry Entry for environment (NT4,2000,XP)\n; All users:\n;!define Environ 'HKLM \"SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment\"'\n; Current user only:\n!define Environ 'HKCU \"Environment\"'\n\n; AddToPath - Appends dir to PATH\n;   (does not work on Win9x/ME)\n;\n; Usage:\n;   Push \"dir\"\n;   Call AddToPath\n\nFunction AddToPath\n  Exch $0\n  Push $1\n  Push $2\n  Push $3\n  Push $4\n\n  ; NSIS ReadRegStr returns empty string on string overflow\n  ; Native calls are used here to check actual length of PATH\n\n  ; $4 = RegOpenKey(HKEY_CURRENT_USER, \"Environment\", &$3)\n  System::Call \"advapi32::RegOpenKey(i 0x80000001, t'Environment', *i.r3) i.r4\"\n  IntCmp $4 0 0 done done\n  ; $4 = RegQueryValueEx($3, \"PATH\", (DWORD*)0, (DWORD*)0, &$1, ($2=NSIS_MAX_STRLEN, &$2))\n  ; RegCloseKey($3)\n  System::Call \"advapi32::RegQueryValueEx(i $3, t'PATH', i 0, i 0, t.r1, *i ${NSIS_MAX_STRLEN} r2) i.r4\"\n  System::Call \"advapi32::RegCloseKey(i $3)\"\n\n  IntCmp $4 234 0 +4 +4 ; $4 == ERROR_MORE_DATA\n    DetailPrint \"AddToPath: original length $2 > ${NSIS_MAX_STRLEN}\"\n    MessageBox MB_OK \"PATH not updated, original length $2 > ${NSIS_MAX_STRLEN}\"\n    Goto done\n\n  IntCmp $4 0 +5 ; $4 != NO_ERROR\n    IntCmp $4 2 +3 ; $4 != ERROR_FILE_NOT_FOUND\n      DetailPrint \"AddToPath: unexpected error code $4\"\n      Goto done\n    StrCpy $1 \"\"\n\n  ; Check if already in PATH\n  Push \"$1;\"\n  Push \"$0;\"\n  Call StrStr\n  Pop $2\n  StrCmp $2 \"\" 0 done\n  Push \"$1;\"\n  Push \"$0\\;\"\n  Call StrStr\n  Pop $2\n  StrCmp $2 \"\" 0 done\n\n  ; Prevent NSIS string overflow\n  StrLen $2 $0\n  StrLen $3 $1\n  IntOp $2 $2 + $3\n  IntOp $2 $2 + 2 ; $2 = strlen(dir) + strlen(PATH) + sizeof(\";\")\n  IntCmp $2 ${NSIS_MAX_STRLEN} +4 +4 0\n    DetailPrint \"AddToPath: new length $2 > ${NSIS_MAX_STRLEN}\"\n    MessageBox MB_OK \"PATH not updated, new length $2 > ${NSIS_MAX_STRLEN}.\"\n    Goto done\n\n  ; Append dir to PATH\n  DetailPrint \"Add to PATH: $0\"\n  StrCpy $2 $1 1 -1\n  StrCmp $2 \";\" 0 +2\n    StrCpy $1 $1 -1 ; remove trailing ';'\n  StrCmp $1 \"\" +2   ; no leading ';'\n    StrCpy $0 \"$1;$0\"\n  WriteRegExpandStr ${Environ} \"PATH\" $0\n  SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 \"STR:Environment\" /TIMEOUT=5000\n\ndone:\n  Pop $4\n  Pop $3\n  Pop $2\n  Pop $1\n  Pop $0\nFunctionEnd\n\n; StrStr - find substring in a string\n;\n; Usage:\n;   Push \"this is some string\"\n;   Push \"some\"\n;   Call StrStr\n;   Pop $0 ; \"some string\"\n\n!macro StrStr un\nFunction ${un}StrStr\n  Exch $R1 ; $R1=substring, stack=[old$R1,string,...]\n  Exch     ;                stack=[string,old$R1,...]\n  Exch $R2 ; $R2=string,    stack=[old$R2,old$R1,...]\n  Push $R3\n  Push $R4\n  Push $R5\n  StrLen $R3 $R1\n  StrCpy $R4 0\n  ; $R1=substring, $R2=string, $R3=strlen(substring)\n  ; $R4=count, $R5=tmp\n  loop:\n    StrCpy $R5 $R2 $R3 $R4\n    StrCmp $R5 $R1 done\n    StrCmp $R5 \"\" done\n    IntOp $R4 $R4 + 1\n    Goto loop\ndone:\n  StrCpy $R1 $R2 \"\" $R4\n  Pop $R5\n  Pop $R4\n  Pop $R3\n  Pop $R2\n  Exch $R1 ; $R1=old$R1, stack=[result,...]\nFunctionEnd\n!macroend\n!insertmacro StrStr \"\"\n!insertmacro StrStr \"un.\"\n\n; RemoveFromPath - Removes dir from PATH\n;\n; Usage:\n;   Push \"dir\"\n;   Call RemoveFromPath\n\nFunction un.RemoveFromPath\n  Exch $0\n  Push $1\n  Push $2\n  Push $3\n  Push $4\n  Push $5\n  Push $6\n\n  ReadRegStr $1 ${Environ} \"PATH\"\n  StrCpy $5 $1 1 -1\n  StrCmp $5 \";\" +2\n    StrCpy $1 \"$1;\" ; ensure trailing ';'\n  Push $1\n  Push \"$0;\"\n  Call un.StrStr\n  Pop $2 ; pos of our dir\n  StrCmp $2 \"\" done\n\n  DetailPrint \"Remove from PATH: $0\"\n  StrLen $3 \"$0;\"\n  StrLen $4 $2\n  StrCpy $5 $1 -$4 ; $5 is now the part before the path to remove\n  StrCpy $6 $2 \"\" $3 ; $6 is now the part after the path to remove\n  StrCpy $3 \"$5$6\"\n  StrCpy $5 $3 1 -1\n  StrCmp $5 \";\" 0 +2\n    StrCpy $3 $3 -1 ; remove trailing ';'\n  WriteRegExpandStr ${Environ} \"PATH\" $3\n  SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 \"STR:Environment\" /TIMEOUT=5000\n\ndone:\n  Pop $6\n  Pop $5\n  Pop $4\n  Pop $3\n  Pop $2\n  Pop $1\n  Pop $0\nFunctionEnd\n"
  },
  {
    "path": "nsis/license.txt",
    "content": "BSD 3-Clause License\r\n\r\nCopyright (c) 2019, James Bowman\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n* Redistributions of source code must retain the above copyright notice, this\r\n  list of conditions and the following disclaimer.\r\n\r\n* Redistributions in binary form must reproduce the above copyright notice,\r\n  this list of conditions and the following disclaimer in the documentation\r\n  and/or other materials provided with the distribution.\r\n\r\n* Neither the name of the copyright holder nor the names of its\r\n  contributors may be used to endorse or promote products derived from\r\n  this software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n"
  },
  {
    "path": "python/.gitignore",
    "content": "_build/\nbuild/\ndist/\ni2cdriver.egg-info/\n*.csv\n"
  },
  {
    "path": "python/EDS.py",
    "content": "\"\"\"\nDrivers for electricdollarstore I2C parts\n\"\"\"\nimport struct\nimport time\nimport datetime\n\nclass Dig2:\n    \"\"\" DIG2 is a 2-digit 7-segment LED display \"\"\"\n\n    def __init__(self, i2, a = 0x14):\n        self.i2 = i2\n        self.a = a\n\n    def raw(self, b0, b1):\n        \"\"\" Set all 8 segments from the bytes b0 and b1 \"\"\" \n        self.i2.regwr(self.a, 0, struct.pack(\"BB\", b0, b1))\n\n    def hex(self, b):\n        \"\"\" Display a hex number 0-0xff \"\"\"\n        self.i2.regwr(self.a, 1, b)\n\n    def dec(self, b):\n        \"\"\" Display a decimal number 00-99 \"\"\"\n        self.i2.regwr(self.a, 2, b)\n\n    def dp(self, p0, p1):\n        \"\"\" Set the state the decimal point indicators \"\"\"\n        self.i2.regwr(self.a, 3, (p1 << 1) | p0)\n\n    def brightness(self, b):\n        \"\"\" Set the brightness from 0 (off) to 255 (maximum) \"\"\"\n        self.i2.regwr(self.a, 4, b)\n\nclass LED:\n    \"\"\" LED is an RGB LED \"\"\"\n    def __init__(self, i2, a = 0x08):\n        self.i2 = i2\n        self.a = a\n\n    def rgb(self, r, g, b, t = 0):\n        \"\"\"\n        Set the color to (r,g,b). Each is a byte 0-255.\n        If t is nonzero, the change happens over t/30 seconds.\n        For example if t is 15 the color fades over a half-second.\n        \"\"\"\n        if t == 0:\n            self.i2.start(self.a, 0)\n            self.i2.regwr(self.a, 0, bytes([r, g, b]))\n        else:\n            self.i2.start(self.a, 0)\n            self.i2.regwr(self.a, 1, bytes([r, g, b, t]))\n        \n    def hex(self, hhh, t = 0):\n        \"\"\"\n        Set the color to hhh, a 24-bit RGB color.\n        If t is nonzero, the change happens over t/30 seconds.\n        For example if t is 15 the color fades over a half-second.\n        \"\"\"\n        r = (hhh >> 16) & 0xff\n        g = (hhh >> 8) & 0xff\n        b = hhh & 0xff\n        self.rgb(r, g, b, t)\n\nclass Pot:\n    \"\"\" POT is an analog knob potentiometer \"\"\"\n    def __init__(self, i2, a = 0x28):\n        self.i2 = i2\n        self.a = a\n\n    def raw(self):\n        \"\"\"\n        Return the current knob rotation as a 16-bit integer.\n        \"\"\"\n        return self.i2.regrd(self.a, 0, \"H\")\n\n    def rd(self, r):\n        \"\"\"\n        Return the current knob rotation, scaled to the range 0 .. r\n        inclusive. For example rd(100) returns a value in the range 0 to 100.\n        \"\"\"\n        return self.i2.regrd(self.a, r)\n\nclass Beep:\n    \"\"\" BEEP is a beeper \"\"\"\n    def __init__(self, i2, a = 0x30):\n        self.i2 = i2\n        self.a = a\n\n    def beep(self, dur, note):\n        \"\"\"\n        Play a note. \n        dur is the duration in milliseconds, 0-255.\n        note is a MIDI note in the range 21-127 inclusive.\n        \"\"\"\n        self.i2.regwr(self.a, dur, note)\n\nclass Remote:\n    \"\"\" REMOTE is a NEC IR code receiver / decoder \"\"\"\n    def __init__(self, i2, a = 0x60):\n        self.i2 = i2\n        self.a = a\n\n    def key(self):\n        \"\"\"\n        For the electricdollarstore IR transmitter.\n        If there is a code in the queue, return its character code.\n        The layout of the remote is\n            \n             p     c     n\n             <     >    ' '\n             -     +     =\n             0     %     &\n             1     2     3\n             4     5     6\n             7     8     9\n\n        If there is no IR code in the queue, return None.\n        \"\"\"\n        r = self.i2.regrd(self.a, 0)\n        if r != 0:\n            return chr(r)\n\n    def raw(self):\n        \"\"\"\n        If there is a code in the queue, return a tuple containing the four-byte code,\n        and a timestamp.\n        If there is no IR code in the queue, return None.\n        \"\"\"\n\n        r = self.i2.regrd(self.a, 1, \"4BH\")\n        if r[:4] != (0xff, 0xff, 0xff, 0xff):\n            age_in_ms = r[4]\n            return (r[:4], time.time() - age_in_ms * .001)\n        else:\n            return None\n\nclass Temp:\n    \"\"\" TEMP is a LM75B temperature sesnor \"\"\"\n    def __init__(self, i2, a = 0x48):\n        self.i2 = i2\n        self.a = a\n\n    def reg(self, r):\n        return self.i2.regrd(self.a, r, \">h\")\n        \n    def read(self):\n        \"\"\" Return the current temperature in Celsius \"\"\"\n        return (self.reg(0) >> 5) * 0.125\n\nclass EPROM:\n    \"\"\" EPROM is a CAT24C512 512 Kbit (64 Kbyte) flash memory \"\"\"\n    def __init__(self, i2, a = 0x50):\n        self.i2 = i2\n        self.a = a\n\n    def write(self, addr, data):\n        \"\"\" Write data to EPROM, starting at address addr \"\"\"\n        for i in range(0, len(data), 128):\n            self.i2.start(self.a, 0)\n            self.i2.write(struct.pack(\">H\", addr + i))\n            self.i2.write(data[i:i + 128])\n            self.i2.stop()\n            while self.i2.start(self.a, 0) == False:\n                pass\n        \n    def read(self, addr, n):\n        \"\"\" Read n bytes from the EPROM, starting at address addr \"\"\"\n        self.i2.start(self.a, 0)\n        self.i2.write(struct.pack(\">H\", addr))\n        self.i2.start(self.a, 1)\n        r = self.i2.read(n)\n        self.i2.stop()\n        return r\n        self.i2.stop()\n\nclass Clock:\n    \"\"\" CLOCK is a HT1382 I2C/3-Wire Real Time Clock with a 32 kHz crystal \"\"\"\n    def __init__(self, i2, a = 0x68):\n        self.i2 = i2\n        self.a = a\n        \n    def set(self, t = None):\n        if t is None:\n            t = datetime.datetime.now()\n        def bcd(x):\n            return (x % 10) + 16 * (x // 10)\n        self.i2.regwr(self.a, 7, 0)\n        self.i2.regwr(self.a, 6, bcd(t.year % 100))\n        self.i2.regwr(self.a, 5, 1 + t.weekday())\n        self.i2.regwr(self.a, 4, bcd(t.month))\n        self.i2.regwr(self.a, 3, bcd(t.day))\n        self.i2.regwr(self.a, 2, 0x80 | bcd(t.hour))    # use 24-hour mode\n        self.i2.regwr(self.a, 1, bcd(t.minute))\n        self.i2.regwr(self.a, 0, bcd(t.second))\n\n    def read(self):\n        self.i2.start(self.a, 0)\n        self.i2.write([0])\n        self.i2.stop()\n        self.i2.start(self.a, 1)\n        (ss,mm,hh,dd,MM,ww,yy) = (struct.unpack(\"7B\", self.i2.read(7)))\n        self.i2.stop()\n        def dec(x):\n            return (x % 16) + 10 * (x // 16)\n        return datetime.datetime(\n            2000 + dec(yy),\n            dec(MM),\n            dec(dd),\n            dec(hh & 0x7f),\n            dec(mm),\n            dec(ss))\n\n    def dump(self):\n        self.i2.start(self.a, 0)\n        self.i2.write([0])\n        self.i2.stop()\n        self.i2.start(self.a, 1)\n        print(list(self.i2.read(16)))\n        self.i2.stop()\n\nclass Magnet:\n    \"\"\" MAGNET is an ST LIS3MDL 3-axis magnetometer \"\"\"\n    def __init__(self, i2, a = 0x1c):\n        self.i2 = i2\n        self.a = a\n        self.i2.regwr(self.a, 0x22, 0) # CTRL_REG3 operating mode 0: continuous conversion\n\n    def rd(self):\n        \"\"\" Read the measurement STATUS_REG and OUT_X,Y,Z \"\"\"\n        return self.i2.regrd(self.a, 0x27, \"<B3h\")\n\n    def measurement(self):\n        \"\"\" Wait for a new field reading, return the (x,y,z) \"\"\"\n        while True:\n            (status, x, y, z) = self.rd()\n            if status & 8:\n                return (x, y, z)\n\nclass Accel:\n    \"\"\" ACCEL is a Richtek RT3000C 3-Axis Digital Accelerometer \"\"\"\n\n    def __init__(self, i2, a = 0x19):\n        self.i2 = i2\n        self.a = a\n\n        print(bin(i2.regrd(self.a, 0xf)))\n        i2.regwr(self.a, 0x20, 0b01000111) # CTRL_REG1: 50 Hz, enable X,Y,Z\n        i2.regwr(self.a, 0x23, 0b00000000) # CTRL_REG4: High resolution mode\n\n    def measurement(self):\n        \"\"\" Wait for a new reading, return the (x,y,z) acceleration in g \"\"\"\n\n        # Note that the RT3000A does not support multibyte\n        # reads. So must read the data one byte at a time.\n\n        while True:\n            STS_REG = self.i2.regrd(self.a, 0x27)\n            if STS_REG & 8:\n                regs = [self.i2.regrd(self.a, i) for i in range(0x28, 0x2e)]\n                xyz = struct.unpack(\"<3h\", struct.pack(\"6B\", *regs))\n                return tuple([c / 16384. for c in xyz])\n"
  },
  {
    "path": "python/MANIFEST",
    "content": "# file GENERATED by distutils, do NOT edit\nsetup.py\nspidriver.py\n"
  },
  {
    "path": "python/docs/Makefile",
    "content": "# Minimal makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line, and also\n# from the environment for the first two.\nSPHINXOPTS    ?=\nSPHINXBUILD   ?= sphinx-build\nSOURCEDIR     = .\nBUILDDIR      = _build\n\n# Put it first so that \"make\" without argument is like \"make help\".\nhelp:\n\t@$(SPHINXBUILD) -M help \"$(SOURCEDIR)\" \"$(BUILDDIR)\" $(SPHINXOPTS) $(O)\n\n.PHONY: help Makefile\n\n# Catch-all target: route all unknown targets to Sphinx using the new\n# \"make mode\" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).\n%: Makefile\n\t@$(SPHINXBUILD) -M $@ \"$(SOURCEDIR)\" \"$(BUILDDIR)\" $(SPHINXOPTS) $(O)\n"
  },
  {
    "path": "python/docs/conf.py",
    "content": "# Configuration file for the Sphinx documentation builder.\n#\n# This file only contains a selection of the most common options. For a full\n# list see the documentation:\n# https://www.sphinx-doc.org/en/master/usage/configuration.html\n\n# -- Path setup --------------------------------------------------------------\n\n# If extensions (or modules to document with autodoc) are in another directory,\n# add these directories to sys.path here. If the directory is relative to the\n# documentation root, use os.path.abspath to make it absolute, like shown here.\n#\nimport sys\nimport os\nsys.path.insert(0, os.path.abspath('..'))\n\n# -- Project information -----------------------------------------------------\n\nproject = 'i2cdriver'\ncopyright = '2021, Excamera Labs'\nauthor = 'James Bowman'\n\n\n# -- General configuration ---------------------------------------------------\n\n# Add any Sphinx extension module names here, as strings. They can be\n# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom\n# ones.\nextensions = [\n    \"sphinx_rtd_theme\",\n    \"sphinx.ext.autodoc\",\n    \"sphinx.ext.intersphinx\"\n]\n\nintersphinx_mapping = {'https://docs.python.org/3/': None}\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = ['_templates']\n\n# List of patterns, relative to source directory, that match files and\n# directories to ignore when looking for source files.\n# This pattern also affects html_static_path and html_extra_path.\nexclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']\n\n\n# -- Options for HTML output -------------------------------------------------\n\n# The theme to use for HTML and HTML Help pages.  See the documentation for\n# a list of builtin themes.\n#\nhtml_theme = 'sphinx_rtd_theme'\n\n# Add any paths that contain custom static files (such as style sheets) here,\n# relative to this directory. They are copied after the builtin static files,\n# so a file named \"default.css\" will overwrite the builtin \"default.css\".\nhtml_static_path = ['_static']\n\nmaster_doc = 'index'\n\n"
  },
  {
    "path": "python/docs/go",
    "content": "set -e\n\n# pip install --upgrade --force-reinstall ..\nmake html\n"
  },
  {
    "path": "python/docs/index.rst",
    "content": "i2cdriver\n=========\n\n.. image:: /images/i2cdriver-hero-800.jpg\n   :target: https://i2cdriver.com\n\n`I²CDriver <https://i2cdriver.com>`_\nis an easy-to-use, open source tool for controlling I²C devices over USB.\nIt works with Windows, Mac, and Linux, and has a built-in color screen\nthat shows a live \"dashboard\" of all the I²C activity.\n\n.. toctree::\n   :maxdepth: 2\n   :caption: Contents:\n\nThe I²CDriver User Guide has complete information on the hardware:\n\nhttps://i2cdriver.com/i2cdriver.pdf\n\nSystem Requirements\n===================\n\nBecause it is a pure Python module, ``i2cdriver`` can run on any system supported by ``pyserial``.\nThis includes:\n\n- Windows 7 or 10\n- Mac OS\n- Linux, including all Ubuntu distributions\n\nBoth Python 2.7 and 3.x are supported.\n\nInstallation\n------------\n\nThe ``i2cdriver`` package can be installed from PyPI using ``pip``::\n\n    $ pip install i2cdriver\n\nQuick start\n-----------\n\nTo connect to the I2CDriver and scan the bus for connected devices::\n\n    >>> import i2cdriver\n    >>> i2c = i2cdriver.I2CDriver(\"/dev/ttyUSB0\")\n    >>> i2c.scan()\n    -- -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    -- -- -- -- 1C -- -- -- \n    -- -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    48 -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    68 -- -- -- -- -- -- -- \n    -- -- -- -- -- -- -- -- \n    [28, 72, 104]\n\nTo read the temperature in Celsius from a connected LM75 sensor:\n\n    >>> d=i2cdriver.EDS.Temp(i2c)\n    >>> d.read()\n    17.875\n    >>> d.read()\n    18.0\n\nThe User Guide at https://i2cdriver.com has more examples.\n\nModule Contents\n---------------\n\n.. autoclass:: i2cdriver.I2CDriver\n   :member-order: bysource\n   :members:\n      setspeed,\n      setpullups,\n      scan,\n      reset,\n      start,\n      read,\n      write,\n      stop,\n      regwr,\n      regrd,\n      getstatus,\n      monitor\n\n.. autoclass:: i2cdriver.START\n.. autoclass:: i2cdriver.STOP\n.. autoclass:: i2cdriver.BYTE\n"
  },
  {
    "path": "python/docs/requirements.txt",
    "content": "pyserial\n"
  },
  {
    "path": "python/go",
    "content": "set -e\npython setup.py install # --user\n# python samples/i2cgui.py /dev/ttyUSB0\nmake -f Makefile.sphinx latexpdf\nexit\n\necho Python3:\npython3 ./confirm.py 1\necho Python2:\npython2 ./confirm.py 1\n\n# ./thrash.py 3\n./eve.py 9999\npython3 ./watch.py\n"
  },
  {
    "path": "python/i2cdriver.py",
    "content": "import sys\nimport serial\nimport time\nimport struct\nfrom collections import OrderedDict\n\n__version__ = '1.0.1'\n\nPYTHON2 = (sys.version_info < (3, 0))\n\nimport EDS\n\nclass I2CTimeout(Exception):\n    pass\n\nclass InternalState(OrderedDict):\n    def __repr__(self):\n        return \"\".join([\"%8s %4x\\n\" % (k, v) for (k, v) in self.items()])\n\nclass _I2CEvent:\n    def rrw(self):\n        return [\"WRITE\", \"READ\"][self.rw]\n    def rack(self):\n        return [\"NACK\", \"ACK\"][self.ack]\n\nclass START(_I2CEvent):\n    def __init__(self, addr, rw, ack):\n        self.addr = addr\n        self.rw = rw\n        self.ack = ack\n    def __repr__(self):\n        return \"<START 0x%02x %s %s>\" % (self.addr, self.rrw(), self.rack())\n    def dump(self, f, fmt):\n        if fmt == \"csv\":\n            f.writerow((\"START\", self.rrw(), str(self.addr), self.rack()))\n        else:\n            assert False, \"unsupported format\"\n    def __eq__(self, other):\n        return (self.addr, self.rw, self.ack) == (other.addr, other.rw, other.ack)\n\nclass STOP(_I2CEvent):\n    def __repr__(self):\n        return \"<STOP>\"\n    def dump(self, f, fmt):\n        if fmt == \"csv\":\n            f.writerow((\"STOP\", None, None, None))\n        else:\n            assert False, \"unsupported format\"\n    def __eq__(self, other):\n        return isinstance(other, STOP)\n\nclass BYTE(_I2CEvent):\n    def __init__(self, b, rw, ack):\n        self.b = b\n        self.rw = rw\n        self.ack = ack\n    def __repr__(self):\n        return \"<%s 0x%02x %s>\" % (self.rrw(), self.b, self.rack())\n    def dump(self, f, fmt):\n        if fmt == \"csv\":\n            f.writerow((\"BYTE\", self.rrw(), str(self.b), self.rack()))\n        else:\n            assert False, \"unsupported format\"\n    def __eq__(self, other):\n        return (self.b, self.rw, self.ack) == (other.b, other.rw, other.ack)\n\nclass I2CDriver:\n    \"\"\"\n    A connected I2CDriver.\n\n    :param port: The USB port to connect to\n    :type port: str\n    :param reset: Issue an I2C bus reset on connection\n    :type reset: bool\n\n    After connection, the following object variables reflect the current values of the I2CDriver.\n    They are updated by calling :py:meth:`getstatus`.\n\n    :ivar product: product code e.g. 'i2cdriver1' or 'i2cdriverm'\n    :ivar serial: serial string of I2CDriver\n    :ivar uptime: time since I2CDriver boot, in seconds\n    :ivar voltage: USB voltage, in V\n    :ivar current: current used by attached device, in mA\n    :ivar temp: temperature, in degrees C\n    :ivar scl: state of SCL\n    :ivar sda: state of SDA\n    :ivar speed: current device speed in KHz (100 or 400)\n    :ivar mode: IO mode (I2C or bitbang)\n    :ivar pullups: programmable pullup enable pins\n    :ivar ccitt_crc: CCITT-16 CRC of all transmitted and received bytes\n\n    \"\"\"\n    def __init__(self, port = \"/dev/ttyUSB0\", reset = True):\n        \"\"\"\n        Connect to a hardware i2cdriver.\n\n        :param port: The USB port to connect to\n        :type port: str\n        :param reset: Issue an I2C bus reset on connection\n        :type reset: bool\n\n        \"\"\"\n        self.ser = serial.Serial(port, 1000000, timeout = 1)\n\n        # May be in capture or monitor mode, send char and wait for 50 ms\n        self.ser.write(b'@')\n        time.sleep(.050)\n\n        # May be waiting up to 64 bytes of input (command code 0xff)\n        self.ser.write(b'@' * 64)\n        self.ser.flush()\n\n        while self.ser.inWaiting():\n            self.ser.read(self.ser.inWaiting())\n\n        for c in [0x55, 0x00, 0xff, 0xaa]:\n            r = self.__echo(c)\n            if r != c:\n                print('Echo test failed - not attached?')\n                print('Expected %r but received %r' % (c, r))\n                raise IOError\n        self.getstatus()\n        if reset == \"never\":\n            return\n        if reset or (self.scl, self.sda) != (1, 1):\n            if self.reset() != 3:\n                raise I2CTimeout(\"Bus failed to reset - check connected devices\")\n            self.getstatus()\n        self.setspeed(100)\n\n    if PYTHON2:\n        def __ser_w(self, s):\n            if isinstance(s, list) or isinstance(s, tuple):\n                s = \"\".join([chr(c) for c in s])\n            self.ser.write(s)\n    else:\n        def __ser_w(self, s):\n            if isinstance(s, list) or isinstance(s, tuple):\n                s = bytes(s)\n            self.ser.write(s)\n\n    def __echo(self, c):\n        self.__ser_w([ord('e'), c])\n        r = self.ser.read(1)\n        if PYTHON2:\n            return ord(r[0])\n        else:\n            return r[0]\n\n    def setspeed(self, s):\n        \"\"\"\n        Set the I2C bus speed.\n\n        :param s: speed in KHz, either 100 or 400\n        :type s: int\n        \"\"\"\n        assert s in (100, 400)\n        c = {100:b'1', 400:b'4'}[s]\n        self.__ser_w(c)\n        self.speed = s\n\n    def setpullups(self, s):\n        \"\"\"\n        Set the I2CDriver pullup resistors\n\n        :param s: 6-bit pullup mask\n        \"\"\"\n        assert 0 <= s < 64\n        self.__ser_w([ord('u'), s])\n        self.pullups = s\n\n    def scan(self, silent = False):\n        \"\"\" Performs an I2C bus scan.\n        If silent is False, prints a map of devices.\n        Returns a list of the device addresses.\n\n        >>> i2c.scan()\n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- 1C -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        48 -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        68 -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        [28, 72, 104]\n        \"\"\"\n\n        self.ser.write(b'd')\n        d = struct.unpack(\"112c\", self.ser.read(112))\n        if not silent:\n            for a,p in enumerate(d, 8):\n                if p == b\"1\":\n                    st = \"%02X\" % a\n                else:\n                    st = \"--\"\n                sys.stdout.write(st + \" \")\n                if (a % 8) == 7:\n                    sys.stdout.write(\"\\n\")\n        return [a for a,p in enumerate(d, 8) if p == b\"1\"]\n\n    def reset(self):\n        \"\"\" Send an I2C bus reset \"\"\"\n        self.__ser_w(b'x')\n        return struct.unpack(\"B\", self.ser.read(1))[0] & 3\n\n    def start(self, dev, rw):\n        \"\"\"\n        Start an I2C transaction\n\n        :param dev: 7-bit I2C device address\n        :param rw: read (1) or write (0)\n\n        To write bytes ``[0x12,0x34]`` to device ``0x75``:\n\n        >>> i2c.start(0x75, 0)\n        >>> i2c.write([0x12,034])\n        >>> i2c.stop()\n\n        \"\"\"\n        self.__ser_w([ord('s'), (dev << 1) | rw])\n        return self.ack()\n\n    def ack(self):\n        a = ord(self.ser.read(1))\n        if a & 2:\n            raise I2CTimeout\n        return (a & 1) != 0\n\n    def read(self, l):\n        \"\"\" Read l bytes from the I2C device, and NAK the last byte \"\"\"\n        r = []\n        if l >= 64:\n            bulkpart = (l-1) // 64\n            for i in range(bulkpart):\n                self.__ser_w([ord('a'), 64])\n                r.append(self.ser.read(64))\n            l -= 64 * bulkpart\n        assert 0 <= l <= 64\n        self.__ser_w([0x80 + l - 1])\n        r.append(self.ser.read(l))\n        return b''.join(r)\n\n    def write(self, bb):\n        \"\"\"\n        Write bytes to the selected I2C device\n\n        :param bb: sequence to write\n        \"\"\"\n        ack = True\n        for i in range(0, len(bb), 64):\n            sub = bb[i:i + 64]\n            self.__ser_w([0xc0 + len(sub) - 1])\n            self.__ser_w(sub)\n            ack = self.ack()\n        return ack\n\n    def stop(self):\n        \"\"\" stop the i2c transaction \"\"\"\n        self.ser.write(b'p')\n\n    def reboot(self):\n        self.__ser_w(b'_')\n        time.sleep(.5)\n\n    def regrd(self, dev, reg, fmt = \"B\"):\n        \"\"\"\n        Read a register from a device.\n\n        :param dev: 7-bit I2C device address\n        :param reg: register address 0-255\n        :param fmt: :py:func:`struct.unpack` format string for the register contents, or an integer byte count\n\n        If device 0x75 has a 16-bit unsigned big-endian register 102, it can be read with:\n\n        >>> i2c.regrd(0x75, 102, \">H\")\n        4999\n        \"\"\"\n\n        if isinstance(fmt, str):\n            r = struct.unpack(fmt, self.regrd(dev, reg, struct.calcsize(fmt)))\n            if len(r) == 1:\n                return r[0]\n            else:\n                return r\n        else:\n            n = fmt\n            if n <= 256:\n                self.__ser_w(b'r' + struct.pack(\"BBB\", dev, reg, n & 0xff))\n                return self.ser.read(n)\n            else:\n                self.start(dev, 0)\n                self.write([reg])\n                self.start(dev, 1)\n                r = self.read(n)\n                self.stop()\n                return r\n\n    def regwr(self, dev, reg, vv):\n        \"\"\"Write a device's register.\n\n        :param dev: 7-bit I2C device address\n        :param reg: register address 0-255\n        :param vv: value to write. Either a single byte, or a sequence\n\n        To set device 0x34 byte register 7 to 0xA1:\n\n        >>> i2c.regwr(0x34, 7, 0xa1)\n\n        If device 0x75 has a big-endian 16-bit register 102 you can set it to 4999 with:\n\n        >>> i2c.regwr(0x75, 102, struct.pack(\">H\", 4999))\n\n        \"\"\"\n        r = self.start(dev, 0)\n        if r:\n            r = self.write(struct.pack(\"B\", reg))\n            if r:\n                if isinstance(vv, int):\n                    vv = struct.pack(\"B\", vv)\n                r = self.write(vv)\n        self.stop()\n        return r\n\n    def monitor(self, s):\n        \"\"\" Enter or leave monitor mode\n\n        :param s: ``True`` to enter monitor mode, ``False`` to leave\n        \"\"\"\n\n        if s:\n            self.__ser_w(b'm')\n            time.sleep(.1)\n        else:\n            self.__ser_w(b' ')\n            time.sleep(.1)\n            self.__echo(0x40)\n\n    def introspect(self):\n        self.ser.write(b'J')\n        r = self.ser.read(80)\n        assert len(r) == 80, r\n        body = r[1:-1].decode() # remove [ and ]\n        nn = (\n            \"id ds sp SMB0CF SMB0CN T2 T3 IE EIE1 P0 P0MDIN P0MDOUT P1 P1MDIN P1MDOUT P2 P2MDOUT\".split() +\n            \"convs\".split()\n        )\n        bb = [int(w, 16) for w in body.split()]\n        assert len(nn) == len(bb)\n        return InternalState(zip(nn, bb))\n\n    def restore(self):\n        self.ser.write(b'i')\n\n    def __repr__(self):\n        return \"<%s serial=%s uptime=%d, SCL=%d, SDA=%d>\" % (\n            self.product,\n            self.serial,\n            self.uptime,\n            self.scl,\n            self.sda)\n\n    def capture_start(self, idle=False, start = START, abyte = BYTE, stop = STOP):\n        \"\"\"Enter I2C capture mode, capturing I2C transactions.\n        :param idle: If ``True`` the generator returns ``None`` when the bus is idle. If ``False`` the generator does nothing during bus idle.\n\n        :return: a generator which returns an object for each I2C primitive captured.\n        \"\"\"\n        self.__ser_w([ord('c')])\n        def nstream():\n            while True:\n                bb = self.ser.read(256)\n                if PYTHON2:\n                    for b in bb:\n                        yield (ord(b) >> 4) & 0xf\n                        yield ord(b)        & 0xf\n                else:\n                    for b in bb:\n                        yield (b >> 4) & 0xf\n                        yield b        & 0xf\n        def parser():\n            starting = False\n            rw = 0\n            for n in nstream():\n                if n == 0:\n                    if idle:\n                        yield None\n                elif n == 1:\n                    starting = True\n                    bits = []\n                elif n == 2:\n                    yield stop()\n                    starting = True\n                    bits = []\n                elif n in (8,9,10,11,12,13,14,15):\n                    # w(str(n&7))\n                    bits.append(n & 7)\n                    if len(bits) == 3:\n                        b9 = (bits[0] << 6) | (bits[1] << 3) | bits[2]\n                        b8 = (b9 >> 1)\n                        ack = b9 & 1\n                        if starting:\n                            rw = b8 & 1\n                            yield start(b8 >> 1, rw, ack == 0)\n                            starting = False\n                        else:\n                            yield abyte(b8, rw, ack == 0)\n                        bits = []\n                else:\n                    assert 0, \"unexpected token\"\n        return parser\n\n    def capture_stop(self):\n        while self.ser.in_waiting:\n            self.ser.read(self.ser.in_waiting)\n        self.__ser_w([ord('c')])\n        while self.ser.in_waiting:\n            self.ser.read(self.ser.in_waiting)\n        self.__echo(0x40)\n\n    def capture(self):\n        self.__ser_w([ord('c')])\n        while 0:\n            b = self.ser.read(1)\n            for c in b:\n                print(\"%02x\" % c)\n        w = sys.stdout.write\n        def nstream():\n            while 1:\n                for b in self.ser.read(256):\n                    yield (b >> 4) & 0xf\n                    yield b        & 0xf\n        bits = []\n        for n in nstream():\n            if n == 0:\n                w(\".\")\n            elif n == 1:\n                w(\"S\")\n                bits = []\n            elif n == 2:\n                w(\"P\\n\")\n                bits = []\n            elif n in (8,9,10,11,12,13,14,15):\n                # w(str(n&7))\n                bits.append(n & 7)\n                if len(bits) == 3:\n                    b9 = (bits[0] << 6) | (bits[1] << 3) | bits[2]\n                    b8 = (b9 >> 1)\n                    ack = b9 & 1\n                    w('%02x%s' % (b8, \" !\"[ack]))\n                    bits = []\n            else:\n                assert 0, \"unexpected token\"\n\n    def getstatus(self):\n        \"\"\" Update all status variables \"\"\"\n        self.ser.write(b'?')\n        r = self.ser.read(80)\n        body = r[1:-1].decode() # remove [ and ]\n        (self.product,\n         self.serial,\n         uptime,\n         voltage,\n         current,\n         temp,\n         mode,\n         sda,\n         scl,\n         speed,\n         pullups,\n         ccitt_crc) = body.split()\n        self.uptime = int(uptime)\n        self.voltage = float(voltage)\n        self.current = float(current)\n        self.temp = float(temp)\n        self.mode = mode\n        self.scl = int(scl)\n        self.sda = int(sda)\n        self.speed = int(speed)\n        self.pullups = int(pullups, 16)\n        self.ccitt_crc = int(ccitt_crc, 16)\n        return repr(self)\n"
  },
  {
    "path": "python/lm75b.py",
    "content": "class LM75B:\n    def __init__(self, i2, a = 0x48):\n        self.i2 = i2\n        self.a = a\n\n    def reg(self, r):\n        return self.i2.regrd(self.a, r, \">h\")\n        \n    def read(self):\n        return (self.reg(0) >> 5) * 0.125\n"
  },
  {
    "path": "python/samples/EDS-ACCEL.py",
    "content": "import sys\nimport struct\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    i2.scan()\n\n    d = EDS.Accel(i2)\n    while True:\n        print(\"x=%+.3f  y=%+.3f  z=%+.3f\" % d.measurement())\n"
  },
  {
    "path": "python/samples/EDS-BEEP.py",
    "content": "import sys\nimport serial\nimport time\nimport struct\nimport random\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1], True)\n\n    d = EDS.Beep(i2)\n\n    for note in range(55, 127):\n        print(\"MIDI note %d\" % note)\n        d.beep(100, note)\n        time.sleep(.100)\n"
  },
  {
    "path": "python/samples/EDS-CLOCK.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Clock(i2)\n    d.set()\n    while 1:\n        print(d.read())\n        time.sleep(1)\n"
  },
  {
    "path": "python/samples/EDS-DIG2.py",
    "content": "import sys\nimport serial\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Dig2(i2)\n    for i in range(100):\n        d.dec(i)\n        time.sleep(.05)\n"
  },
  {
    "path": "python/samples/EDS-EPROM.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\ntext = b\"\"\"\\\nCHAPTER 1. Loomings.\n\nCall me Ishmael. Some years ago-never mind how long precisely-having little or no money in my\npurse, and nothing particular to interest me on shore, I thought I would sail about a little\nand see the watery part of the world. It is a way I have of driving off the spleen and\nregulating the circulation. Whenever I find myself growing grim about the mouth; whenever it is\na damp, drizzly November in my soul; whenever I find myself involuntarily pausing before coffin\nwarehouses, and bringing up the rear of every funeral I meet; and especially whenever my hypos\nget such an upper hand of me, that it requires a strong moral principle to prevent me from\ndeliberately stepping into the street, and methodically knocking people's hats off-then, I\naccount it high time to get to sea as soon as I can. This is my substitute for pistol and ball.\nWith a philosophical flourish Cato throws himself upon his sword; I quietly take to the ship.\nThere is nothing surprising in this. If they but knew it, almost all men in their degree, some\ntime or other, cherish very nearly the same feelings towards the ocean with me.\n\nThere now is your insular city of the Manhattoes, belted round by wharves as Indian isles by\ncoral reefs-commerce surrounds it with her surf. Right and left, the streets take you\nwaterward. Its extreme downtown is the battery, where that noble mole is washed by waves, and\ncooled by breezes, which a few hours previous were out of sight of land. Look at the crowds of\nwater-gazers there.\n\nCircumambulate the city of a dreamy Sabbath afternoon. Go from Corlears Hook to Coenties Slip,\nand from thence, by Whitehall, northward. What do you see?-Posted like silent sentinels all\naround the town, stand thousands upon thousands of mortal men fixed in ocean reveries. Some\nleaning against the spiles; some seated upon the pier-heads; some looking over the bulwarks of\nships from China; some high aloft in the rigging, as if striving to get a still better seaward\npeep. But these are all landsmen; of week days pent up in lath and plaster-tied to counters,\nnailed to benches, clinched to desks. How then is this? Are the green fields gone? What do they\nhere?\n\nBut look! here come more crowds, pacing straight for the water, and seemingly bound for a dive.\nStrange! Nothing will content them but the extremest limit of the land; loitering under the\nshady lee of yonder warehouses will not suffice. No. They must get just as nigh the water as\nthey possibly can without falling in. And there they stand-miles of them-leagues. Inlanders\nall, they come from lanes and alleys, streets and avenues-north, east, south, and west. Yet\nhere they all unite. Tell me, does the magnetic virtue of the needles of the compasses of all\nthose ships attract them thither?\n\nOnce more. Say you are in the country; in some high land of lakes. Take almost any path you\nplease, and ten to one it carries you down in a dale, and leaves you there by a pool in the\nstream. There is magic in it. Let the most absent-minded of men be plunged in his deepest\nreveries-stand that man on his legs, set his feet a-going, and he will infallibly lead you to\nwater, if water there be in all that region. Should you ever be athirst in the great American\ndesert, try this experiment, if your caravan happen to be supplied with a metaphysical\nprofessor. Yes, as every one knows, meditation and water are wedded for ever.\n\"\"\"\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.EPROM(i2)\n    d.write(0, text)        # Write the block of text starting at address 0\n    n = len(text)\n    rd = d.read(0, n)       # Read it back\n    print(rd.decode())               # Display it\n"
  },
  {
    "path": "python/samples/EDS-LED.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.LED(i2)\n    TEAL    = 0x008080\n    ORANGE  = 0xffa500\n    while 1:\n        time.sleep(1)\n        d.hex(TEAL, 3)\n        time.sleep(1)\n        d.hex(ORANGE, 3)\n"
  },
  {
    "path": "python/samples/EDS-MAGNET.py",
    "content": "import sys\nimport struct\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Magnet(i2)\n    while 1:\n        print(d.measurement())\n"
  },
  {
    "path": "python/samples/EDS-POT.py",
    "content": "import sys\nimport struct\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Pot(i2)\n\n    while 1:\n        percentage = d.rd(100)\n        r = d.raw()\n\n        print(\"%3d/100   raw=%3d\" % (percentage, r))\n        time.sleep(.05)\n"
  },
  {
    "path": "python/samples/EDS-REMOTE.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1], True)\n    i2.setspeed(400)\n\n    d = EDS.Remote(i2)\n\n    print(\"Press a remote button\")\n    while 1:\n        k = d.key()\n        if k is not None:\n            print(\"Key     : %r\" % k)\n        r = d.raw()\n        if r is not None:\n            (code, timestamp) = r\n            print(\"Raw code: %02x %02x %02x %02x (time %.2f)\" % (code[0], code[1], code[2], code[3], timestamp))\n        time.sleep(.25)\n"
  },
  {
    "path": "python/samples/EDS-TEMP.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Temp(i2)\n    for i in range(20):\n        celsius = d.read()\n        fahrenheit = celsius * 9/5 + 32\n        sys.stdout.write(\"%.1f C  %.1f F\\n\" % (celsius, fahrenheit))\n        time.sleep(.1)\n"
  },
  {
    "path": "python/samples/EDS-color-compass.py",
    "content": "\"\"\"\nDemo of a simple combination of parts from Electric Dollar Store:\n\n* MAGNET - 3-axis magnetometer\n* LED - RGB LED\n\nThis demo takes the compass direction, and uses it to set the LED's\ncolor. So as you move the module around, the color changes according to\nits direction.  There is a direction that is pure red, another that is\npure green, etc.\n\nhttps://electricdollarstore.com\n\n\"\"\"\nimport sys\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    magnet = EDS.Magnet(i2)\n    led = EDS.LED(i2)\n\n    while True:\n        (x, y, z) = magnet.measurement()\n        r = max(0, min(255, (x + 4000) // 32))\n        g = max(0, min(255, (y + 4000) // 32))\n        b = max(0, min(255, (z + 4000) // 32))\n        led.rgb(r, g, b)\n"
  },
  {
    "path": "python/samples/EDS-egg-timer.py",
    "content": "\"\"\"\nDemo of a simple combination of parts from Electric Dollar Store:\n\n* POT - potentiometer\n* DIG2 - 2-digit display\n* BEEP - piezo beeper\n\nThis demo simulates a kitchen egg-timer.\nTwisting the POT sets a countdown time in seconds,\nand after it's released the ticker starts counting.\nWhen it reaches \"00\" it flashes and beeps.\n\nhttps://electricdollarstore.com\n\n\"\"\"\nimport sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\ndef millis():\n    return int(time.time() * 1000)\n\ndef eggtimer(i2c):\n    pot = EDS.Pot(i2c)\n    beep = EDS.Beep(i2c)\n    digits = EDS.Dig2(i2c)\n\n    ticking = False\n    v0 = pot.rd(99)\n    next = millis() + 4000\n    digits.brightness(50)\n    t = 0\n\n    while True:\n        v = pot.rd(99)\n        if v0 != v:\n            if v0 < v:\n                beep.beep(2, 80)\n            else:\n                beep.beep(1, 117)\n            ticking = False\n            next = millis() + 1000\n            v0 = v\n            digits.brightness(255)\n            t = v\n        digits.dec(t)\n        if millis() > next and (t != 0):\n            ticking = True\n        if ticking and millis() > next:\n            next = millis() + 1000\n            beep.beep(1, 120)\n            if t:\n                t -= 1\n            else:\n                for i in range(21):\n                    digits.brightness(255)\n                    beep.beep(75, 107)\n                    time.sleep(.1)\n                    digits.brightness(0)\n                    time.sleep(.05)\n                digits.brightness(50)\n                ticking = False\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1], True)\n    eggtimer(i2)\n"
  },
  {
    "path": "python/samples/EDS-take-a-ticket.py",
    "content": "\"\"\"\nDemo of a simple combination of parts from Electric Dollar Store:\n\n* REMOTE - remote control receiver\n* DIG2 - 2-digit display\n* BEEP - piezo beeper\n\nThis demo runs a take-a-ticket display for a store or deli counter.\n\nIt shows 2-digit \"now serving\" number, and each time '+' is\npressed on the remote it increments the counter and\nmakes a beep, so the next customer can be served.\nPressing '-' turns the number back one.\n\nhttps://electricdollarstore.com\n\n\"\"\"\nimport sys\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    remote = EDS.Remote(i2)\n    beep   = EDS.Beep(i2)\n    dig2   = EDS.Dig2(i2)\n\n    counter = 0\n    while True:\n        k = remote.key()\n        if k == '+':\n            beep.beep(255, 90)\n            counter = (counter + 1) % 100\n        if k == '-':\n            beep.beep(100, 80)\n            counter = (counter - 1) % 100\n        dig2.dec(counter)\n"
  },
  {
    "path": "python/samples/bargraph.py",
    "content": "\"\"\"\nExample for Bi-Color (Red/Green) 24-Bar Bargraph, based on HT16K33.\nAvailable from Adafruit.\n\"\"\"\n\nimport sys\nimport time\nimport random\n\nfrom i2cdriver import I2CDriver\n\nfrom ht16k33 import HT16K33\n\nclass bargraph(HT16K33):\n    def set(self, pix):\n        rr = pix\n        def paint(r, i):\n            \"\"\" Paint pixel i \"\"\"\n            blk = i // 12\n            i %= 12\n            b = i // 4\n            m = 1 << ((i % 4) + 4 * blk)\n            r[b] |= m\n        red = [0,0,0]\n        grn = [0,0,0]\n        [paint(red, i) for i in range(24) if (pix[i] & 1)]\n        [paint(grn, i) for i in range(24) if (pix[i] & 2)]\n        self.load([red[0], grn[0], red[1], grn[1], red[2], grn[2]])\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d0 = bargraph(i2)\n\n    for i in range(60):\n        d0.set([random.choice((0,1,2,3)) for i in range(24)])\n        time.sleep(.08)\n"
  },
  {
    "path": "python/samples/bmp390.py",
    "content": "# SPDX-FileCopyrightText: 2018 Carter Nelson for Adafruit Industries\n#\n# SPDX-License-Identifier: MIT\n\n\"\"\"\n`adafruit_bmp3xx`\n====================================================\n\nCircuitPython driver from BMP388 Temperature and Barometric Pressure sensor.\n\n* Author(s): Carter Nelson\n\nImplementation Notes\n--------------------\n\n**Hardware:**\n\n* `Adafruit BMP388 - Precision Barometric Pressure and Altimeter\n  <https://www.adafruit.com/product/3966>`_ (Product ID: 3966)\n\n**Software and Dependencies:**\n\n* Adafruit CircuitPython firmware for the supported boards:\n  https://circuitpython.org/downloads\n\n* Adafruit's Bus Device library:\n  https://github.com/adafruit/Adafruit_CircuitPython_BusDevice\n\n\"\"\"\nimport struct\nimport time\n\n# from micropython import const\ndef const(x): return x\n\n__version__ = \"0.0.0-auto.0\"\n__repo__ = \"https://github.com/adafruit/Adafruit_CircuitPython_BMP3XX.git\"\n\n_BMP388_CHIP_ID = const(0x50)\n_BMP390_CHIP_ID = const(0x60)\n\n# pylint: disable=import-outside-toplevel\n_REGISTER_CHIPID = const(0x00)\n_REGISTER_STATUS = const(0x03)\n_REGISTER_PRESSUREDATA = const(0x04)\n_REGISTER_TEMPDATA = const(0x07)\n_REGISTER_CONTROL = const(0x1B)\n_REGISTER_OSR = const(0x1C)\n_REGISTER_ODR = const(0x1D)\n_REGISTER_CONFIG = const(0x1F)\n_REGISTER_CAL_DATA = const(0x31)\n_REGISTER_CMD = const(0x7E)\n\n_OSR_SETTINGS = (1, 2, 4, 8, 16, 32)  # pressure and temperature oversampling settings\n_IIR_SETTINGS = (0, 2, 4, 8, 16, 32, 64, 128)  # IIR filter coefficients\n\n\nclass BMP3XX:\n    \"\"\"Base class for BMP3XX sensor.\"\"\"\n\n    def __init__(self):\n        chip_id = self._read_byte(_REGISTER_CHIPID)\n        if chip_id not in (_BMP388_CHIP_ID, _BMP390_CHIP_ID):\n            raise RuntimeError(\"Failed to find BMP3XX! Chip ID 0x%x\" % chip_id)\n        self._read_coefficients()\n        self.reset()\n        self.sea_level_pressure = 1013.25\n        self._wait_time = 0.002  # change this value to have faster reads if needed\n        \"\"\"Sea level pressure in hPa.\"\"\"\n\n    @property\n    def pressure(self):\n        \"\"\"The pressure in hPa.\"\"\"\n        return self._read()[0] / 100\n\n    @property\n    def temperature(self):\n        \"\"\"The temperature in degrees Celsius\"\"\"\n        return self._read()[1]\n\n    @property\n    def altitude(self):\n        \"\"\"The altitude in meters based on the currently set sea level pressure.\"\"\"\n        # see https://www.weather.gov/media/epz/wxcalc/pressureAltitude.pdf\n        return 44307.7 * (1 - (self.pressure / self.sea_level_pressure) ** 0.190284)\n\n    @property\n    def pressure_oversampling(self):\n        \"\"\"The pressure oversampling setting.\"\"\"\n        return _OSR_SETTINGS[self._read_byte(_REGISTER_OSR) & 0x07]\n\n    @pressure_oversampling.setter\n    def pressure_oversampling(self, oversample):\n        if oversample not in _OSR_SETTINGS:\n            raise ValueError(\"Oversampling must be one of: {}\".format(_OSR_SETTINGS))\n        new_setting = self._read_byte(_REGISTER_OSR) & 0xF8 | _OSR_SETTINGS.index(\n            oversample\n        )\n        self._write_register_byte(_REGISTER_OSR, new_setting)\n\n    @property\n    def temperature_oversampling(self):\n        \"\"\"The temperature oversampling setting.\"\"\"\n        return _OSR_SETTINGS[self._read_byte(_REGISTER_OSR) >> 3 & 0x07]\n\n    @temperature_oversampling.setter\n    def temperature_oversampling(self, oversample):\n        if oversample not in _OSR_SETTINGS:\n            raise ValueError(\"Oversampling must be one of: {}\".format(_OSR_SETTINGS))\n        new_setting = (\n            self._read_byte(_REGISTER_OSR) & 0xC7 | _OSR_SETTINGS.index(oversample) << 3\n        )\n        self._write_register_byte(_REGISTER_OSR, new_setting)\n\n    @property\n    def filter_coefficient(self):\n        \"\"\"The IIR filter coefficient.\"\"\"\n        return _IIR_SETTINGS[self._read_byte(_REGISTER_CONFIG) >> 1 & 0x07]\n\n    @filter_coefficient.setter\n    def filter_coefficient(self, coef):\n        if coef not in _IIR_SETTINGS:\n            raise ValueError(\n                \"Filter coefficient must be one of: {}\".format(_IIR_SETTINGS)\n            )\n        self._write_register_byte(_REGISTER_CONFIG, _IIR_SETTINGS.index(coef) << 1)\n\n    def reset(self):\n        \"\"\"Perform a power on reset. All user configuration settings are overwritten\n        with their default state.\n        \"\"\"\n        self._write_register_byte(_REGISTER_CMD, 0xB6)\n\n    def _read(self):\n        \"\"\"Returns a tuple for temperature and pressure.\"\"\"\n        # OK, pylint. This one is all kinds of stuff you shouldn't worry about.\n        # pylint: disable=invalid-name, too-many-locals\n\n        # Perform one measurement in forced mode\n        self._write_register_byte(_REGISTER_CONTROL, 0x13)\n\n        # Wait for *both* conversions to complete\n        while self._read_byte(_REGISTER_STATUS) & 0x60 != 0x60:\n            time.sleep(self._wait_time)\n\n        # Get ADC values\n        data = self._read_register(_REGISTER_PRESSUREDATA, 6)\n        adc_p = data[2] << 16 | data[1] << 8 | data[0]\n        adc_t = data[5] << 16 | data[4] << 8 | data[3]\n\n        # datasheet, sec 9.2 Temperature compensation\n        T1, T2, T3 = self._temp_calib\n\n        pd1 = adc_t - T1\n        pd2 = pd1 * T2\n\n        temperature = pd2 + (pd1 * pd1) * T3\n\n        # datasheet, sec 9.3 Pressure compensation\n        P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 = self._pressure_calib\n\n        pd1 = P6 * temperature\n        pd2 = P7 * temperature ** 2.0\n        pd3 = P8 * temperature ** 3.0\n        po1 = P5 + pd1 + pd2 + pd3\n\n        pd1 = P2 * temperature\n        pd2 = P3 * temperature ** 2.0\n        pd3 = P4 * temperature ** 3.0\n        po2 = adc_p * (P1 + pd1 + pd2 + pd3)\n\n        pd1 = adc_p ** 2.0\n        pd2 = P9 + P10 * temperature\n        pd3 = pd1 * pd2\n        pd4 = pd3 + P11 * adc_p ** 3.0\n\n        pressure = po1 + po2 + pd4\n\n        # pressure in hPa, temperature in deg C\n        return pressure, temperature\n\n    def _read_coefficients(self):\n        \"\"\"Read & save the calibration coefficients\"\"\"\n        coeff = self._read_register(_REGISTER_CAL_DATA, 21)\n        # See datasheet, pg. 27, table 22\n        coeff = struct.unpack(\"<HHbhhbbHHbbhbb\", coeff)\n        # See datasheet, sec 9.1\n        # Note: forcing float math to prevent issues with boards that\n        #       do not support long ints for 2**<large int>\n        self._temp_calib = (\n            coeff[0] / 2 ** -8.0,  # T1\n            coeff[1] / 2 ** 30.0,  # T2\n            coeff[2] / 2 ** 48.0,\n        )  # T3\n        self._pressure_calib = (\n            (coeff[3] - 2 ** 14.0) / 2 ** 20.0,  # P1\n            (coeff[4] - 2 ** 14.0) / 2 ** 29.0,  # P2\n            coeff[5] / 2 ** 32.0,  # P3\n            coeff[6] / 2 ** 37.0,  # P4\n            coeff[7] / 2 ** -3.0,  # P5\n            coeff[8] / 2 ** 6.0,  # P6\n            coeff[9] / 2 ** 8.0,  # P7\n            coeff[10] / 2 ** 15.0,  # P8\n            coeff[11] / 2 ** 48.0,  # P9\n            coeff[12] / 2 ** 48.0,  # P10\n            coeff[13] / 2 ** 65.0,\n        )  # P11\n\n    def _read_byte(self, register):\n        \"\"\"Read a byte register value and return it\"\"\"\n        return self._read_register(register, 1)[0]\n\n    def _read_register(self, register, length):\n        \"\"\"Low level register reading, not implemented in base class\"\"\"\n        raise NotImplementedError()\n\n    def _write_register_byte(self, register, value):\n        \"\"\"Low level register writing, not implemented in base class\"\"\"\n        raise NotImplementedError()\n\n\nclass BMP3XX_I2C(BMP3XX):\n    \"\"\"Driver for I2C connected BMP3XX.\n\n    :param ~busio.I2C i2c: The I2C bus the BMP388 is connected to.\n    :param int address: I2C device address. Defaults to :const:`0x77`.\n                        but another address can be passed in as an argument\n\n    **Quickstart: Importing and using the BMP388**\n\n        Here is an example of using the :class:`BMP3XX_I2C` class.\n        First you will need to import the libraries to use the sensor\n\n        .. code-block:: python\n\n            import board\n            import adafruit_bmp3xx\n\n        Once this is done you can define your `board.I2C` object and define your sensor object\n\n        .. code-block:: python\n\n            i2c = board.I2C()   # uses board.SCL and board.SDA\n            bmp = adafruit_bmp3xx.BMP3XX_I2C(i2c)\n\n\n        Now you have access to the :attr:`temperature` and :attr:`pressure` attributes\n\n        .. code-block:: python\n\n            temperature = bmp.temperature\n            pressure = bmp.pressure\n\n    \"\"\"\n\n    def __init__(self, i2c, address=0x77):\n        from adafruit_bus_device import i2c_device\n\n        self._i2c = i2c_device.I2CDevice(i2c, address)\n        super().__init__()\n\n    def _read_register(self, register, length):\n        \"\"\"Low level register reading over I2C, returns a list of values\"\"\"\n        result = bytearray(length)\n        with self._i2c as i2c:\n            i2c.write(bytes([register & 0xFF]))\n            i2c.readinto(result)\n            return result\n\n    def _write_register_byte(self, register, value):\n        \"\"\"Low level register writing over I2C, writes one 8-bit value\"\"\"\n        with self._i2c as i2c:\n            i2c.write(bytes((register & 0xFF, value & 0xFF)))\n\n\nclass BMP3XX_SPI(BMP3XX):\n    \"\"\"Driver for SPI connected BMP3XX.\n\n    :param ~busio.SPI spi: SPI device\n    :param ~digitalio.DigitalInOut cs: Chip Select\n\n\n    **Quickstart: Importing and using the BMP388**\n\n        Here is an example of using the :class:`BMP3XX_SPI` class.\n        First you will need to import the libraries to use the sensor\n\n        .. code-block:: python\n\n            import board\n            import adafruit_bmp3xx\n            from digitalio import DigitalInOut, Direction\n\n        Once this is done you can define your `board.SPI` object and define your sensor object\n\n        .. code-block:: python\n\n            spi = board.SPI()\n            cs = DigitalInOut(board.D5)\n            bmp = adafruit_bmp3xx.BMP3XX_SPI(spi, cs)\n\n\n        Now you have access to the :attr:`temperature` and :attr:`pressure` attributes\n\n        .. code-block:: python\n\n            temperature = bmp.temperature\n            pressure = bmp.pressure\n\n    \"\"\"\n\n    def __init__(self, spi, cs):\n        from adafruit_bus_device import spi_device\n\n        self._spi = spi_device.SPIDevice(spi, cs)\n        # toggle CS low/high to put BMP3XX in SPI mode\n        with self._spi:\n            time.sleep(0.001)\n        super().__init__()\n\n    def _read_register(self, register, length):\n        \"\"\"Low level register reading over SPI, returns a list of values\"\"\"\n        result = bytearray(length)\n        with self._spi as spi:\n            # pylint: disable=no-member\n            spi.write(bytes((0x80 | register, 0x00)))\n            spi.readinto(result)\n        return result\n\n    def _write_register_byte(self, register, value):\n        \"\"\"Low level register writing over SPI, writes one 8-bit value\"\"\"\n        with self._spi as spi:\n            # pylint: disable=no-member\n            spi.write(bytes((register & 0x7F, value & 0xFF)))\n\n# \n\nfrom i2cdriver import I2CDriver\nimport sys\n\nclass BMP3XX_I2CDriver(BMP3XX):\n    \"\"\"Driver for I2CDriver connected BMP3XX.\n\n    :param ~busio.I2C i2c: The I2CDriver the BMP388 is connected to.\n    :param int address: I2C device address. Defaults to :const:`0x77`.\n                        but another address can be passed in as an argument\n\n    **Quickstart: Importing and using the BMP388**\n\n        Here is an example of using the :class:`BMP3XX_I2CDriver` class.\n        First you will need to import the libraries\n\n        .. code-block:: python\n\n            from i2cdriver import I2CDriver\n            import adafruit_bmp3xx\n\n        Once this is done you can connect to the I2CDriver and define the sensor object, e.g.\n\n        .. code-block:: python\n\n            i2c = I2CDriver(\"COM9\")\n            bmp = adafruit_bmp3xx.BMP3XX_I2C(i2c)\n\n        Now you have access to the :attr:`temperature` and :attr:`pressure` attributes\n\n        .. code-block:: python\n\n            temperature = bmp.temperature\n            pressure = bmp.pressure\n\n    \"\"\"\n\n    def __init__(self, i2c, address=0x77):\n        self.i2c = i2c\n        self.a = address\n        super().__init__()\n\n    def _read_register(self, register, length):\n        \"\"\"Low level register reading over I2C, returns a list of values\"\"\"\n        return self.i2c.regrd(self.a, register, length)\n\n    def _write_register_byte(self, register, value):\n        \"\"\"Low level register writing over I2C, writes one 8-bit value\"\"\"\n        self.i2c.regwr(self.a, register, value)\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = BMP3XX_I2CDriver(i2)\n    d.pressure_oversampling = 32\n    d.temperature_oversampling = 32\n    while 1:\n        (pressure, temperature) = d._read()\n        print(f\"Pressure: {pressure / 100:.2f} hPa\")\n        print(f\"Temperature: {temperature:.2f} C\")\n"
  },
  {
    "path": "python/samples/bno080.py",
    "content": "\"\"\"\nExample for BNO080 integrated IMU.\nAvailable from Sparkfun.\n\"\"\"\n\nimport sys\nimport serial\nimport time\nimport struct\nimport random\nimport math\n\nfrom i2cdriver import I2CDriver\ndef hexdump(s):\n    def toprint(c):\n        if 32 <= c < 127:\n            return chr(c)\n        else:\n            return \".\"\n    def hexline(s):\n        return (\" \".join([\"%02x\" % c for c in s]).ljust(49) +\n                \"|\" +\n                \"\".join([toprint(c) for c in s]).ljust(16) +\n                \"|\")\n    return \"\\n\".join([hexline(s[i:i+16]) for i in range(0, len(s), 16)])\n\nCHANNEL_COMMAND = 0\nCHANNEL_EXECUTABLE = 1\nCHANNEL_CONTROL = 2\nCHANNEL_REPORTS = 3\nCHANNEL_WAKE_REPORTS = 4\nCHANNEL_GYRO = 5\n\n# All the ways we can configure or talk to the BNO080, figure 34, page 36 reference manual\n# These are used for low level communication with the sensor, on channel 2\nSHTP_REPORT_COMMAND_RESPONSE = 0xF1\nSHTP_REPORT_COMMAND_REQUEST = 0xF2\nSHTP_REPORT_FRS_READ_RESPONSE = 0xF3\nSHTP_REPORT_FRS_READ_REQUEST = 0xF4\nSHTP_REPORT_PRODUCT_ID_RESPONSE = 0xF8\nSHTP_REPORT_PRODUCT_ID_REQUEST = 0xF9\nSHTP_REPORT_BASE_TIMESTAMP = 0xFB\nSHTP_REPORT_SET_FEATURE_COMMAND = 0xFD\n\n# All the different sensors and features we can get reports from\n# These are used when enabling a given sensor\nSENSOR_REPORTID_ACCELEROMETER = 0x01\nSENSOR_REPORTID_GYROSCOPE = 0x02\nSENSOR_REPORTID_MAGNETIC_FIELD = 0x03\nSENSOR_REPORTID_LINEAR_ACCELERATION = 0x04\nSENSOR_REPORTID_ROTATION_VECTOR = 0x05\nSENSOR_REPORTID_GRAVITY = 0x06\nSENSOR_REPORTID_GAME_ROTATION_VECTOR = 0x08\nSENSOR_REPORTID_GEOMAGNETIC_ROTATION_VECTOR = 0x09\nSENSOR_REPORTID_TAP_DETECTOR = 0x10\nSENSOR_REPORTID_STEP_COUNTER = 0x11\nSENSOR_REPORTID_STABILITY_CLASSIFIER = 0x13\nSENSOR_REPORTID_PERSONAL_ACTIVITY_CLASSIFIER = 0x1E\n\n# Record IDs from figure 29, page 29 reference manual\n# These are used to read the metadata for each sensor type\nFRS_RECORDID_ACCELEROMETER = 0xE302\nFRS_RECORDID_GYROSCOPE_CALIBRATED = 0xE306\nFRS_RECORDID_MAGNETIC_FIELD_CALIBRATED = 0xE309\nFRS_RECORDID_ROTATION_VECTOR = 0xE30B\n\n# Command IDs from section 6.4, page 42\n# These are used to calibrate, initialize, set orientation, tare etc the sensor\nCOMMAND_ERRORS = 1\nCOMMAND_COUNTER = 2\nCOMMAND_TARE = 3\nCOMMAND_INITIALIZE = 4\nCOMMAND_DCD = 6\nCOMMAND_ME_CALIBRATE = 7\nCOMMAND_DCD_PERIOD_SAVE = 9\nCOMMAND_OSCILLATOR = 10\nCOMMAND_CLEAR_DCD = 11\n\nCALIBRATE_ACCEL = 0\nCALIBRATE_GYRO = 1\nCALIBRATE_MAG = 2\nCALIBRATE_PLANAR_ACCEL = 3\nCALIBRATE_ACCEL_GYRO_MAG = 4\nCALIBRATE_STOP = 5\n\ndef normalize(v, tolerance=0.00001):\n    mag2 = sum(n * n for n in v)\n    if abs(mag2 - 1.0) > tolerance:\n        mag = math.sqrt(mag2)\n        v = tuple(n / mag for n in v)\n    return v\n\nclass BNO080:\n    def __init__(self, i2, a = 0x4b):\n        self.i2 = i2\n        self.a = a\n        self.seqno = [0] * 8\n\n        if 1:\n            self.sendPacket(CHANNEL_EXECUTABLE, [1])\n            time.sleep(0.150)\n            while True:\n                if not self.receivePacket():\n                    break\n\n        self.setFeature(SENSOR_REPORTID_ROTATION_VECTOR, 50000)\n\n    def read_quaternion(self):\n        while True:\n            r = self.receivePacket()\n            while r:\n                tag = r[0]\n                r = r[1:]\n                if tag == 0xfb:\n                    # print(\"Time %d\" % struct.unpack(\"I\", r[:4]))\n                    r = r[4:]\n                elif tag == SHTP_REPORT_COMMAND_RESPONSE:\n                    r = r[16:]\n                elif tag == 0xfc:\n                    # print(\"Get Feature Response\")\n                    r = r[17:]\n                elif tag == SENSOR_REPORTID_ACCELEROMETER:\n                    r = r[10:]\n                elif tag == SENSOR_REPORTID_ROTATION_VECTOR:\n                    (_,_,_,i,j,k,w,_) = struct.unpack(\"<BBBhhhhh\", r[:14])\n                    Q14 = 2 ** -14\n                    # print((i * Q14, j * Q14, k * Q14, w * Q14))\n                    return (w * Q14, i * Q14, j * Q14, k * Q14)\n                    r = r[14:]\n                else:\n                    assert 0, \"Bad tag %#x\" % tag\n\n    def setFeature(self, reportID, timeBetweenReports, specificConfig = 0):\n        p = struct.pack(\"<BBBHIII\",\n            SHTP_REPORT_SET_FEATURE_COMMAND,\n            reportID, \n            0, 0,\n            timeBetweenReports,\n            0, specificConfig)\n        # print(hexdump(p))\n\n        self.sendPacket(CHANNEL_CONTROL, p)\n\n    def sendPacket(self, channel, data):\n        # print('send on', channel, 'seq', self.seqno[channel])\n        self.i2.start(self.a, 0)\n        self.i2.write(struct.pack(\"<HBB\", 4 + len(data), channel, self.seqno[channel]))\n        self.i2.write(data)\n        self.i2.stop()\n        self.seqno[channel] += 1\n\n    def receivePacket(self):\n        if not self.i2.start(self.a, 1):\n            self.i2.stop()\n            return None\n        hdr = self.i2.read(4)\n        self.i2.stop()\n        length, channel, sequence = (struct.unpack(\"<HBB\", hdr))\n        length &= 0x7fff\n        # print()\n        # print('length', length)\n        # print('channel', channel)\n        # print('sequence', sequence)\n        if length == 0 or channel not in range(8):\n            return None\n\n        # self.seqno[channel] = sequence + 1\n\n        self.i2.start(self.a, 1)\n        data = self.i2.read(length)\n        self.i2.stop()\n        # print(len(data), repr(data))\n        # print(hexdump(data[4:]))\n        return data[4:]\n    \n    def showpacket(self, data):\n        tag = data[0]\n        print('tag', tag)\n        r = data[1:]\n        if tag == 0:\n            self.showpacket_00(r)\n        else:\n            assert False, \"Cannot show packet %02x\" % tag\n\n    def showpacket_00(self, ad):\n        while ad:\n            (T, L) = struct.unpack(\"BB\", ad[:2])\n            V = ad[2:2+L]\n            decoder = {\n            1:    lambda: (\"GUID\", struct.unpack(\"I\", V)),\n            2:    lambda: (\"MaxCargoPlusHeaderWrite\", struct.unpack(\"H\", V)),\n            3:    lambda: (\"MaxCargoPlusHeaderRead\", struct.unpack(\"H\", V)),\n            4:    lambda: (\"MaxTransferWrite\", struct.unpack(\"H\", V)),\n            5:    lambda: (\"MaxTransferRead\", struct.unpack(\"H\", V)),\n            6:    lambda: (\"NormalChannel\", struct.unpack(\"B\", V)),\n            7:    lambda: (\"WakeChannel\", struct.unpack(\"B\", V)),\n            8:    lambda: (\"AppName\", (V[:-1].decode(), )),\n            9:    lambda: (\"ChannelName\", (V[:-1].decode(), )),\n            0x80: lambda: (\"SHTP Version\", (V[:-1].decode(), )),\n            }.get(T, lambda: (str(T), (V,)))\n            (nm,f) = decoder()\n            print(\"%5d %-26s: %r\" % ((len(ad), nm, ) + f))\n            ad = ad[2+L:]\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = BNO080(i2)\n    while True:\n        print('quaternion:', d.read_quaternion())\n"
  },
  {
    "path": "python/samples/capture.py",
    "content": "\"\"\"\nExample showing how to use the capture feature.\n\"\"\"\n\nimport sys\nimport csv\n\nfrom i2cdriver import I2CDriver, START, STOP\n\nmsg = \"\"\"\nNow capturing traffic to\n    standard output (human-readable)\n    log.csv\nHit CTRL-C to leave capture mode\n\"\"\"\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    c = i2.capture_start()\n\n    sys.stderr.write(msg)\n\n    f = sys.stdout\n    with open('log.csv', 'w') as csvfile:\n        logcsv = csv.writer(csvfile)\n        try:\n            for token in c():\n                print(repr(token))          # Human readable to standard output\n                token.dump(logcsv, \"csv\")   # write to CSV\n        except KeyboardInterrupt:\n            print(\"\\nCapture finished\")\n    i2.capture_stop()\n"
  },
  {
    "path": "python/samples/go",
    "content": "python mag3110.py /dev/ttyUSB0\n# python EDS-take-a-ticket.py /dev/ttyUSB0\n# python i2cgui.py\n"
  },
  {
    "path": "python/samples/ht16k33.py",
    "content": "class HT16K33:\n    def __init__(self, i2, a = 0x70):\n        self.i2 = i2\n        self.a = a\n        self.command(0x21)      # Clock on\n        self.command(0x81)      # Display on\n        self.bright(15)\n        self.load([0] * 16)\n\n    def bright(self, n):\n        assert 0 <= n < 16\n        self.command(0xe0 + n)\n\n    def command(self, b):\n        assert(self.i2.start(self.a, 0))\n        assert(self.i2.write([b]))\n        self.i2.stop()\n\n    def load(self, b128):\n        self.i2.start(self.a, 0)\n        self.i2.write([0] + b128)\n        self.i2.stop()\n"
  },
  {
    "path": "python/samples/i2cgui.py",
    "content": "#!/usr/bin/env python\n\nimport time\nimport struct\nimport sys\nimport os\nimport re\nimport csv\nimport threading\nfrom functools import partial\n\nimport serial.tools.list_ports as slp\nimport serial\n\ntry:\n    import wx\n    import wx.lib.newevent as NE\nexcept ImportError:\n    print(\"i2cgui.py needs wxPython, but it wasn't found.\")\n    print(\"See https://www.wxpython.org/pages/downloads/\")\n    sys.exit(1)\n\nimport i2cdriver\n\npullup_vals = [\n \"disabled\",\n \"2.2K\",\n \"4.3K\",\n \"1.5K\",\n \"4.7K\",\n \"1.5K\",\n \"2.2K\",\n \"1.1K\",\n]\n\nPingEvent, EVT_PING = NE.NewEvent()\n\ndef ping_thr(win):\n    while True:\n        wx.PostEvent(win, PingEvent())\n        time.sleep(1)\n\nStopCapture = False\n\ndef capture_thr(sd, log_csv):\n    global StopCapture\n    c = sd.capture_start(True)\n    with open(log_csv, 'w') as csvfile:\n        logcsv = csv.writer(csvfile)\n        for token in c():\n            if token:\n                sd.dumpcount += 1\n                token.dump(logcsv, \"csv\")   # write to CSV\n            if StopCapture:\n                break\n    StopCapture = False\n    sd.capture_stop()\n\nclass HexTextCtrl(wx.TextCtrl):\n    def __init__(self, *args, **kwargs):\n        super(HexTextCtrl, self).__init__(*args, **kwargs)\n        self.Bind(wx.EVT_TEXT, self.on_text)\n    def on_text(self, event):\n        event.Skip()\n        selection = self.GetSelection()\n        value = self.GetValue().upper()\n        hex = \" 0123456789ABCDEF\"\n        value = \"\".join([c for c in value if c in hex])\n        self.ChangeValue(value)\n        self.SetSelection(*selection)\n\nclass MyDialog(wx.Dialog): \n   def __init__(self, parent, title): \n      super(MyDialog, self).__init__(parent, title = title, size = (250,150)) \n      panel = wx.Panel(self) \n      self.btn = wx.Button(panel, wx.ID_OK, label = \"ok\", size = (50,20), pos = (75,50))\n\nclass Frame(wx.Frame):\n    def __init__(self, preferred = None):\n\n        self.sd = None\n\n        def widepair(a, b):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.Add(a, 1, wx.LEFT)\n            r.AddStretchSpacer(prop=1)\n            r.Add(b, 1, wx.RIGHT)\n            return r\n\n        def pair(a, b):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.Add(a, 1, wx.LEFT)\n            r.Add(b, 0, wx.RIGHT)\n            return r\n\n        def rpair(a, b):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.Add(a, 0, wx.LEFT)\n            r.Add(b, 1, wx.RIGHT)\n            return r\n\n        def epair(a, b):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.Add(a, 1, wx.LEFT)\n            r.Add(b, 1, wx.RIGHT)\n            return r\n\n        def label(s):\n            return wx.StaticText(self, label = s)\n\n        def button(s, f):\n            r = wx.Button(self, label = s)\n            r.Bind(wx.EVT_BUTTON, f)\n            return r\n\n        def hbox(items):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            [r.Add(i, 0, wx.EXPAND) for i in items]\n            return r\n\n        def hcenter(i):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.AddStretchSpacer(prop=1)\n            r.Add(i, 2, wx.CENTER)\n            r.AddStretchSpacer(prop=1)\n            return r\n\n        def vbox(items):\n            r = wx.BoxSizer(wx.VERTICAL)\n            [r.Add(i, 0, wx.EXPAND) for i in items]\n            return r\n\n        wx.Frame.__init__(self, None, -1, \"I2CDriver\")\n\n        self.bold = self.GetFont().Bold()\n        self.addrfonts = [\n            self.GetFont(),\n            self.bold\n        ]\n\n        self.label_serial = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_voltage = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_current = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_temp = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_speed = wx.Choice(self, choices = [\"100\", \"400\"])\n        self.label_speed.Bind(wx.EVT_CHOICE, self.set_speed)\n        pupch = sorted(set(pullup_vals), reverse = True)\n        self.label_pullups = wx.Choice(self, choices = pupch)\n        self.label_pullups.Bind(wx.EVT_CHOICE, self.set_pullups)\n        self.label_sda = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_scl = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_uptime = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n\n        self.dynamic = [\n            self.label_voltage,\n            self.label_current,\n            self.label_temp,\n            self.label_speed,\n            self.label_pullups,\n            self.label_sda,\n            self.label_scl,\n            self.label_uptime\n        ]\n        [d.Enable(False) for d in self.dynamic]\n\n        self.Bind(EVT_PING, self.refresh)\n\n        def addrbutton(s):\n            r = wx.RadioButton(self, label = s)\n            r.Bind(wx.EVT_RADIOBUTTON, self.choose_addr)\n            return r\n        self.heat = {i:addrbutton(\"%02X\" % i) for i in range(0x08, 0x78)}\n        # Be careful here, GridSizer changed between wx 3.x and 4.x\n        devgrid = wx.GridSizer(8)\n        devgrid.SetHGap(4)\n        devgrid.SetVGap(6)\n        for i,l in sorted(self.heat.items()):\n            devgrid.Add(l)\n\n        self.monitor = False\n        self.ckM = wx.ToggleButton(self, label = \"Monitor mode\")\n        self.ckM.Bind(wx.EVT_TOGGLEBUTTON, self.check_m)\n\n        self.capture = False\n        self.ckC = wx.ToggleButton(self, label = \"Capture mode\")\n        self.ckC.Bind(wx.EVT_TOGGLEBUTTON, self.check_c)\n\n        self.txVal = HexTextCtrl(self, size=wx.DefaultSize, style=0)\n\n        self.rxVal = HexTextCtrl(self, size=wx.DefaultSize, style=wx.TE_READONLY)\n\n        txButton = wx.Button(self, label = \"write\")\n        txButton.Bind(wx.EVT_BUTTON, partial(self.write, self.txVal))\n\n        self.rxCount = wx.SpinCtrl(self, min = 1)\n        rxButton = wx.Button(self, label = \"read\")\n        rxButton.Bind(wx.EVT_BUTTON, self.read)\n\n        self.dev_widgets = [txButton, rxButton]\n\n        self.reset_button = button(\"i2c reset\", self.reset)\n\n        self.stop_button = button(\"stop\", self.stop)\n        self.stop_button.Enable(False)\n\n        self.allw = [self.ckM, self.reset_button]\n        [w.Enable(False) for w in self.allw]\n        self.devs = self.devices()\n        cb = wx.ComboBox(self, choices = sorted(self.devs.keys()), style = wx.CB_READONLY)\n        cb.Bind(wx.EVT_COMBOBOX, self.choose_device)\n\n        self.no_addr()\n        self.addr = None\n        [self.hot(i, False) for i in self.heat]\n        self.started = False\n\n        info = vbox([\n        pair(label(\"Serial\"),   self.label_serial),\n        pair(label(\"Voltage\"),  self.label_voltage),\n        pair(label(\"Current\"),  self.label_current),\n        pair(label(\"Temp.\"),    self.label_temp),\n        pair(label(\"SDA\"),      self.label_sda),\n        pair(label(\"SCL\"),      self.label_scl),\n        pair(label(\"Running\"),  self.label_uptime),\n        pair(label(\"Speed\"),    self.label_speed),\n        pair(label(\"Pullups\"),  self.label_pullups),\n        ])\n\n        vb = vbox([\n            label(\"\"),\n            hcenter(cb),\n            label(\"\"),\n            hcenter(epair(self.ckM, self.ckC)),\n            hcenter(self.reset_button),\n            label(\"\"),\n            hcenter(info),\n\n            label(\"\"),\n            hcenter(devgrid),\n            label(\"\"),\n            hcenter(pair(self.txVal, txButton)),\n            hcenter(pair(self.rxVal, hbox([self.rxCount, rxButton]))),\n            label(\"\"),\n            hcenter(self.stop_button),\n\n            label(\"\"),\n        ])\n        self.SetSizerAndFit(vb)\n        self.SetAutoLayout(True)\n\n        d1 = None\n        while (d1 is None) and (len(self.devs) > 0):\n            if preferred in self.devs:\n                d1 = preferred\n            else:\n                d1 = min(self.devs)\n            try:\n                self.connect(self.devs[d1])\n            except:\n                del self.devs[d1]\n                d1 = None\n        cb.Set(sorted(self.devs.keys()))\n        if d1 is not None:\n            cb.SetValue(d1)\n\n        t = threading.Thread(target=ping_thr, args=(self, ), daemon=True)\n        t.start()\n\n    def start(self, rw):\n        self.sd.start(self.addr, rw)\n        self.started = True\n        self.stop_button.Enable(True)\n\n    def stop(self, e = None):\n        self.sd.stop()\n        self.started = False\n        self.stop_button.Enable(False)\n\n    def reset(self, e = None):\n        self.sd.reset()\n        self.started = False\n\n    def write(self, htc, e):\n        if (self.addr is not None) and htc.GetValue():\n            vv = [int(c,16) for c in htc.GetValue().split()]\n            self.start(0)\n            self.sd.write(vv)\n\n    def read(self, e):\n        n = int(self.rxCount.GetValue())\n        if self.addr is not None:\n            self.start(1)\n            r = self.sd.read(n)\n            bb = struct.unpack(\"B\"*n, r)\n            self.rxVal.SetValue(\" \".join([\"%02X\" % b for b in bb]))\n            self.stop()\n\n    def devices(self):\n        if sys.platform in ('win32', 'cygwin'):\n            return {pi.device: pi.device for pi in slp.comports()}\n        elif sys.platform == 'darwin':\n            devdir = \"/dev/\"\n            pattern = \"^cu.usbserial-(.*)\"\n        else:\n            devdir = \"/dev/serial/by-id/\"\n            pattern = \"^usb-FTDI_FT230X_Basic_UART_(........)-\"\n\n        if not os.access(devdir, os.R_OK):\n            return {}\n        devs = os.listdir(devdir)\n        def filter(d):\n            m = re.match(pattern, d)\n            if m:\n                return (m.group(1), devdir + d)\n        seldev = [filter(d) for d in devs]\n        return dict([d for d in seldev if d])\n\n    def connect(self, dev):\n        self.sd = i2cdriver.I2CDriver(dev)\n        [w.Enable(True) for w in self.allw]\n        self.refresh(None)\n\n    def refresh(self, e):\n        if self.sd and not self.monitor and not self.capture:\n            lowhigh = [\"LOW\", \"HIGH\"]\n            self.sd.getstatus()\n            self.label_serial.SetLabel(self.sd.serial)\n            self.label_voltage.SetLabel(\"%.2f V\" % self.sd.voltage)\n            self.label_current.SetLabel(\"%d mA\" % self.sd.current)\n            self.label_temp.SetLabel(\"%.1f C\" % self.sd.temp)\n            self.label_speed.SetSelection({100:0, 400:1}[self.sd.speed])\n            self.label_pullups.SetStringSelection(pullup_vals[self.sd.pullups & 7])\n\n            self.label_sda.SetLabel(lowhigh[self.sd.sda])\n            self.label_scl.SetLabel(lowhigh[self.sd.scl])\n            days = self.sd.uptime // (24 * 3600)\n            rem = self.sd.uptime % (24 * 3600)\n            hh = rem // 3600\n            mm = (rem // 60) % 60\n            ss = rem % 60;\n            self.label_uptime.SetLabel(\"%d:%02d:%02d:%02d\" % (days, hh, mm, ss))\n            [d.Enable(True) for d in self.dynamic]\n\n            if not self.started and (self.sd.sda == 1) and (self.sd.scl == 1):\n                devs = self.sd.scan(True)\n                for i,l in self.heat.items():\n                    self.hot(i, i in devs)\n\n    def choose_device(self, e):\n        self.connect(self.devs[e.EventObject.GetValue()])\n\n    def no_addr(self):\n        [w.Enable(False) for w in self.dev_widgets]\n\n    def choose_addr(self, e):\n        o = e.EventObject\n        v = o.GetValue()\n        if v:\n            self.addr = int(o.GetLabel(), 16)\n            [w.Enable(True) for w in self.dev_widgets]\n\n    def check_m(self, e):\n        self.monitor = e.EventObject.GetValue()\n        self.sd.monitor(self.monitor)\n        [d.Enable(not self.monitor) for d in self.dynamic]\n        if self.monitor:\n            [self.hot(i, False) for i in self.heat]\n\n    def check_c(self, e):\n        global StopCapture\n        cm = e.EventObject.GetValue()\n        # self.sd.monitor(self.monitor)\n        if cm:\n            openFileDialog = wx.FileDialog(self, \"CSV dump to file\", \"\", \"\", \n                  \"CSV files (*.csv)|*.csv\", \n                         wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)\n            openFileDialog.ShowModal()\n            self.log_csv = openFileDialog.GetPath()\n            openFileDialog.Destroy()\n            if self.log_csv == u\"\":\n                e.EventObject.SetValue(False)\n                return\n            StopCapture = False\n            self.sd.dumpcount = 0\n            t = threading.Thread(target=capture_thr, args=(self.sd, self.log_csv))\n            t.setDaemon(True)\n            t.start()\n        else:\n            StopCapture = True\n            wx.MessageBox(\"Capture finished. %d events written to \\\"%s\\\"\" % (self.sd.dumpcount, self.log_csv), \"Message\", wx.OK | wx.ICON_INFORMATION)\n            while StopCapture:\n                pass\n        [d.Enable(not cm) for d in self.dynamic]\n        if cm:\n            [self.hot(i, False) for i in self.heat]\n        self.capture = cm\n\n    def set_speed(self, e):\n        w = e.EventObject\n        s = int(w.GetString(w.GetCurrentSelection()))\n        self.sd.setspeed(s)\n\n    def set_pullups(self, e):\n        w = e.EventObject\n        s = w.GetString(w.GetCurrentSelection())\n        code = pullup_vals.index(s)\n        self.sd.setpullups(code | (code << 3))\n\n    def hot(self, i, s):\n        l = self.heat[i]\n        if s:\n            l.SetForegroundColour((0,0,0))\n            l.SetFont(self.addrfonts[1])\n        else:\n            l.SetForegroundColour((160,) * 3)\n            l.SetFont(self.addrfonts[0])\n        l.Enable(s)\n        if i == self.addr:\n            [w.Enable(s) for w in self.dev_widgets]\n\nif __name__ == '__main__':\n    app = wx.App(0)\n    try:\n        f = Frame(*sys.argv[1:])\n        f.Show(True)\n        app.MainLoop()\n    except:\n        import sys, traceback\n        xc = traceback.format_exception(*sys.exc_info())\n        dlg = wx.MessageDialog(None, \"\".join(xc), \"i2cgui Error Trap (%s)\" % i2cdriver.__version__, wx.OK | wx.ICON_WARNING)\n        dlg.ShowModal()\n        dlg.Destroy()\n"
  },
  {
    "path": "python/samples/lcd1602.py",
    "content": "\"\"\"\nExample for LCD1602, in which a PCF8574 I/O expander drives a HD44780.\nAvailable from various vendors.\n\nNote that the modules require a 5V VCC; they don't function using the\n3.3V VCC of I2CDriver.\n\n\"\"\"\n\nimport sys\nimport time\nimport struct\n\nfrom i2cdriver import I2CDriver\n\nclass HD44780:\n\n    def __init__(self, i2, a = 0x27):\n        self.i2 = i2\n        self.a = a\n\n        self.nybble(3)  # Enter 4-bit mode\n        self.nybble(3)\n        self.nybble(3)\n        self.nybble(2)\n\n        self.cmd(0x28)  # 2 lines, 5x8 dot matrix\n        self.cmd(0x0c)  # display on\n        self.cmd(0x06)  # inc cursor to right when writing and don't scroll\n        self.cmd(0x80)  # set cursor to row 1, column 1\n\n        self.clear()\n\n    def clear(self):\n        \"\"\" Clear the screen \"\"\"\n        self.cmd(0x01)\n        time.sleep(.003)\n\n    def show(self, line, text):\n        \"\"\" Send string to LCD. Newline wraps to second line\"\"\"\n        self.cmd({0:0x80, 1:0xc0}[line])\n        for c in text:\n            self.data(ord(c))\n\n    def cmd(self, b):\n        self.nybble(b >> 4)\n        self.nybble(b & 0xf)\n        time.sleep(.000053)\n\n    def data(self, b):\n        self.nybble(b >> 4, 1)\n        self.nybble(b & 0xf, 1)\n\n    # The PCF8574 outputs are connected to the HD44780\n    # pins as follows:\n\n    # P0    RS (0: command, 1: data)\n    # P1    R/W (0: write, 1: read)\n    # P2    Enable/CLK\n    # P3    Backlight control\n    # P4-7  D4-D7\n\n    def nybble(self, n, rs = 0):\n        bl = 8 | rs\n        self.port(\n            bl | (n << 4),\n            bl | (n << 4) | 4,\n            bl | (n << 4)\n        )\n\n    def port(self, *bb):\n        # Write bytes to port, setting the PCF8574 outputs\n        self.i2.start(self.a, 0)\n        self.i2.write(bb)\n        self.i2.stop()\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    d = HD44780(i2)\n    d.show(0, \"HELLO WORLD\")\n    time.sleep(.5)\n    d.show(1, \"0123456789012345\")\n"
  },
  {
    "path": "python/samples/led8x8.py",
    "content": "\"\"\"\nExample for 8x8 LED Matrix modules, based on HT16K33.\nAvailable from multiple vendors.\n\"\"\"\n\nimport sys\nimport time\n\nfrom i2cdriver import I2CDriver\n\nfont = open(\"cp437-8x8\", \"rb\").read()\n\nfrom ht16k33 import HT16K33\n\nclass led8x8(HT16K33):\n    def image(self, bb):\n        \"\"\" Set the pixels to the bytes bb \"\"\"\n        def swiz(b):\n            bs = [str((b >> n) & 1) for n in range(8)]\n            return int(bs[7] + bs[0] + bs[1] + bs[2] + bs[3] + bs[4] + bs[5] + bs[6], 2)\n        bb = [swiz(b) for b in bb]\n        self.load([b for s in zip(bb,bb) for b in s])\n\n    def char(self, c):\n        \"\"\" Set the pixels to character c \"\"\"\n        n = ord(c)\n        ch = font[n * 8:n * 8 + 8]\n        self.image(ch)\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = led8x8(i2)\n\n    for c in \"I2C\":\n        d.char(c)\n        time.sleep(1)\n"
  },
  {
    "path": "python/samples/mag3110.py",
    "content": "\"\"\"\nExample Xtrinsic MAG3110 Three-Axis Digital Magnetometer\nBreakout available from Sparkfun.\n\"\"\"\n\nimport sys\nimport struct\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nclass MAG3110:\n    def __init__(self, i2, a = 0x0e):\n        self.i2 = i2\n        self.a = a\n        self.i2.regwr(self.a, 0x10, 0b00000001) # CTRL_REG1. ACTIVE mode, 80 Hz conversions\n\n    def rd(self):\n        \"\"\" Read the measurement STATUS_REG and OUT_X,Y,Z \"\"\"\n        return self.i2.regrd(self.a, 0x00, \">B3h\")\n\n    def measurement(self):\n        \"\"\" Wait for a new field reading, return the (x,y,z) \"\"\"\n        while True:\n            (status, x, y, z) = self.rd()\n            if status & 8:\n                return (x, y, z)\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    i2.scan()\n\n    d = MAG3110(i2)\n    while 1:\n        print(d.measurement())\n"
  },
  {
    "path": "python/samples/mux.py",
    "content": "import sys\nfrom i2cdriver import I2CDriver, EDS\n\n# Using a TCA9548A Low-Voltage 8-Channel I2C Switch\n# Three LM75B temperature sensors are connected to \n# channels 0,1 and 2. All are at address 0x48.\n\nclass Mux:\n    def __init__(self, i2, a = 0x70):\n        self.i2 = i2\n        self.a = a\n\n    def select(self, n):\n        assert n in range(8)\n        self.i2.start(self.a, 0)\n        self.i2.write([1 << n])\n        self.i2.stop()\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    mux = Mux(i2)\n    sensors = [\n        (0, EDS.Temp(i2)),\n        (1, EDS.Temp(i2)),\n        (2, EDS.Temp(i2))\n        ]\n\n    # Reset all 8 channels\n    for chan in range(8):\n        mux.select(chan)\n        i2.reset()\n\n    def read(chan, dev):\n        mux.select(chan)\n        celsius = dev.read()\n        return celsius\n\n    while 1:\n        print(\" \".join([\"%.1f\" % read(chan, dev) for chan,dev in sensors]))\n"
  },
  {
    "path": "python/samples/oled.py",
    "content": "\"\"\"\nExample for 128X64OLED Module \nAvailable from multiple vendors, e.g. DIYMall\n\nThis example loads the I2CDriver logo onto the display,\nand flashes it four times.\n\n\"\"\"\n\nimport sys\nimport time\n\nfrom PIL import Image, ImageChops\n\nfrom i2cdriver import I2CDriver\n\nSETCONTRAST         = 0x81\nDISPLAYALLON_RESUME = 0xA4\nDISPLAYALLON        = 0xA5\nNORMALDISPLAY       = 0xA6\nINVERTDISPLAY       = 0xA7\nDISPLAYOFF          = 0xAE\nDISPLAYON           = 0xAF\nSETDISPLAYOFFSET    = 0xD3\nSETCOMPINS          = 0xDA\nSETVCOMDETECT       = 0xDB\nSETDISPLAYCLOCKDIV  = 0xD5\nSETPRECHARGE        = 0xD9\nSETMULTIPLEX        = 0xA8\nSETLOWCOLUMN        = 0x00\nSETHIGHCOLUMN       = 0x10\nSETSTARTLINE        = 0x40\nMEMORYMODE          = 0x20\nCOLUMNADDR          = 0x21\nPAGEADDR            = 0x22\nCOMSCANINC          = 0xC0\nCOMSCANDEC          = 0xC8\nSEGREMAP            = 0xA0\nCHARGEPUMP          = 0x8D\n\nclass OLED:\n    def __init__(self, i2, a = 0x3c):\n        self.i2 = i2\n        self.a = a\n\n        self.command(DISPLAYOFF)\n        self.command(SETDISPLAYCLOCKDIV, 0x80)       # the suggested ratio 0x80\n\n        self.command(SETMULTIPLEX, 0x3f)\n\n        self.command(SETDISPLAYOFFSET, 0)\n        self.command(SETSTARTLINE | 0x0)\n        self.command(CHARGEPUMP, 0x14)\n        self.command(MEMORYMODE, 0)\n        self.command(SEGREMAP | 0x1)\n        self.command(COMSCANDEC)\n\n        self.command(SETCOMPINS, 0x12)\n        self.command(SETCONTRAST, 0xcf)\n\n        self.command(SETVCOMDETECT, 0x40)\n        self.command(DISPLAYALLON_RESUME)\n        self.command(NORMALDISPLAY)\n\n        self.im = Image.new(\"1\", (128,64), 1)\n        self.cls()\n\n    def command(self, *c):\n        assert(self.i2.start(self.a, 0))\n        assert(self.i2.write((0,) + c))\n        self.i2.stop()\n\n    def image(self, im):\n        for p in range(8):\n            pr = self.im.crop((0,8*p,128,8*p+8)).transpose(Image.ROTATE_270)\n            bb = im.crop((0,8*p,128,8*p+8)).transpose(Image.ROTATE_270)\n            diff = ImageChops.difference(pr, bb)\n            di = diff.getbbox()\n            if di is not None:\n                (x0, y0, x1, y1) = di\n                self.command(COLUMNADDR)\n                self.command(y0)\n                self.command(y1 - 1)\n                self.command(PAGEADDR)\n                self.command(p)\n                self.command(p + 1)\n                self.i2.start(self.a, 0)\n                self.i2.write([0x40])\n                self.i2.write(bb.tobytes()[y0:y1])\n                self.i2.stop()\n        self.im = im\n        self.command(DISPLAYON)\n\n    def cls(self):\n        self.image(Image.new(\"1\", (128,64), 0))\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    d = OLED(i2)\n\n    d.image(Image.open(\"logo.png\").convert(\"1\"))\n\n    for i in range(4):\n        d.command(INVERTDISPLAY)\n        time.sleep(.5)\n        d.command(NORMALDISPLAY)\n        time.sleep(.5)\n"
  },
  {
    "path": "python/samples/pca9685.py",
    "content": "import sys\nimport time\nimport random\nimport struct\n\nfrom i2cdriver import I2CDriver\n\nclass PCA9685:\n    def __init__(self, i2, a = 0x40):\n        self.i2 = i2\n        self.a = a\n        self.i2.regwr(self.a, 0x00, 0x20)  # auto-increment mode\n\n    def set(self, channel, t_on, t_off):\n        assert 0 <= channel < 16\n        assert 0 <= t_on <= 0x1000\n        assert 0 <= t_off <= 0x1000\n        self.i2.regwr(self.a,\n                       0x06 + 4 * channel,\n                       struct.pack(\"<HH\", t_on, t_off))\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    print(i2.scan())\n    d = PCA9685(i2)\n\n    for channel in range(16):\n        d.set(channel, 4096, 0)\n\n    while True:\n        for channel in range(16):\n            d.set(channel, random.randrange(4096), random.randrange(4096))\n            time.sleep(.3)\n"
  },
  {
    "path": "python/samples/qwiic-joystick.py",
    "content": "\"\"\"\nExample for Qwiic Joystick\nAvailable from Sparkfun.\n\"\"\"\n\nimport sys\nimport time\nimport struct\n\nfrom i2cdriver import I2CDriver\n\nclass Joystick:\n    def __init__(self, i2, a = 0x20):\n        self.i2 = i2\n        self.a = a\n\n    def axis(self, i):\n        self.i2.start(self.a, 0)\n        self.i2.write([i])\n        self.i2.stop()              # Note: their firmware cannot handle an I2C restart\n        self.i2.start(self.a, 1)\n        (r,) = struct.unpack(\">H\", self.i2.read(2))\n        self.i2.stop()\n        return r\n\n    def read(self):\n        \"\"\"\n        return the joystick (x,y) position. The range is 0-1023.\n        The center position of the joystick is approximately 512.\n        \"\"\"\n\n        # Note: their firmware requires two separate reads\n\n        return (self.axis(0), self.axis(2))\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = Joystick(i2)\n\n    while 1:\n        print(d.read())\n        time.sleep(.1)\n"
  },
  {
    "path": "python/samples/qwiic-keypad.py",
    "content": "\"\"\"\nExample for Qwiic Keypad\nAvailable from Sparkfun.\n\"\"\"\n\nimport sys\nimport time\nimport struct\n\nfrom i2cdriver import I2CDriver\n\nclass Keypad:\n    def __init__(self, i2, a = 0x4b):\n        self.i2 = i2\n        self.a = a\n\n    def read_ts(self):\n        \"\"\"\n        Return (key, timestamp) if pressed, or None.\n        \"\"\"\n\n        self.i2.start(self.a, 1)\n        (k, age_in_ms) = struct.unpack(\">BH\", self.i2.read(3))\n        self.i2.stop()\n        if k != 0:\n            return (chr(k), time.time() - age_in_ms * .001)\n        else:\n            return None\n\n    def read(self):\n        r = self.read_ts()\n        if r:\n            return r[0]\n        else:\n            return None\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = Keypad(i2)\n\n    while 1:\n        print(d.read())\n        time.sleep(.1)\n"
  },
  {
    "path": "python/samples/read-temperature.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, LM75B\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = LM75B(i2)\n    for i in range(100):\n        print(d.read())\n        time.sleep(.1)\n"
  },
  {
    "path": "python/samples/touch.py",
    "content": "\"\"\"\nExample for MPR121 Capacitive Touch Sensor.\nAvailable from multiple vendors.\n\"\"\"\n\nimport sys\nimport serial\nimport time\nimport struct\nimport random\n\nfrom i2cdriver import I2CDriver\n\nclass MPR121:\n    def __init__(self, i2, a = 0x5a):\n        self.i2 = i2\n        self.a = a\n        self.i2.regwr(self.a, 0x5e, 0x0c)\n\n    def read(self):\n        \"\"\" Return 12 touch detection flags \"\"\"\n        (tb,) = struct.unpack(\"<H\", self.i2.regrd(0x5a, 0, 2))\n        return [((tb >> i) & 1) for i in range(12)]\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    i2.reset()\n\n    d = MPR121(i2)\n    while 1:\n        print(d.read())\n        time.sleep(.1)\n"
  },
  {
    "path": "python/samples/wii.py",
    "content": "import sys\nimport struct\nfrom i2cdriver import I2CDriver\n\n#\n# For details see\n# https://wiibrew.org/wiki/Wiimote/Extension_Controllers\n#\n\nclass Wii:\n    def __init__(self, i2, a = 0x52):\n        self.i2 = i2\n        self.a = a\n\n        self.i2.regwr(self.a, 0xf0, 0x55)\n        self.i2.regwr(self.a, 0xfb, 0x00)\n        idcode = (self.rdreg(0xfa, 6))\n        \n        devices = {\n            bytes([0x01, 0x00, 0xa4, 0x20, 0x01, 0x01]): self.wii_classic_pro,\n        }\n        if idcode in devices:\n            self.rd = devices[idcode]\n        else:\n            raise IOError(\"Unrecognised device %r\" % idcode)\n\n    def rdreg(self, addr, n):\n        self.i2.start(self.a, 0)\n        self.i2.write([addr])\n        self.i2.stop()\n\n        self.i2.start(self.a, 1)\n        r = self.i2.read(n)\n        self.i2.stop()\n        return r\n\n    def wii_classic_pro(self):\n        b = self.rdreg(0x00, 6)\n        r4 = '. brt b+ bh b- blt bdd bdr'.split()\n        r = {id: 1 & (~b[4] >> i) for i,id in enumerate(r4)}\n        r5 = 'bdu bdl bzr bx ba by bb bzl'.split()\n        r.update({id: 1 & (~b[5] >> i) for i,id in enumerate(r5)})\n        r.update({\n            'lx' : b[0] & 63,\n            'ly' : b[1] & 63,\n            'rx' : (((b[0] >> 6) & 3) << 3) |\n                   (((b[1] >> 6) & 3) << 1) |\n                   (((b[2] >> 7) & 1)),\n            'ry' : b[2] & 31,\n            'lt' : (((b[2] >> 5) & 3) << 3) |\n                   (((b[3] >> 5) & 7)),\n            'rt' : b[3] & 31,\n        })\n        return r\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    i2.scan()\n\n    d = Wii(i2)\n    while True:\n        print(d.rd())\n"
  },
  {
    "path": "python/setup.py",
    "content": "# coding=utf-8\nfrom setuptools import setup\n\nLONG = \"\"\"\\\nI2CDriver is a tool for controlling, monitoring and capturing I2C from your PC's USB port. It connects as a standard USB serial device, so there are no drivers to install.\"\"\"\n\nfor l in open(\"i2cdriver.py\", \"rt\"):\n    if l.startswith(\"__version__\"):\n        exec(l)\n\nsetup(name='i2cdriver',\n      version=__version__,\n      author='James Bowman',\n      author_email='jamesb@excamera.com',\n      url='http://i2cdriver.com',\n      description='I2CDriver is a desktop I2C interface',\n      long_description=LONG,\n      license='GPL',\n      install_requires=['pyserial'],\n      py_modules = [\n        'i2cdriver',\n        'EDS',\n      ],\n      scripts=['samples/i2cgui.py'],\n      project_urls={\n        'Documentation': 'https://i2cdriver.readthedocs.io/en/latest/',\n      }\n      )\n"
  },
  {
    "path": "python/tests/accept.py",
    "content": "from __future__ import print_function, division\n\nimport sys\nimport time\nimport struct\nimport random\n\nimport i2cdriver\nimport unittest\n\nDUT = \"dut\" # grn0\nAGG = \"agg\" # blk1\n\ndef bit(b, x):\n    return 1 & (x >> b)\n\ndef byte(x):\n    return struct.pack(\"B\", x)\n\nclass TestDUT(unittest.TestCase):\n    def setUp(self):\n        self.i2 = i2cdriver.I2CDriver(DUT)\n        self.ag = i2cdriver.I2CDriver(AGG)\n\n    def init(self):\n        self.i2.reboot()\n        self.i2.setspeed(400)\n        self.i2.getstatus()\n        return self.i2\n\n    def lm75_read(self, i, reg):\n        (tr,) = struct.unpack(\">h\", i.regrd(0x48, reg, 2))\n        return tr\n\n    def lm75_slow_read(self, i, reg):\n        i.start(0x48, 0)\n        i.write(struct.pack(\"B\", reg))\n        i.start(0x48, 1)\n        (tr,) = struct.unpack(\">h\", i.read(2))\n        i.stop()\n        return tr\n\n    def lm75_write(self, i, reg, v):\n        i.start(0x48, 0)\n        i.write(struct.pack(\">Bh\", reg, v))\n        i.stop()\n\n    def stack0(self):\n        self.s0 = self.i2.introspect()\n\n    def stacksame(self):\n        s1 = self.i2.introspect()\n        for i in (\"ds\", \"sp\"):\n            self.assertEqual(self.s0[i], s1[i])\n\n    def confirm(self):\n        # Basic i2c confirmation\n        self.assertEqual(self.lm75_read(self.i2, 2), 0x4b00)\n\n    def confirm_sampling(self):\n        # Check that analog sampling is happening\n        econvs = {\n            \"i2cdriver1\" : {0,1,2},\n            \"i2cdriverm\" : {0}\n        }[self.i2.product]\n        s = set()\n        while len(s) < len(econvs):\n            s.add(self.i2.introspect()[\"convs\"])\n        self.assertEqual(s, econvs)\n\n    def test_temperature(self):\n        # Confirm onboard temperature sensor is reasonable and changing\n        i2 = self.i2\n        i2.getstatus()\n        onboard = i2.temp\n        external = (self.lm75_read(i2, 0) >> 5) * 0.125\n        self.assertTrue(abs(onboard - external) < 10)\n\n        # Wait up to 10 seconds for temperature to change\n        t0 = time.time()\n        while onboard == i2.temp:\n            i2.getstatus()\n            self.assertTrue(time.time() < (t0 + 10))\n\n    def test_coldstart(self):\n        i2 = self.init()\n        s = i2.introspect()\n        self.assertEqual(i2.scl, 1)\n        self.assertEqual(i2.sda, 1)\n\n    def test_scan(self):\n        i2 = self.init()\n        def det(a):\n            r = i2.start(a, 0)\n            i2.stop()\n            return r\n        scan = [det(a) for a in range(128)]\n        e = [(i == 0x48) for i in range(128)]\n        self.assertEqual(scan, e)\n\n    def test_lm75_reg(self):\n        i2 = self.i2\n        self.stack0()\n        vals = (0, -128, 0x7f80)\n        for a in vals:\n            self.lm75_write(i2, 2, a)\n            for b in vals:\n                self.lm75_write(i2, 3, b)\n                self.assertEqual(self.lm75_read(i2, 2), a)\n                self.assertEqual(self.lm75_read(i2, 3), b)\n                self.assertEqual(self.lm75_slow_read(i2, 2), a)\n                self.assertEqual(self.lm75_slow_read(i2, 3), b)\n        self.lm75_write(i2, 2, 0x4b00)\n        self.lm75_write(i2, 3, 0x5000)\n        self.assertEqual(self.lm75_read(i2, 2), 0x4b00)\n        self.assertEqual(self.lm75_read(i2, 3), 0x5000)\n        self.stacksame()\n\n    def test_regrd256(self):\n        i2 = self.i2\n        reg = 3\n        self.lm75_write(i2, reg, 0x7480)\n        for n in (127, 128, 129):\n            self.assertEqual(i2.regrd(0x48, reg, \">\" + str(n) + \"h\"), (0x7480,) * n)\n\n    def test_regwr(self):\n        i2c = self.i2\n        sa0 = 0x48\n        wdata = []\n        lcnt = 16\n        for i in range(lcnt):\n            x = random.randint(0, 255)\n            wdata.append(x)\n        # print(wdata)\n        i2c.regwr(sa0, 0x00, wdata)\n        time.sleep(0.5)\n        x = i2c.regrd(sa0, 0x00, \"<16B\")\n        # print(x)\n\n    def test_setspeed(self):\n        i2 = self.init()\n        self.stack0()\n        for s in (100, 400, 400, 100, 400):\n            i2.setspeed(s)\n            i2.getstatus()\n            self.assertEqual(i2.speed, s)\n            self.confirm()\n        self.stacksame()\n        \n    def test_cap_idle(self):\n        i2 = self.init()\n        c = i2.capture_start()\n        t0 = time.time()\n        d = i2.ser.read(15)\n        t1 = time.time()\n        i2.capture_stop()\n\n        self.assertEqual(d, b'\\x00' * 15)\n        self.assertTrue(0.4 < (t1 - t0) < 0.6)\n\n    def test_cap_0(self):\n        def test_0():\n            self.lm75_write(ag, 2, 0x4b00)\n            return [\n                i2cdriver.START(0x48, 0, 1),\n                i2cdriver.BYTE(0x02, 0, True),\n                i2cdriver.BYTE(0x4b, 0, True),\n                i2cdriver.BYTE(0x00, 0, True),\n                i2cdriver.STOP()\n            ]\n        def test_1():\n            self.lm75_slow_read(ag, 2)\n            return [\n                i2cdriver.START,\n                (0x90, True),\n                (0x02, True),\n                i2cdriver.START,\n                (0x91, True),\n                (0x4b, True),\n                (0x00, False),\n                i2cdriver.STOP\n            ]\n\n        i2 = self.init()\n        ag = self.ag\n        for t in (test_0, ): # test_1):\n            c = i2.capture_start()\n            time.sleep(.1)\n            ee = t()\n            for e,a in zip(ee, c()):\n                self.assertEqual(a, e)\n            i2.capture_stop()\n\n    def test_pullups(self):\n        i2 = self.init()\n        i2.getstatus()\n        self.assertEqual(i2.pullups, 0b100100)\n\n        rr = random.sample(list(range(64)), 64)\n        if i2.product == \"i2cdriver1\":\n            respins = (0, 1, 3, 13, 14, 16)\n        else:\n            respins = (10, 11, 12,  6, 7, 8)\n        for r in rr:\n            i2.setpullups(r)\n            i2.getstatus()\n            self.assertEqual(i2.pullups, r)\n            s = i2.introspect()\n            p = s[\"P0\"] + (s[\"P1\"] << 8) + (s[\"P2\"] << 16)\n            d = s[\"P0MDOUT\"] + (s[\"P1MDOUT\"] << 8) + (s[\"P2MDOUT\"] << 16)\n            for b,pb in enumerate(respins):\n                self.assertEqual(bit(pb, p), 1)\n                self.assertEqual(bit(b, r), bit(pb, d))\n\n    def test_zz5s(self):\n        i2 = self.init()\n        time.sleep(5)\n        i2.getstatus()\n        self.assertTrue(i2.uptime in (4,5,6))\n\n    def checkmode(self, c):\n        self.i2.getstatus()\n        self.assertEqual(self.i2.mode, c)\n\n    def test_bitbang(self):\n        i2 = self.init()\n        self.checkmode('I')\n        self.stack0()\n        i2.ser.write(b'b')\n        for i in range(1000):                           # Square wave for a while\n            i2.ser.write(byte(0b1111) + byte(0b0101))\n        i2.ser.write(byte(0b1010) + byte(0b11010))      # Float, request a byte\n        self.assertEqual(struct.unpack(\"B\", i2.ser.read(1)), (3, ))    # both should be high\n        i2.ser.write(byte(0b0101))                      # Leave driven low\n        i2.ser.write(b'@')\n        self.checkmode('B')\n        i2.restore()\n        self.checkmode('I')\n        self.stacksame()\n        self.assertEqual(self.lm75_read(i2, 2), 0x4b00)\n\n    def test_bitbang_idem(self):\n        # Confirm bitbang mode idempotence\n        i2 = self.init()\n        if i2.product != \"spidriver1\":\n            return\n        for n in [0b1101, 0b1011, 0b0000, 0b1111] + list(range(16)):\n            i2.ser.write(b'b' + byte(n) + byte(0x40))\n            s1 = i2.introspect()\n            self.assertEqual(bit(0, n), bit(2, s1[\"P0MDOUT\"]))\n            self.assertEqual(bit(1, n), bit(2, s1[\"P0\"]))\n            self.assertEqual(bit(2, n), bit(4, s1[\"P1MDOUT\"]))\n            self.assertEqual(bit(3, n), bit(4, s1[\"P1\"]))\n            i2.ser.write(b'b' + byte(0x40))\n            s2 = i2.introspect()\n            for i in (\"P0\", \"P1\", \"P0MDOUT\", \"P1MDOUT\"):\n                self.assertEqual(s1[i], s2[i])\n        self.assertEqual(i2.introspect()[\"SMB0CF\"], 0x00)\n        i2.restore()\n        self.assertEqual(i2.introspect()[\"SMB0CF\"], 0xd8)\n\n    def test_bitbang_bidir(self):\n        self.stack0()\n        dd = (self.i2, self.ag)\n        [i2.ser.write(b'b') for i2 in dd]\n        LOW     = 0b01\n        HIGH    = 0b11\n        INPUT   = 0b10\n        def port(d, sda, scl, read = False):\n            d.ser.write(byte(sda | (scl << 2) | (int(read) << 4)))\n            if read:\n                (r,) = struct.unpack(\"B\", d.ser.read(1))\n                return (r & 1, (r >> 1) & 1)\n\n        for sda in (LOW, HIGH, LOW):\n            for scl in (HIGH, LOW, HIGH):\n                expected = (int(sda == HIGH), int(scl == HIGH))\n\n                for (tx,rx) in [(0,1), (1,0)]:\n                    port(dd[tx], sda, scl)\n                    port(dd[rx], INPUT, INPUT)\n                    self.assertEqual(expected, port(dd[rx], INPUT, INPUT, True))\n\n        [i2.ser.write(b'@') for i2 in dd]\n        [i2.restore() for i2 in dd]\n        self.stacksame()\n\n    def test_reset(self):\n        i2 = self.init()\n        self.stack0()\n        i2.reset()\n        self.stacksame()\n        for i in range(100):\n            i2.reset()\n        self.stacksame()\n        self.confirm()\n\n    def test_sampling(self):\n        self.confirm_sampling()\n\n    def test_weigh(self):\n        # Confirm resistance measurement\n        i2 = self.init()\n        ag = self.ag\n        self.stack0()\n\n        def sample(p, pv):\n            i2.setpullups(p)\n            i2.ser.write(b'v' + byte(pv))\n            while True:\n                i2.ser.write(b'w')\n                r = struct.unpack(\"B\", i2.ser.read(1))\n                if r[0] == 0:\n                    break\n            return struct.unpack(\"2B\", i2.ser.read(2))\n\n        def estimate(a, hi, res):\n            if a == 0:\n                return 0\n            v = a / hi\n            return (res / v) - res\n        def mean(s):\n            return sum(s) / len(s)\n        def resistance(rr):\n            if rr == []:\n                return 0\n            return 1 / sum([1/r for r in rr])\n        def pullups():\n            sHH = sample(0b111111, 0b111111)\n            sAA = sample(0b001001, 0b110110)\n            sBB = sample(0b010010, 0b101101)\n            sCC = sample(0b100100, 0b011011)\n            sda_r = mean((estimate(sAA[0], sHH[0], 2200),\n                          estimate(sBB[0], sHH[0], 4300),\n                          estimate(sCC[0], sHH[0], 4700)))\n            scl_r = mean((estimate(sAA[1], sHH[1], 2200),\n                          estimate(sBB[1], sHH[1], 4300),\n                          estimate(sCC[1], sHH[1], 4700)))\n            return (sda_r, scl_r)\n\n        for x in range(64):\n            # print(x)\n            ag.setpullups(x)\n            esda = resistance([r for i,r in enumerate([2200, 4300, 4700]) if bit(i, x)])\n            escl = resistance([r for i,r in enumerate([2200, 4300, 4700]) if bit(3 + i, x)])\n            # print(\"expected %d\" % esda, escl)\n            sda,scl = pullups()\n            # print(\"SDA pullup %d, SCL pullup %d\" % (sda,scl))\n\n            def close(e, a):\n                margin = max(100, e / 10)\n                return abs(a - e) < margin\n            self.assertTrue(close(esda, sda))\n            self.assertTrue(close(escl, scl))\n        self.confirm_sampling()\n\n        self.init() # restore pullups\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "python3/.gitignore",
    "content": "dist/\ni2cdriver.egg-info/\n"
  },
  {
    "path": "python3/EDS.py",
    "content": "\"\"\"\nDrivers for electricdollarstore I2C parts\n\"\"\"\nimport struct\nimport time\nimport datetime\n\nclass Dig2:\n    \"\"\" DIG2 is a 2-digit 7-segment LED display \"\"\"\n\n    def __init__(self, i2, a = 0x14):\n        self.i2 = i2\n        self.a = a\n\n    def raw(self, b0, b1):\n        \"\"\" Set all 8 segments from the bytes b0 and b1 \"\"\" \n        self.i2.regwr(self.a, 0, struct.pack(\"BB\", b0, b1))\n\n    def hex(self, b):\n        \"\"\" Display a hex number 0-0xff \"\"\"\n        self.i2.regwr(self.a, 1, b)\n\n    def dec(self, b):\n        \"\"\" Display a decimal number 00-99 \"\"\"\n        self.i2.regwr(self.a, 2, b)\n\n    def dp(self, p0, p1):\n        \"\"\" Set the state the decimal point indicators \"\"\"\n        self.i2.regwr(self.a, 3, (p1 << 1) | p0)\n\n    def brightness(self, b):\n        \"\"\" Set the brightness from 0 (off) to 255 (maximum) \"\"\"\n        self.i2.regwr(self.a, 4, b)\n\nclass LED:\n    \"\"\" LED is an RGB LED \"\"\"\n    def __init__(self, i2, a = 0x08):\n        self.i2 = i2\n        self.a = a\n\n    def rgb(self, r, g, b, t = 0):\n        \"\"\"\n        Set the color to (r,g,b). Each is a byte 0-255.\n        If t is nonzero, the change happens over t/30 seconds.\n        For example if t is 15 the color fades over a half-second.\n        \"\"\"\n        if t == 0:\n            self.i2.start(self.a, 0)\n            self.i2.regwr(self.a, 0, bytes([r, g, b]))\n        else:\n            self.i2.start(self.a, 0)\n            self.i2.regwr(self.a, 1, bytes([r, g, b, t]))\n        \n    def hex(self, hhh, t = 0):\n        \"\"\"\n        Set the color to hhh, a 24-bit RGB color.\n        If t is nonzero, the change happens over t/30 seconds.\n        For example if t is 15 the color fades over a half-second.\n        \"\"\"\n        r = (hhh >> 16) & 0xff\n        g = (hhh >> 8) & 0xff\n        b = hhh & 0xff\n        self.rgb(r, g, b, t)\n\nclass Pot:\n    \"\"\" POT is an analog knob potentiometer \"\"\"\n    def __init__(self, i2, a = 0x28):\n        self.i2 = i2\n        self.a = a\n\n    def raw(self):\n        \"\"\"\n        Return the current knob rotation as a 16-bit integer.\n        \"\"\"\n        return self.i2.regrd(self.a, 0, \"H\")\n\n    def rd(self, r):\n        \"\"\"\n        Return the current knob rotation, scaled to the range 0 .. r\n        inclusive. For example rd(100) returns a value in the range 0 to 100.\n        \"\"\"\n        return self.i2.regrd(self.a, r)\n\nclass Beep:\n    \"\"\" BEEP is a beeper \"\"\"\n    def __init__(self, i2, a = 0x30):\n        self.i2 = i2\n        self.a = a\n\n    def beep(self, dur, note):\n        \"\"\"\n        Play a note. \n        dur is the duration in milliseconds, 0-255.\n        note is a MIDI note in the range 21-127 inclusive.\n        \"\"\"\n        self.i2.regwr(self.a, dur, note)\n\nclass Remote:\n    \"\"\" REMOTE is a NEC IR code receiver / decoder \"\"\"\n    def __init__(self, i2, a = 0x60):\n        self.i2 = i2\n        self.a = a\n\n    def key(self):\n        \"\"\"\n        For the electricdollarstore IR transmitter.\n        If there is a code in the queue, return its character code.\n        The layout of the remote is\n            \n             p     c     n\n             <     >    ' '\n             -     +     =\n             0     %     &\n             1     2     3\n             4     5     6\n             7     8     9\n\n        If there is no IR code in the queue, return None.\n        \"\"\"\n        r = self.i2.regrd(self.a, 0)\n        if r != 0:\n            return chr(r)\n\n    def raw(self):\n        \"\"\"\n        If there is a code in the queue, return a tuple containing the four-byte code,\n        and a timestamp.\n        If there is no IR code in the queue, return None.\n        \"\"\"\n\n        r = self.i2.regrd(self.a, 1, \"4BH\")\n        if r[:4] != (0xff, 0xff, 0xff, 0xff):\n            age_in_ms = r[4]\n            return (r[:4], time.time() - age_in_ms * .001)\n        else:\n            return None\n\nclass Temp:\n    \"\"\" TEMP is a LM75B temperature sesnor \"\"\"\n    def __init__(self, i2, a = 0x48):\n        self.i2 = i2\n        self.a = a\n\n    def reg(self, r):\n        return self.i2.regrd(self.a, r, \">h\")\n        \n    def read(self):\n        \"\"\" Return the current temperature in Celsius \"\"\"\n        return (self.reg(0) >> 5) * 0.125\n\nclass EPROM:\n    \"\"\" EPROM is a CAT24C512 512 Kbit (64 Kbyte) flash memory \"\"\"\n    def __init__(self, i2, a = 0x50):\n        self.i2 = i2\n        self.a = a\n\n    def write(self, addr, data):\n        \"\"\" Write data to EPROM, starting at address addr \"\"\"\n        for i in range(0, len(data), 128):\n            self.i2.start(self.a, 0)\n            self.i2.write(struct.pack(\">H\", addr + i))\n            self.i2.write(data[i:i + 128])\n            self.i2.stop()\n            while self.i2.start(self.a, 0) == False:\n                pass\n        \n    def read(self, addr, n):\n        \"\"\" Read n bytes from the EPROM, starting at address addr \"\"\"\n        self.i2.start(self.a, 0)\n        self.i2.write(struct.pack(\">H\", addr))\n        self.i2.start(self.a, 1)\n        r = self.i2.read(n)\n        self.i2.stop()\n        return r\n        self.i2.stop()\n\nclass Clock:\n    \"\"\" CLOCK is a HT1382 I2C/3-Wire Real Time Clock with a 32 kHz crystal \"\"\"\n    def __init__(self, i2, a = 0x68):\n        self.i2 = i2\n        self.a = a\n        \n    def set(self, t = None):\n        if t is None:\n            t = datetime.datetime.now()\n        def bcd(x):\n            return (x % 10) + 16 * (x // 10)\n        self.i2.regwr(self.a, 7, 0)\n        self.i2.regwr(self.a, 6, bcd(t.year % 100))\n        self.i2.regwr(self.a, 5, 1 + t.weekday())\n        self.i2.regwr(self.a, 4, bcd(t.month))\n        self.i2.regwr(self.a, 3, bcd(t.day))\n        self.i2.regwr(self.a, 2, 0x80 | bcd(t.hour))    # use 24-hour mode\n        self.i2.regwr(self.a, 1, bcd(t.minute))\n        self.i2.regwr(self.a, 0, bcd(t.second))\n\n    def read(self):\n        self.i2.start(self.a, 0)\n        self.i2.write([0])\n        self.i2.stop()\n        self.i2.start(self.a, 1)\n        (ss,mm,hh,dd,MM,ww,yy) = (struct.unpack(\"7B\", self.i2.read(7)))\n        self.i2.stop()\n        def dec(x):\n            return (x % 16) + 10 * (x // 16)\n        return datetime.datetime(\n            2000 + dec(yy),\n            dec(MM),\n            dec(dd),\n            dec(hh & 0x7f),\n            dec(mm),\n            dec(ss))\n\n    def dump(self):\n        self.i2.start(self.a, 0)\n        self.i2.write([0])\n        self.i2.stop()\n        self.i2.start(self.a, 1)\n        print(list(self.i2.read(16)))\n        self.i2.stop()\n\nclass Magnet:\n    \"\"\" MAGNET is an ST LIS3MDL 3-axis magnetometer \"\"\"\n    def __init__(self, i2, a = 0x1c):\n        self.i2 = i2\n        self.a = a\n        self.i2.regwr(self.a, 0x22, 0) # CTRL_REG3 operating mode 0: continuous conversion\n\n    def rd(self):\n        \"\"\" Read the measurement STATUS_REG and OUT_X,Y,Z \"\"\"\n        return self.i2.regrd(self.a, 0x27, \"<B3h\")\n\n    def measurement(self):\n        \"\"\" Wait for a new field reading, return the (x,y,z) \"\"\"\n        while True:\n            (status, x, y, z) = self.rd()\n            if status & 8:\n                return (x, y, z)\n\nclass Accel:\n    \"\"\" ACCEL is a Richtek RT3000C 3-Axis Digital Accelerometer \"\"\"\n\n    def __init__(self, i2, a = 0x19):\n        self.i2 = i2\n        self.a = a\n\n        print(bin(i2.regrd(self.a, 0xf)))\n        i2.regwr(self.a, 0x20, 0b01000111) # CTRL_REG1: 50 Hz, enable X,Y,Z\n        i2.regwr(self.a, 0x23, 0b00000000) # CTRL_REG4: High resolution mode\n\n    def measurement(self):\n        \"\"\" Wait for a new reading, return the (x,y,z) acceleration in g \"\"\"\n\n        # Note that the RT3000A does not support multibyte\n        # reads. So must read the data one byte at a time.\n\n        while True:\n            STS_REG = self.i2.regrd(self.a, 0x27)\n            if STS_REG & 8:\n                regs = [self.i2.regrd(self.a, i) for i in range(0x28, 0x2e)]\n                xyz = struct.unpack(\"<3h\", struct.pack(\"6B\", *regs))\n                return tuple([c / 16384. for c in xyz])\n"
  },
  {
    "path": "python3/README.md",
    "content": "i2cdriver\n=========\n\nI2CDriver is a tool for controlling, monitoring and capturing I2C from your PC's USB port. It connects as a standard USB serial device, so there are no drivers to install.\"\"\"\n"
  },
  {
    "path": "python3/go",
    "content": "set -e\n\nrm -rf __pycache__/ dist/ i2cdriver.egg-info/\npython -m build\npython -m twine upload dist/*\n"
  },
  {
    "path": "python3/i2cdriver.py",
    "content": "import sys\nimport serial\nimport time\nimport struct\nfrom collections import OrderedDict\n\n__version__ = '1.0.6'\n\nPYTHON2 = (sys.version_info < (3, 0))\n\nimport EDS\n\nclass I2CTimeout(Exception):\n    pass\n\nclass InternalState(OrderedDict):\n    def __repr__(self):\n        return \"\".join([\"%8s %4x\\n\" % (k, v) for (k, v) in self.items()])\n\nclass _I2CEvent:\n    def rrw(self):\n        return [\"WRITE\", \"READ\"][self.rw]\n    def rack(self):\n        return [\"NACK\", \"ACK\"][self.ack]\n\nclass START(_I2CEvent):\n    def __init__(self, addr, rw, ack):\n        self.addr = addr\n        self.rw = rw\n        self.ack = ack\n    def __repr__(self):\n        return \"<START 0x%02x %s %s>\" % (self.addr, self.rrw(), self.rack())\n    def dump(self, f, fmt):\n        if fmt == \"csv\":\n            f.writerow((\"START\", self.rrw(), str(self.addr), self.rack()))\n        else:\n            assert False, \"unsupported format\"\n    def __eq__(self, other):\n        return (self.addr, self.rw, self.ack) == (other.addr, other.rw, other.ack)\n\nclass STOP(_I2CEvent):\n    def __repr__(self):\n        return \"<STOP>\"\n    def dump(self, f, fmt):\n        if fmt == \"csv\":\n            f.writerow((\"STOP\", None, None, None))\n        else:\n            assert False, \"unsupported format\"\n    def __eq__(self, other):\n        return isinstance(other, STOP)\n\nclass BYTE(_I2CEvent):\n    def __init__(self, b, rw, ack):\n        self.b = b\n        self.rw = rw\n        self.ack = ack\n    def __repr__(self):\n        return \"<%s 0x%02x %s>\" % (self.rrw(), self.b, self.rack())\n    def dump(self, f, fmt):\n        if fmt == \"csv\":\n            f.writerow((\"BYTE\", self.rrw(), str(self.b), self.rack()))\n        else:\n            assert False, \"unsupported format\"\n    def __eq__(self, other):\n        return (self.b, self.rw, self.ack) == (other.b, other.rw, other.ack)\n\nclass I2CDriver:\n    \"\"\"\n    A connected I2CDriver.\n\n    :param port: The USB port to connect to\n    :type port: str\n    :param reset: Issue an I2C bus reset on connection\n    :type reset: bool\n\n    After connection, the following object variables reflect the current values of the I2CDriver.\n    They are updated by calling :py:meth:`getstatus`.\n\n    :ivar product: product code e.g. 'i2cdriver1' or 'i2cdriverm'\n    :ivar serial: serial string of I2CDriver\n    :ivar uptime: time since I2CDriver boot, in seconds\n    :ivar voltage: USB voltage, in V\n    :ivar current: current used by attached device, in mA\n    :ivar temp: temperature, in degrees C\n    :ivar scl: state of SCL\n    :ivar sda: state of SDA\n    :ivar speed: current device speed in KHz (100 or 400)\n    :ivar mode: IO mode (I2C or bitbang)\n    :ivar pullups: programmable pullup enable pins\n    :ivar ccitt_crc: CCITT-16 CRC of all transmitted and received bytes\n\n    \"\"\"\n    def __init__(self, port = \"/dev/ttyUSB0\", reset = True):\n        \"\"\"\n        Connect to a hardware i2cdriver.\n\n        :param port: The USB port to connect to\n        :type port: str\n        :param reset: Issue an I2C bus reset on connection\n        :type reset: bool\n\n        \"\"\"\n        self.ser = serial.Serial(port, 1000000, timeout = 1)\n\n        # May be in capture or monitor mode, send char and wait for 50 ms\n        self.ser.write(b'@')\n        time.sleep(.050)\n\n        # May be waiting up to 64 bytes of input (command code 0xff)\n        self.ser.write(b'@' * 64)\n        self.ser.flush()\n\n        while self.ser.inWaiting():\n            self.ser.read(self.ser.inWaiting())\n\n        for c in [0x55, 0x00, 0xff, 0xaa]:\n            r = self.__echo(c)\n            if r != c:\n                print('Echo test failed - not attached?')\n                print('Expected %r but received %r' % (c, r))\n                raise IOError\n        self.getstatus()\n        if reset == \"never\":\n            return\n        if reset or (self.scl, self.sda) != (1, 1):\n            if self.reset() != 3:\n                raise I2CTimeout(\"Bus failed to reset - check connected devices\")\n            self.getstatus()\n        self.setspeed(100)\n\n    if PYTHON2:\n        def __ser_w(self, s):\n            if isinstance(s, list) or isinstance(s, tuple):\n                s = \"\".join([chr(c) for c in s])\n            self.ser.write(s)\n    else:\n        def __ser_w(self, s):\n            if isinstance(s, list) or isinstance(s, tuple):\n                s = bytes(s)\n            self.ser.write(s)\n\n    def __echo(self, c):\n        self.__ser_w([ord('e'), c])\n        r = self.ser.read(1)\n        if PYTHON2:\n            return ord(r[0])\n        else:\n            return r[0]\n\n    def setspeed(self, s):\n        \"\"\"\n        Set the I2C bus speed.\n\n        :param s: speed in KHz, either 100 or 400\n        :type s: int\n        \"\"\"\n        assert s in (100, 400)\n        c = {100:b'1', 400:b'4'}[s]\n        self.__ser_w(c)\n        self.speed = s\n\n    def setpullups(self, s):\n        \"\"\"\n        Set the I2CDriver pullup resistors\n\n        :param s: 6-bit pullup mask\n        \"\"\"\n        assert 0 <= s < 64\n        self.__ser_w([ord('u'), s])\n        self.pullups = s\n\n    def scan(self, silent = False):\n        \"\"\" Performs an I2C bus scan.\n        If silent is False, prints a map of devices.\n        Returns a list of the device addresses.\n\n        >>> i2c.scan()\n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- 1C -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        48 -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        68 -- -- -- -- -- -- -- \n        -- -- -- -- -- -- -- -- \n        [28, 72, 104]\n        \"\"\"\n\n        self.ser.write(b'd')\n        d = struct.unpack(\"112c\", self.ser.read(112))\n        if not silent:\n            for a,p in enumerate(d, 8):\n                if p == b\"1\":\n                    st = \"%02X\" % a\n                else:\n                    st = \"--\"\n                sys.stdout.write(st + \" \")\n                if (a % 8) == 7:\n                    sys.stdout.write(\"\\n\")\n        return [a for a,p in enumerate(d, 8) if p == b\"1\"]\n\n    def reset(self):\n        \"\"\" Send an I2C bus reset \"\"\"\n        self.__ser_w(b'x')\n        return struct.unpack(\"B\", self.ser.read(1))[0] & 3\n\n    def start(self, dev, rw):\n        \"\"\"\n        Start an I2C transaction\n\n        :param dev: 7-bit I2C device address\n        :param rw: read (1) or write (0)\n\n        To write bytes ``[0x12,0x34]`` to device ``0x75``:\n\n        >>> i2c.start(0x75, 0)\n        >>> i2c.write([0x12,034])\n        >>> i2c.stop()\n\n        \"\"\"\n        self.__ser_w([ord('s'), (dev << 1) | rw])\n        return self.ack()\n\n    def ack(self):\n        a = ord(self.ser.read(1))\n        if a & 2:\n            raise I2CTimeout\n        return (a & 1) != 0\n\n    def read(self, l):\n        \"\"\" Read l bytes from the I2C device, and NAK the last byte \"\"\"\n        r = []\n        if l >= 64:\n            bulkpart = (l-1) // 64\n            for i in range(bulkpart):\n                self.__ser_w([ord('a'), 64])\n                r.append(self.ser.read(64))\n            l -= 64 * bulkpart\n        assert 0 <= l <= 64\n        self.__ser_w([0x80 + l - 1])\n        r.append(self.ser.read(l))\n        return b''.join(r)\n\n    def write(self, bb):\n        \"\"\"\n        Write bytes to the selected I2C device\n\n        :param bb: sequence to write\n        \"\"\"\n        ack = True\n        for i in range(0, len(bb), 64):\n            sub = bb[i:i + 64]\n            self.__ser_w([0xc0 + len(sub) - 1])\n            self.__ser_w(sub)\n            ack = self.ack()\n        return ack\n\n    def stop(self):\n        \"\"\" stop the i2c transaction \"\"\"\n        self.ser.write(b'p')\n\n    def reboot(self):\n        self.__ser_w(b'_')\n        time.sleep(.5)\n\n    def regrd(self, dev, reg, fmt = \"B\"):\n        \"\"\"\n        Read a register from a device.\n\n        :param dev: 7-bit I2C device address\n        :param reg: register address 0-255\n        :param fmt: :py:func:`struct.unpack` format string for the register contents, or an integer byte count\n\n        If device 0x75 has a 16-bit unsigned big-endian register 102, it can be read with:\n\n        >>> i2c.regrd(0x75, 102, \">H\")\n        4999\n        \"\"\"\n\n        if isinstance(fmt, str):\n            r = struct.unpack(fmt, self.regrd(dev, reg, struct.calcsize(fmt)))\n            if len(r) == 1:\n                return r[0]\n            else:\n                return r\n        else:\n            n = fmt\n            if n <= 256:\n                self.__ser_w(b'r' + struct.pack(\"BBB\", dev, reg, n & 0xff))\n                return self.ser.read(n)\n            else:\n                self.start(dev, 0)\n                self.write([reg])\n                self.start(dev, 1)\n                r = self.read(n)\n                self.stop()\n                return r\n\n    def regwr(self, dev, reg, vv):\n        \"\"\"Write a device's register.\n\n        :param dev: 7-bit I2C device address\n        :param reg: register address 0-255\n        :param vv: value to write. Either a single byte, or a sequence\n\n        To set device 0x34 byte register 7 to 0xA1:\n\n        >>> i2c.regwr(0x34, 7, 0xa1)\n\n        If device 0x75 has a big-endian 16-bit register 102 you can set it to 4999 with:\n\n        >>> i2c.regwr(0x75, 102, struct.pack(\">H\", 4999))\n\n        \"\"\"\n        r = self.start(dev, 0)\n        if r:\n            r = self.write(struct.pack(\"B\", reg))\n            if r:\n                if isinstance(vv, int):\n                    vv = struct.pack(\"B\", vv)\n                r = self.write(vv)\n        self.stop()\n        return r\n\n    def monitor(self, s):\n        \"\"\" Enter or leave monitor mode\n\n        :param s: ``True`` to enter monitor mode, ``False`` to leave\n        \"\"\"\n\n        if s:\n            self.__ser_w(b'm')\n            time.sleep(.1)\n        else:\n            self.__ser_w(b' ')\n            time.sleep(.1)\n            self.__echo(0x40)\n\n    def introspect(self):\n        self.ser.write(b'J')\n        r = self.ser.read(80)\n        assert len(r) == 80, r\n        body = r[1:-1].decode() # remove [ and ]\n        nn = (\n            \"id ds sp SMB0CF SMB0CN T2 T3 IE EIE1 P0 P0MDIN P0MDOUT P1 P1MDIN P1MDOUT P2 P2MDOUT\".split() +\n            \"convs\".split()\n        )\n        bb = [int(w, 16) for w in body.split()]\n        assert len(nn) == len(bb)\n        return InternalState(zip(nn, bb))\n\n    def restore(self):\n        self.ser.write(b'i')\n\n    def __repr__(self):\n        return \"<%s serial=%s uptime=%d, SCL=%d, SDA=%d>\" % (\n            self.product,\n            self.serial,\n            self.uptime,\n            self.scl,\n            self.sda)\n\n    def capture_start(self, idle=False, start = START, abyte = BYTE, stop = STOP):\n        \"\"\"Enter I2C capture mode, capturing I2C transactions.\n        :param idle: If ``True`` the generator returns ``None`` when the bus is idle. If ``False`` the generator does nothing during bus idle.\n\n        :return: a generator which returns an object for each I2C primitive captured.\n        \"\"\"\n        self.__ser_w([ord('c')])\n        def nstream():\n            while True:\n                bb = self.ser.read(256)\n                if PYTHON2:\n                    for b in bb:\n                        yield (ord(b) >> 4) & 0xf\n                        yield ord(b)        & 0xf\n                else:\n                    for b in bb:\n                        yield (b >> 4) & 0xf\n                        yield b        & 0xf\n        def parser():\n            starting = False\n            rw = 0\n            for n in nstream():\n                if n == 0:\n                    if idle:\n                        yield None\n                elif n == 1:\n                    starting = True\n                    bits = []\n                elif n == 2:\n                    yield stop()\n                    starting = True\n                    bits = []\n                elif n in (8,9,10,11,12,13,14,15):\n                    # w(str(n&7))\n                    bits.append(n & 7)\n                    if len(bits) == 3:\n                        b9 = (bits[0] << 6) | (bits[1] << 3) | bits[2]\n                        b8 = (b9 >> 1)\n                        ack = b9 & 1\n                        if starting:\n                            rw = b8 & 1\n                            yield start(b8 >> 1, rw, ack == 0)\n                            starting = False\n                        else:\n                            yield abyte(b8, rw, ack == 0)\n                        bits = []\n                else:\n                    assert 0, \"unexpected token\"\n        return parser\n\n    def capture_stop(self):\n        while self.ser.in_waiting:\n            self.ser.read(self.ser.in_waiting)\n        self.__ser_w([ord('c')])\n        while self.ser.in_waiting:\n            self.ser.read(self.ser.in_waiting)\n        self.__echo(0x40)\n\n    def capture(self):\n        self.__ser_w([ord('c')])\n        while 0:\n            b = self.ser.read(1)\n            for c in b:\n                print(\"%02x\" % c)\n        w = sys.stdout.write\n        def nstream():\n            while 1:\n                for b in self.ser.read(256):\n                    yield (b >> 4) & 0xf\n                    yield b        & 0xf\n        bits = []\n        for n in nstream():\n            if n == 0:\n                w(\".\")\n            elif n == 1:\n                w(\"S\")\n                bits = []\n            elif n == 2:\n                w(\"P\\n\")\n                bits = []\n            elif n in (8,9,10,11,12,13,14,15):\n                # w(str(n&7))\n                bits.append(n & 7)\n                if len(bits) == 3:\n                    b9 = (bits[0] << 6) | (bits[1] << 3) | bits[2]\n                    b8 = (b9 >> 1)\n                    ack = b9 & 1\n                    w('%02x%s' % (b8, \" !\"[ack]))\n                    bits = []\n            else:\n                assert 0, \"unexpected token\"\n\n    def getstatus(self):\n        \"\"\" Update all status variables \"\"\"\n        self.ser.write(b'?')\n        r = self.ser.read(80)\n        body = r[1:-1].decode() # remove [ and ]\n        (self.product,\n         self.serial,\n         uptime,\n         voltage,\n         current,\n         temp,\n         mode,\n         sda,\n         scl,\n         speed,\n         pullups,\n         ccitt_crc) = body.split()\n        self.uptime = int(uptime)\n        self.voltage = float(voltage)\n        self.current = float(current)\n        self.temp = float(temp)\n        self.mode = mode\n        self.scl = int(scl)\n        self.sda = int(sda)\n        self.speed = int(speed)\n        self.pullups = int(pullups, 16)\n        self.ccitt_crc = int(ccitt_crc, 16)\n        return repr(self)\n"
  },
  {
    "path": "python3/pyproject.toml",
    "content": "[build-system]\nrequires = [\"setuptools>=61\"]\nbuild-backend = \"setuptools.build_meta\"\n\n[project]\nname = \"i2cdriver\"\nversion = \"1.0.6\"\ndescription = \"I2CDriver is a desktop I2C interface\"\nreadme = \"README.md\"  # optional, use if you want the long description from a file\nauthors = [\n  { name = \"James Bowman\", email = \"jamesb@excamera.com\" }\n]\nlicense = \"BSD-3-Clause\"\ndependencies = [\"pyserial\"]\n\n[project.urls]\nHomepage = \"http://i2cdriver.com\"\nDocumentation = \"https://i2cdriver.readthedocs.io/en/latest/\"\n\n[project.scripts]\ni2cgui = \"samples.i2cgui:main\"\n\n[tool.setuptools]\npy-modules = [\"i2cdriver\", \"EDS\"]\n"
  },
  {
    "path": "python3/samples/EDS-ACCEL.py",
    "content": "import sys\nimport struct\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    i2.scan()\n\n    d = EDS.Accel(i2)\n    while True:\n        print(\"x=%+.3f  y=%+.3f  z=%+.3f\" % d.measurement())\n"
  },
  {
    "path": "python3/samples/EDS-BEEP.py",
    "content": "import sys\nimport serial\nimport time\nimport struct\nimport random\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1], True)\n\n    d = EDS.Beep(i2)\n\n    for note in range(55, 127):\n        print(\"MIDI note %d\" % note)\n        d.beep(100, note)\n        time.sleep(.100)\n"
  },
  {
    "path": "python3/samples/EDS-CLOCK.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Clock(i2)\n    d.set()\n    while 1:\n        print(d.read())\n        time.sleep(1)\n"
  },
  {
    "path": "python3/samples/EDS-DIG2.py",
    "content": "import sys\nimport serial\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Dig2(i2)\n    for i in range(100):\n        d.dec(i)\n        time.sleep(.05)\n"
  },
  {
    "path": "python3/samples/EDS-EPROM.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\ntext = b\"\"\"\\\nCHAPTER 1. Loomings.\n\nCall me Ishmael. Some years ago-never mind how long precisely-having little or no money in my\npurse, and nothing particular to interest me on shore, I thought I would sail about a little\nand see the watery part of the world. It is a way I have of driving off the spleen and\nregulating the circulation. Whenever I find myself growing grim about the mouth; whenever it is\na damp, drizzly November in my soul; whenever I find myself involuntarily pausing before coffin\nwarehouses, and bringing up the rear of every funeral I meet; and especially whenever my hypos\nget such an upper hand of me, that it requires a strong moral principle to prevent me from\ndeliberately stepping into the street, and methodically knocking people's hats off-then, I\naccount it high time to get to sea as soon as I can. This is my substitute for pistol and ball.\nWith a philosophical flourish Cato throws himself upon his sword; I quietly take to the ship.\nThere is nothing surprising in this. If they but knew it, almost all men in their degree, some\ntime or other, cherish very nearly the same feelings towards the ocean with me.\n\nThere now is your insular city of the Manhattoes, belted round by wharves as Indian isles by\ncoral reefs-commerce surrounds it with her surf. Right and left, the streets take you\nwaterward. Its extreme downtown is the battery, where that noble mole is washed by waves, and\ncooled by breezes, which a few hours previous were out of sight of land. Look at the crowds of\nwater-gazers there.\n\nCircumambulate the city of a dreamy Sabbath afternoon. Go from Corlears Hook to Coenties Slip,\nand from thence, by Whitehall, northward. What do you see?-Posted like silent sentinels all\naround the town, stand thousands upon thousands of mortal men fixed in ocean reveries. Some\nleaning against the spiles; some seated upon the pier-heads; some looking over the bulwarks of\nships from China; some high aloft in the rigging, as if striving to get a still better seaward\npeep. But these are all landsmen; of week days pent up in lath and plaster-tied to counters,\nnailed to benches, clinched to desks. How then is this? Are the green fields gone? What do they\nhere?\n\nBut look! here come more crowds, pacing straight for the water, and seemingly bound for a dive.\nStrange! Nothing will content them but the extremest limit of the land; loitering under the\nshady lee of yonder warehouses will not suffice. No. They must get just as nigh the water as\nthey possibly can without falling in. And there they stand-miles of them-leagues. Inlanders\nall, they come from lanes and alleys, streets and avenues-north, east, south, and west. Yet\nhere they all unite. Tell me, does the magnetic virtue of the needles of the compasses of all\nthose ships attract them thither?\n\nOnce more. Say you are in the country; in some high land of lakes. Take almost any path you\nplease, and ten to one it carries you down in a dale, and leaves you there by a pool in the\nstream. There is magic in it. Let the most absent-minded of men be plunged in his deepest\nreveries-stand that man on his legs, set his feet a-going, and he will infallibly lead you to\nwater, if water there be in all that region. Should you ever be athirst in the great American\ndesert, try this experiment, if your caravan happen to be supplied with a metaphysical\nprofessor. Yes, as every one knows, meditation and water are wedded for ever.\n\"\"\"\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.EPROM(i2)\n    d.write(0, text)        # Write the block of text starting at address 0\n    n = len(text)\n    rd = d.read(0, n)       # Read it back\n    print(rd.decode())               # Display it\n"
  },
  {
    "path": "python3/samples/EDS-LED.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.LED(i2)\n    TEAL    = 0x008080\n    ORANGE  = 0xffa500\n    while 1:\n        time.sleep(1)\n        d.hex(TEAL, 3)\n        time.sleep(1)\n        d.hex(ORANGE, 3)\n"
  },
  {
    "path": "python3/samples/EDS-MAGNET.py",
    "content": "import sys\nimport struct\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Magnet(i2)\n    while 1:\n        print(d.measurement())\n"
  },
  {
    "path": "python3/samples/EDS-POT.py",
    "content": "import sys\nimport struct\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Pot(i2)\n\n    while 1:\n        percentage = d.rd(100)\n        r = d.raw()\n\n        print(\"%3d/100   raw=%3d\" % (percentage, r))\n        time.sleep(.05)\n"
  },
  {
    "path": "python3/samples/EDS-REMOTE.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1], True)\n    i2.setspeed(400)\n\n    d = EDS.Remote(i2)\n\n    print(\"Press a remote button\")\n    while 1:\n        k = d.key()\n        if k is not None:\n            print(\"Key     : %r\" % k)\n        r = d.raw()\n        if r is not None:\n            (code, timestamp) = r\n            print(\"Raw code: %02x %02x %02x %02x (time %.2f)\" % (code[0], code[1], code[2], code[3], timestamp))\n        time.sleep(.25)\n"
  },
  {
    "path": "python3/samples/EDS-TEMP.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = EDS.Temp(i2)\n    for i in range(20):\n        celsius = d.read()\n        fahrenheit = celsius * 9/5 + 32\n        sys.stdout.write(\"%.1f C  %.1f F\\n\" % (celsius, fahrenheit))\n        time.sleep(.1)\n"
  },
  {
    "path": "python3/samples/EDS-color-compass.py",
    "content": "\"\"\"\nDemo of a simple combination of parts from Electric Dollar Store:\n\n* MAGNET - 3-axis magnetometer\n* LED - RGB LED\n\nThis demo takes the compass direction, and uses it to set the LED's\ncolor. So as you move the module around, the color changes according to\nits direction.  There is a direction that is pure red, another that is\npure green, etc.\n\nhttps://electricdollarstore.com\n\n\"\"\"\nimport sys\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    magnet = EDS.Magnet(i2)\n    led = EDS.LED(i2)\n\n    while True:\n        (x, y, z) = magnet.measurement()\n        r = max(0, min(255, (x + 4000) // 32))\n        g = max(0, min(255, (y + 4000) // 32))\n        b = max(0, min(255, (z + 4000) // 32))\n        led.rgb(r, g, b)\n"
  },
  {
    "path": "python3/samples/EDS-egg-timer.py",
    "content": "\"\"\"\nDemo of a simple combination of parts from Electric Dollar Store:\n\n* POT - potentiometer\n* DIG2 - 2-digit display\n* BEEP - piezo beeper\n\nThis demo simulates a kitchen egg-timer.\nTwisting the POT sets a countdown time in seconds,\nand after it's released the ticker starts counting.\nWhen it reaches \"00\" it flashes and beeps.\n\nhttps://electricdollarstore.com\n\n\"\"\"\nimport sys\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\ndef millis():\n    return int(time.time() * 1000)\n\ndef eggtimer(i2c):\n    pot = EDS.Pot(i2c)\n    beep = EDS.Beep(i2c)\n    digits = EDS.Dig2(i2c)\n\n    ticking = False\n    v0 = pot.rd(99)\n    next = millis() + 4000\n    digits.brightness(50)\n    t = 0\n\n    while True:\n        v = pot.rd(99)\n        if v0 != v:\n            if v0 < v:\n                beep.beep(2, 80)\n            else:\n                beep.beep(1, 117)\n            ticking = False\n            next = millis() + 1000\n            v0 = v\n            digits.brightness(255)\n            t = v\n        digits.dec(t)\n        if millis() > next and (t != 0):\n            ticking = True\n        if ticking and millis() > next:\n            next = millis() + 1000\n            beep.beep(1, 120)\n            if t:\n                t -= 1\n            else:\n                for i in range(21):\n                    digits.brightness(255)\n                    beep.beep(75, 107)\n                    time.sleep(.1)\n                    digits.brightness(0)\n                    time.sleep(.05)\n                digits.brightness(50)\n                ticking = False\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1], True)\n    eggtimer(i2)\n"
  },
  {
    "path": "python3/samples/EDS-take-a-ticket.py",
    "content": "\"\"\"\nDemo of a simple combination of parts from Electric Dollar Store:\n\n* REMOTE - remote control receiver\n* DIG2 - 2-digit display\n* BEEP - piezo beeper\n\nThis demo runs a take-a-ticket display for a store or deli counter.\n\nIt shows 2-digit \"now serving\" number, and each time '+' is\npressed on the remote it increments the counter and\nmakes a beep, so the next customer can be served.\nPressing '-' turns the number back one.\n\nhttps://electricdollarstore.com\n\n\"\"\"\nimport sys\n\nfrom i2cdriver import I2CDriver, EDS\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    remote = EDS.Remote(i2)\n    beep   = EDS.Beep(i2)\n    dig2   = EDS.Dig2(i2)\n\n    counter = 0\n    while True:\n        k = remote.key()\n        if k == '+':\n            beep.beep(255, 90)\n            counter = (counter + 1) % 100\n        if k == '-':\n            beep.beep(100, 80)\n            counter = (counter - 1) % 100\n        dig2.dec(counter)\n"
  },
  {
    "path": "python3/samples/bargraph.py",
    "content": "\"\"\"\nExample for Bi-Color (Red/Green) 24-Bar Bargraph, based on HT16K33.\nAvailable from Adafruit.\n\"\"\"\n\nimport sys\nimport time\nimport random\n\nfrom i2cdriver import I2CDriver\n\nfrom ht16k33 import HT16K33\n\nclass bargraph(HT16K33):\n    def set(self, pix):\n        rr = pix\n        def paint(r, i):\n            \"\"\" Paint pixel i \"\"\"\n            blk = i // 12\n            i %= 12\n            b = i // 4\n            m = 1 << ((i % 4) + 4 * blk)\n            r[b] |= m\n        red = [0,0,0]\n        grn = [0,0,0]\n        [paint(red, i) for i in range(24) if (pix[i] & 1)]\n        [paint(grn, i) for i in range(24) if (pix[i] & 2)]\n        self.load([red[0], grn[0], red[1], grn[1], red[2], grn[2]])\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d0 = bargraph(i2)\n\n    for i in range(60):\n        d0.set([random.choice((0,1,2,3)) for i in range(24)])\n        time.sleep(.08)\n"
  },
  {
    "path": "python3/samples/bmp390.py",
    "content": "# SPDX-FileCopyrightText: 2018 Carter Nelson for Adafruit Industries\n#\n# SPDX-License-Identifier: MIT\n\n\"\"\"\n`adafruit_bmp3xx`\n====================================================\n\nCircuitPython driver from BMP388 Temperature and Barometric Pressure sensor.\n\n* Author(s): Carter Nelson\n\nImplementation Notes\n--------------------\n\n**Hardware:**\n\n* `Adafruit BMP388 - Precision Barometric Pressure and Altimeter\n  <https://www.adafruit.com/product/3966>`_ (Product ID: 3966)\n\n**Software and Dependencies:**\n\n* Adafruit CircuitPython firmware for the supported boards:\n  https://circuitpython.org/downloads\n\n* Adafruit's Bus Device library:\n  https://github.com/adafruit/Adafruit_CircuitPython_BusDevice\n\n\"\"\"\nimport struct\nimport time\n\n# from micropython import const\ndef const(x): return x\n\n__version__ = \"0.0.0-auto.0\"\n__repo__ = \"https://github.com/adafruit/Adafruit_CircuitPython_BMP3XX.git\"\n\n_BMP388_CHIP_ID = const(0x50)\n_BMP390_CHIP_ID = const(0x60)\n\n# pylint: disable=import-outside-toplevel\n_REGISTER_CHIPID = const(0x00)\n_REGISTER_STATUS = const(0x03)\n_REGISTER_PRESSUREDATA = const(0x04)\n_REGISTER_TEMPDATA = const(0x07)\n_REGISTER_CONTROL = const(0x1B)\n_REGISTER_OSR = const(0x1C)\n_REGISTER_ODR = const(0x1D)\n_REGISTER_CONFIG = const(0x1F)\n_REGISTER_CAL_DATA = const(0x31)\n_REGISTER_CMD = const(0x7E)\n\n_OSR_SETTINGS = (1, 2, 4, 8, 16, 32)  # pressure and temperature oversampling settings\n_IIR_SETTINGS = (0, 2, 4, 8, 16, 32, 64, 128)  # IIR filter coefficients\n\n\nclass BMP3XX:\n    \"\"\"Base class for BMP3XX sensor.\"\"\"\n\n    def __init__(self):\n        chip_id = self._read_byte(_REGISTER_CHIPID)\n        if chip_id not in (_BMP388_CHIP_ID, _BMP390_CHIP_ID):\n            raise RuntimeError(\"Failed to find BMP3XX! Chip ID 0x%x\" % chip_id)\n        self._read_coefficients()\n        self.reset()\n        self.sea_level_pressure = 1013.25\n        self._wait_time = 0.002  # change this value to have faster reads if needed\n        \"\"\"Sea level pressure in hPa.\"\"\"\n\n    @property\n    def pressure(self):\n        \"\"\"The pressure in hPa.\"\"\"\n        return self._read()[0] / 100\n\n    @property\n    def temperature(self):\n        \"\"\"The temperature in degrees Celsius\"\"\"\n        return self._read()[1]\n\n    @property\n    def altitude(self):\n        \"\"\"The altitude in meters based on the currently set sea level pressure.\"\"\"\n        # see https://www.weather.gov/media/epz/wxcalc/pressureAltitude.pdf\n        return 44307.7 * (1 - (self.pressure / self.sea_level_pressure) ** 0.190284)\n\n    @property\n    def pressure_oversampling(self):\n        \"\"\"The pressure oversampling setting.\"\"\"\n        return _OSR_SETTINGS[self._read_byte(_REGISTER_OSR) & 0x07]\n\n    @pressure_oversampling.setter\n    def pressure_oversampling(self, oversample):\n        if oversample not in _OSR_SETTINGS:\n            raise ValueError(\"Oversampling must be one of: {}\".format(_OSR_SETTINGS))\n        new_setting = self._read_byte(_REGISTER_OSR) & 0xF8 | _OSR_SETTINGS.index(\n            oversample\n        )\n        self._write_register_byte(_REGISTER_OSR, new_setting)\n\n    @property\n    def temperature_oversampling(self):\n        \"\"\"The temperature oversampling setting.\"\"\"\n        return _OSR_SETTINGS[self._read_byte(_REGISTER_OSR) >> 3 & 0x07]\n\n    @temperature_oversampling.setter\n    def temperature_oversampling(self, oversample):\n        if oversample not in _OSR_SETTINGS:\n            raise ValueError(\"Oversampling must be one of: {}\".format(_OSR_SETTINGS))\n        new_setting = (\n            self._read_byte(_REGISTER_OSR) & 0xC7 | _OSR_SETTINGS.index(oversample) << 3\n        )\n        self._write_register_byte(_REGISTER_OSR, new_setting)\n\n    @property\n    def filter_coefficient(self):\n        \"\"\"The IIR filter coefficient.\"\"\"\n        return _IIR_SETTINGS[self._read_byte(_REGISTER_CONFIG) >> 1 & 0x07]\n\n    @filter_coefficient.setter\n    def filter_coefficient(self, coef):\n        if coef not in _IIR_SETTINGS:\n            raise ValueError(\n                \"Filter coefficient must be one of: {}\".format(_IIR_SETTINGS)\n            )\n        self._write_register_byte(_REGISTER_CONFIG, _IIR_SETTINGS.index(coef) << 1)\n\n    def reset(self):\n        \"\"\"Perform a power on reset. All user configuration settings are overwritten\n        with their default state.\n        \"\"\"\n        self._write_register_byte(_REGISTER_CMD, 0xB6)\n\n    def _read(self):\n        \"\"\"Returns a tuple for temperature and pressure.\"\"\"\n        # OK, pylint. This one is all kinds of stuff you shouldn't worry about.\n        # pylint: disable=invalid-name, too-many-locals\n\n        # Perform one measurement in forced mode\n        self._write_register_byte(_REGISTER_CONTROL, 0x13)\n\n        # Wait for *both* conversions to complete\n        while self._read_byte(_REGISTER_STATUS) & 0x60 != 0x60:\n            time.sleep(self._wait_time)\n\n        # Get ADC values\n        data = self._read_register(_REGISTER_PRESSUREDATA, 6)\n        adc_p = data[2] << 16 | data[1] << 8 | data[0]\n        adc_t = data[5] << 16 | data[4] << 8 | data[3]\n\n        # datasheet, sec 9.2 Temperature compensation\n        T1, T2, T3 = self._temp_calib\n\n        pd1 = adc_t - T1\n        pd2 = pd1 * T2\n\n        temperature = pd2 + (pd1 * pd1) * T3\n\n        # datasheet, sec 9.3 Pressure compensation\n        P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 = self._pressure_calib\n\n        pd1 = P6 * temperature\n        pd2 = P7 * temperature ** 2.0\n        pd3 = P8 * temperature ** 3.0\n        po1 = P5 + pd1 + pd2 + pd3\n\n        pd1 = P2 * temperature\n        pd2 = P3 * temperature ** 2.0\n        pd3 = P4 * temperature ** 3.0\n        po2 = adc_p * (P1 + pd1 + pd2 + pd3)\n\n        pd1 = adc_p ** 2.0\n        pd2 = P9 + P10 * temperature\n        pd3 = pd1 * pd2\n        pd4 = pd3 + P11 * adc_p ** 3.0\n\n        pressure = po1 + po2 + pd4\n\n        # pressure in hPa, temperature in deg C\n        return pressure, temperature\n\n    def _read_coefficients(self):\n        \"\"\"Read & save the calibration coefficients\"\"\"\n        coeff = self._read_register(_REGISTER_CAL_DATA, 21)\n        # See datasheet, pg. 27, table 22\n        coeff = struct.unpack(\"<HHbhhbbHHbbhbb\", coeff)\n        # See datasheet, sec 9.1\n        # Note: forcing float math to prevent issues with boards that\n        #       do not support long ints for 2**<large int>\n        self._temp_calib = (\n            coeff[0] / 2 ** -8.0,  # T1\n            coeff[1] / 2 ** 30.0,  # T2\n            coeff[2] / 2 ** 48.0,\n        )  # T3\n        self._pressure_calib = (\n            (coeff[3] - 2 ** 14.0) / 2 ** 20.0,  # P1\n            (coeff[4] - 2 ** 14.0) / 2 ** 29.0,  # P2\n            coeff[5] / 2 ** 32.0,  # P3\n            coeff[6] / 2 ** 37.0,  # P4\n            coeff[7] / 2 ** -3.0,  # P5\n            coeff[8] / 2 ** 6.0,  # P6\n            coeff[9] / 2 ** 8.0,  # P7\n            coeff[10] / 2 ** 15.0,  # P8\n            coeff[11] / 2 ** 48.0,  # P9\n            coeff[12] / 2 ** 48.0,  # P10\n            coeff[13] / 2 ** 65.0,\n        )  # P11\n\n    def _read_byte(self, register):\n        \"\"\"Read a byte register value and return it\"\"\"\n        return self._read_register(register, 1)[0]\n\n    def _read_register(self, register, length):\n        \"\"\"Low level register reading, not implemented in base class\"\"\"\n        raise NotImplementedError()\n\n    def _write_register_byte(self, register, value):\n        \"\"\"Low level register writing, not implemented in base class\"\"\"\n        raise NotImplementedError()\n\n\nclass BMP3XX_I2C(BMP3XX):\n    \"\"\"Driver for I2C connected BMP3XX.\n\n    :param ~busio.I2C i2c: The I2C bus the BMP388 is connected to.\n    :param int address: I2C device address. Defaults to :const:`0x77`.\n                        but another address can be passed in as an argument\n\n    **Quickstart: Importing and using the BMP388**\n\n        Here is an example of using the :class:`BMP3XX_I2C` class.\n        First you will need to import the libraries to use the sensor\n\n        .. code-block:: python\n\n            import board\n            import adafruit_bmp3xx\n\n        Once this is done you can define your `board.I2C` object and define your sensor object\n\n        .. code-block:: python\n\n            i2c = board.I2C()   # uses board.SCL and board.SDA\n            bmp = adafruit_bmp3xx.BMP3XX_I2C(i2c)\n\n\n        Now you have access to the :attr:`temperature` and :attr:`pressure` attributes\n\n        .. code-block:: python\n\n            temperature = bmp.temperature\n            pressure = bmp.pressure\n\n    \"\"\"\n\n    def __init__(self, i2c, address=0x77):\n        from adafruit_bus_device import i2c_device\n\n        self._i2c = i2c_device.I2CDevice(i2c, address)\n        super().__init__()\n\n    def _read_register(self, register, length):\n        \"\"\"Low level register reading over I2C, returns a list of values\"\"\"\n        result = bytearray(length)\n        with self._i2c as i2c:\n            i2c.write(bytes([register & 0xFF]))\n            i2c.readinto(result)\n            return result\n\n    def _write_register_byte(self, register, value):\n        \"\"\"Low level register writing over I2C, writes one 8-bit value\"\"\"\n        with self._i2c as i2c:\n            i2c.write(bytes((register & 0xFF, value & 0xFF)))\n\n\nclass BMP3XX_SPI(BMP3XX):\n    \"\"\"Driver for SPI connected BMP3XX.\n\n    :param ~busio.SPI spi: SPI device\n    :param ~digitalio.DigitalInOut cs: Chip Select\n\n\n    **Quickstart: Importing and using the BMP388**\n\n        Here is an example of using the :class:`BMP3XX_SPI` class.\n        First you will need to import the libraries to use the sensor\n\n        .. code-block:: python\n\n            import board\n            import adafruit_bmp3xx\n            from digitalio import DigitalInOut, Direction\n\n        Once this is done you can define your `board.SPI` object and define your sensor object\n\n        .. code-block:: python\n\n            spi = board.SPI()\n            cs = DigitalInOut(board.D5)\n            bmp = adafruit_bmp3xx.BMP3XX_SPI(spi, cs)\n\n\n        Now you have access to the :attr:`temperature` and :attr:`pressure` attributes\n\n        .. code-block:: python\n\n            temperature = bmp.temperature\n            pressure = bmp.pressure\n\n    \"\"\"\n\n    def __init__(self, spi, cs):\n        from adafruit_bus_device import spi_device\n\n        self._spi = spi_device.SPIDevice(spi, cs)\n        # toggle CS low/high to put BMP3XX in SPI mode\n        with self._spi:\n            time.sleep(0.001)\n        super().__init__()\n\n    def _read_register(self, register, length):\n        \"\"\"Low level register reading over SPI, returns a list of values\"\"\"\n        result = bytearray(length)\n        with self._spi as spi:\n            # pylint: disable=no-member\n            spi.write(bytes((0x80 | register, 0x00)))\n            spi.readinto(result)\n        return result\n\n    def _write_register_byte(self, register, value):\n        \"\"\"Low level register writing over SPI, writes one 8-bit value\"\"\"\n        with self._spi as spi:\n            # pylint: disable=no-member\n            spi.write(bytes((register & 0x7F, value & 0xFF)))\n\n# \n\nfrom i2cdriver import I2CDriver\nimport sys\n\nclass BMP3XX_I2CDriver(BMP3XX):\n    \"\"\"Driver for I2CDriver connected BMP3XX.\n\n    :param ~busio.I2C i2c: The I2CDriver the BMP388 is connected to.\n    :param int address: I2C device address. Defaults to :const:`0x77`.\n                        but another address can be passed in as an argument\n\n    **Quickstart: Importing and using the BMP388**\n\n        Here is an example of using the :class:`BMP3XX_I2CDriver` class.\n        First you will need to import the libraries\n\n        .. code-block:: python\n\n            from i2cdriver import I2CDriver\n            import adafruit_bmp3xx\n\n        Once this is done you can connect to the I2CDriver and define the sensor object, e.g.\n\n        .. code-block:: python\n\n            i2c = I2CDriver(\"COM9\")\n            bmp = adafruit_bmp3xx.BMP3XX_I2C(i2c)\n\n        Now you have access to the :attr:`temperature` and :attr:`pressure` attributes\n\n        .. code-block:: python\n\n            temperature = bmp.temperature\n            pressure = bmp.pressure\n\n    \"\"\"\n\n    def __init__(self, i2c, address=0x77):\n        self.i2c = i2c\n        self.a = address\n        super().__init__()\n\n    def _read_register(self, register, length):\n        \"\"\"Low level register reading over I2C, returns a list of values\"\"\"\n        return self.i2c.regrd(self.a, register, length)\n\n    def _write_register_byte(self, register, value):\n        \"\"\"Low level register writing over I2C, writes one 8-bit value\"\"\"\n        self.i2c.regwr(self.a, register, value)\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = BMP3XX_I2CDriver(i2)\n    d.pressure_oversampling = 32\n    d.temperature_oversampling = 32\n    while 1:\n        (pressure, temperature) = d._read()\n        print(f\"Pressure: {pressure / 100:.2f} hPa\")\n        print(f\"Temperature: {temperature:.2f} C\")\n"
  },
  {
    "path": "python3/samples/bno080.py",
    "content": "\"\"\"\nExample for BNO080 integrated IMU.\nAvailable from Sparkfun.\n\"\"\"\n\nimport sys\nimport serial\nimport time\nimport struct\nimport random\nimport math\n\nfrom i2cdriver import I2CDriver\ndef hexdump(s):\n    def toprint(c):\n        if 32 <= c < 127:\n            return chr(c)\n        else:\n            return \".\"\n    def hexline(s):\n        return (\" \".join([\"%02x\" % c for c in s]).ljust(49) +\n                \"|\" +\n                \"\".join([toprint(c) for c in s]).ljust(16) +\n                \"|\")\n    return \"\\n\".join([hexline(s[i:i+16]) for i in range(0, len(s), 16)])\n\nCHANNEL_COMMAND = 0\nCHANNEL_EXECUTABLE = 1\nCHANNEL_CONTROL = 2\nCHANNEL_REPORTS = 3\nCHANNEL_WAKE_REPORTS = 4\nCHANNEL_GYRO = 5\n\n# All the ways we can configure or talk to the BNO080, figure 34, page 36 reference manual\n# These are used for low level communication with the sensor, on channel 2\nSHTP_REPORT_COMMAND_RESPONSE = 0xF1\nSHTP_REPORT_COMMAND_REQUEST = 0xF2\nSHTP_REPORT_FRS_READ_RESPONSE = 0xF3\nSHTP_REPORT_FRS_READ_REQUEST = 0xF4\nSHTP_REPORT_PRODUCT_ID_RESPONSE = 0xF8\nSHTP_REPORT_PRODUCT_ID_REQUEST = 0xF9\nSHTP_REPORT_BASE_TIMESTAMP = 0xFB\nSHTP_REPORT_SET_FEATURE_COMMAND = 0xFD\n\n# All the different sensors and features we can get reports from\n# These are used when enabling a given sensor\nSENSOR_REPORTID_ACCELEROMETER = 0x01\nSENSOR_REPORTID_GYROSCOPE = 0x02\nSENSOR_REPORTID_MAGNETIC_FIELD = 0x03\nSENSOR_REPORTID_LINEAR_ACCELERATION = 0x04\nSENSOR_REPORTID_ROTATION_VECTOR = 0x05\nSENSOR_REPORTID_GRAVITY = 0x06\nSENSOR_REPORTID_GAME_ROTATION_VECTOR = 0x08\nSENSOR_REPORTID_GEOMAGNETIC_ROTATION_VECTOR = 0x09\nSENSOR_REPORTID_TAP_DETECTOR = 0x10\nSENSOR_REPORTID_STEP_COUNTER = 0x11\nSENSOR_REPORTID_STABILITY_CLASSIFIER = 0x13\nSENSOR_REPORTID_PERSONAL_ACTIVITY_CLASSIFIER = 0x1E\n\n# Record IDs from figure 29, page 29 reference manual\n# These are used to read the metadata for each sensor type\nFRS_RECORDID_ACCELEROMETER = 0xE302\nFRS_RECORDID_GYROSCOPE_CALIBRATED = 0xE306\nFRS_RECORDID_MAGNETIC_FIELD_CALIBRATED = 0xE309\nFRS_RECORDID_ROTATION_VECTOR = 0xE30B\n\n# Command IDs from section 6.4, page 42\n# These are used to calibrate, initialize, set orientation, tare etc the sensor\nCOMMAND_ERRORS = 1\nCOMMAND_COUNTER = 2\nCOMMAND_TARE = 3\nCOMMAND_INITIALIZE = 4\nCOMMAND_DCD = 6\nCOMMAND_ME_CALIBRATE = 7\nCOMMAND_DCD_PERIOD_SAVE = 9\nCOMMAND_OSCILLATOR = 10\nCOMMAND_CLEAR_DCD = 11\n\nCALIBRATE_ACCEL = 0\nCALIBRATE_GYRO = 1\nCALIBRATE_MAG = 2\nCALIBRATE_PLANAR_ACCEL = 3\nCALIBRATE_ACCEL_GYRO_MAG = 4\nCALIBRATE_STOP = 5\n\ndef normalize(v, tolerance=0.00001):\n    mag2 = sum(n * n for n in v)\n    if abs(mag2 - 1.0) > tolerance:\n        mag = math.sqrt(mag2)\n        v = tuple(n / mag for n in v)\n    return v\n\nclass BNO080:\n    def __init__(self, i2, a = 0x4b):\n        self.i2 = i2\n        self.a = a\n        self.seqno = [0] * 8\n\n        if 1:\n            self.sendPacket(CHANNEL_EXECUTABLE, [1])\n            time.sleep(0.150)\n            while True:\n                if not self.receivePacket():\n                    break\n\n        self.setFeature(SENSOR_REPORTID_ROTATION_VECTOR, 50000)\n\n    def read_quaternion(self):\n        while True:\n            r = self.receivePacket()\n            while r:\n                tag = r[0]\n                r = r[1:]\n                if tag == 0xfb:\n                    # print(\"Time %d\" % struct.unpack(\"I\", r[:4]))\n                    r = r[4:]\n                elif tag == SHTP_REPORT_COMMAND_RESPONSE:\n                    r = r[16:]\n                elif tag == 0xfc:\n                    # print(\"Get Feature Response\")\n                    r = r[17:]\n                elif tag == SENSOR_REPORTID_ACCELEROMETER:\n                    r = r[10:]\n                elif tag == SENSOR_REPORTID_ROTATION_VECTOR:\n                    (_,_,_,i,j,k,w,_) = struct.unpack(\"<BBBhhhhh\", r[:14])\n                    Q14 = 2 ** -14\n                    # print((i * Q14, j * Q14, k * Q14, w * Q14))\n                    return (w * Q14, i * Q14, j * Q14, k * Q14)\n                    r = r[14:]\n                else:\n                    assert 0, \"Bad tag %#x\" % tag\n\n    def setFeature(self, reportID, timeBetweenReports, specificConfig = 0):\n        p = struct.pack(\"<BBBHIII\",\n            SHTP_REPORT_SET_FEATURE_COMMAND,\n            reportID, \n            0, 0,\n            timeBetweenReports,\n            0, specificConfig)\n        # print(hexdump(p))\n\n        self.sendPacket(CHANNEL_CONTROL, p)\n\n    def sendPacket(self, channel, data):\n        # print('send on', channel, 'seq', self.seqno[channel])\n        self.i2.start(self.a, 0)\n        self.i2.write(struct.pack(\"<HBB\", 4 + len(data), channel, self.seqno[channel]))\n        self.i2.write(data)\n        self.i2.stop()\n        self.seqno[channel] += 1\n\n    def receivePacket(self):\n        if not self.i2.start(self.a, 1):\n            self.i2.stop()\n            return None\n        hdr = self.i2.read(4)\n        self.i2.stop()\n        length, channel, sequence = (struct.unpack(\"<HBB\", hdr))\n        length &= 0x7fff\n        # print()\n        # print('length', length)\n        # print('channel', channel)\n        # print('sequence', sequence)\n        if length == 0 or channel not in range(8):\n            return None\n\n        # self.seqno[channel] = sequence + 1\n\n        self.i2.start(self.a, 1)\n        data = self.i2.read(length)\n        self.i2.stop()\n        # print(len(data), repr(data))\n        # print(hexdump(data[4:]))\n        return data[4:]\n    \n    def showpacket(self, data):\n        tag = data[0]\n        print('tag', tag)\n        r = data[1:]\n        if tag == 0:\n            self.showpacket_00(r)\n        else:\n            assert False, \"Cannot show packet %02x\" % tag\n\n    def showpacket_00(self, ad):\n        while ad:\n            (T, L) = struct.unpack(\"BB\", ad[:2])\n            V = ad[2:2+L]\n            decoder = {\n            1:    lambda: (\"GUID\", struct.unpack(\"I\", V)),\n            2:    lambda: (\"MaxCargoPlusHeaderWrite\", struct.unpack(\"H\", V)),\n            3:    lambda: (\"MaxCargoPlusHeaderRead\", struct.unpack(\"H\", V)),\n            4:    lambda: (\"MaxTransferWrite\", struct.unpack(\"H\", V)),\n            5:    lambda: (\"MaxTransferRead\", struct.unpack(\"H\", V)),\n            6:    lambda: (\"NormalChannel\", struct.unpack(\"B\", V)),\n            7:    lambda: (\"WakeChannel\", struct.unpack(\"B\", V)),\n            8:    lambda: (\"AppName\", (V[:-1].decode(), )),\n            9:    lambda: (\"ChannelName\", (V[:-1].decode(), )),\n            0x80: lambda: (\"SHTP Version\", (V[:-1].decode(), )),\n            }.get(T, lambda: (str(T), (V,)))\n            (nm,f) = decoder()\n            print(\"%5d %-26s: %r\" % ((len(ad), nm, ) + f))\n            ad = ad[2+L:]\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = BNO080(i2)\n    while True:\n        print('quaternion:', d.read_quaternion())\n"
  },
  {
    "path": "python3/samples/capture.py",
    "content": "\"\"\"\nExample showing how to use the capture feature.\n\"\"\"\n\nimport sys\nimport csv\n\nfrom i2cdriver import I2CDriver, START, STOP\n\nmsg = \"\"\"\nNow capturing traffic to\n    standard output (human-readable)\n    log.csv\nHit CTRL-C to leave capture mode\n\"\"\"\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    c = i2.capture_start()\n\n    sys.stderr.write(msg)\n\n    f = sys.stdout\n    with open('log.csv', 'w') as csvfile:\n        logcsv = csv.writer(csvfile)\n        try:\n            for token in c():\n                print(repr(token))          # Human readable to standard output\n                token.dump(logcsv, \"csv\")   # write to CSV\n        except KeyboardInterrupt:\n            print(\"\\nCapture finished\")\n    i2.capture_stop()\n"
  },
  {
    "path": "python3/samples/go",
    "content": "python mag3110.py /dev/ttyUSB0\n# python EDS-take-a-ticket.py /dev/ttyUSB0\n# python i2cgui.py\n"
  },
  {
    "path": "python3/samples/ht16k33.py",
    "content": "class HT16K33:\n    def __init__(self, i2, a = 0x70):\n        self.i2 = i2\n        self.a = a\n        self.command(0x21)      # Clock on\n        self.command(0x81)      # Display on\n        self.bright(15)\n        self.load([0] * 16)\n\n    def bright(self, n):\n        assert 0 <= n < 16\n        self.command(0xe0 + n)\n\n    def command(self, b):\n        assert(self.i2.start(self.a, 0))\n        assert(self.i2.write([b]))\n        self.i2.stop()\n\n    def load(self, b128):\n        self.i2.start(self.a, 0)\n        self.i2.write([0] + b128)\n        self.i2.stop()\n"
  },
  {
    "path": "python3/samples/i2cgui.py",
    "content": "#!/usr/bin/env python\n\nimport time\nimport struct\nimport sys\nimport os\nimport re\nimport csv\nimport threading\nfrom functools import partial\n\nimport serial.tools.list_ports as slp\nimport serial\n\ntry:\n    import wx\n    import wx.lib.newevent as NE\nexcept ImportError:\n    print(\"i2cgui.py needs wxPython, but it wasn't found.\")\n    print(\"See https://www.wxpython.org/pages/downloads/\")\n    sys.exit(1)\n\nimport i2cdriver\n\npullup_vals = [\n \"disabled\",\n \"2.2K\",\n \"4.3K\",\n \"1.5K\",\n \"4.7K\",\n \"1.5K\",\n \"2.2K\",\n \"1.1K\",\n]\n\nPingEvent, EVT_PING = NE.NewEvent()\n\ndef ping_thr(win):\n    while True:\n        wx.PostEvent(win, PingEvent())\n        time.sleep(1)\n\nStopCapture = False\n\ndef capture_thr(sd, log_csv):\n    global StopCapture\n    c = sd.capture_start(True)\n    with open(log_csv, 'w') as csvfile:\n        logcsv = csv.writer(csvfile)\n        for token in c():\n            if token:\n                sd.dumpcount += 1\n                token.dump(logcsv, \"csv\")   # write to CSV\n            if StopCapture:\n                break\n    StopCapture = False\n    sd.capture_stop()\n\nclass HexTextCtrl(wx.TextCtrl):\n    def __init__(self, *args, **kwargs):\n        super(HexTextCtrl, self).__init__(*args, **kwargs)\n        self.Bind(wx.EVT_TEXT, self.on_text)\n    def on_text(self, event):\n        event.Skip()\n        selection = self.GetSelection()\n        value = self.GetValue().upper()\n        hex = \" 0123456789ABCDEF\"\n        value = \"\".join([c for c in value if c in hex])\n        self.ChangeValue(value)\n        self.SetSelection(*selection)\n\nclass MyDialog(wx.Dialog): \n   def __init__(self, parent, title): \n      super(MyDialog, self).__init__(parent, title = title, size = (250,150)) \n      panel = wx.Panel(self) \n      self.btn = wx.Button(panel, wx.ID_OK, label = \"ok\", size = (50,20), pos = (75,50))\n\nclass Frame(wx.Frame):\n    def __init__(self, preferred = None):\n\n        self.sd = None\n\n        def widepair(a, b):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.Add(a, 1, wx.LEFT)\n            r.AddStretchSpacer(prop=1)\n            r.Add(b, 1, wx.RIGHT)\n            return r\n\n        def pair(a, b):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.Add(a, 1, wx.LEFT)\n            r.Add(b, 0, wx.RIGHT)\n            return r\n\n        def rpair(a, b):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.Add(a, 0, wx.LEFT)\n            r.Add(b, 1, wx.RIGHT)\n            return r\n\n        def epair(a, b):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.Add(a, 1, wx.LEFT)\n            r.Add(b, 1, wx.RIGHT)\n            return r\n\n        def label(s):\n            return wx.StaticText(self, label = s)\n\n        def button(s, f):\n            r = wx.Button(self, label = s)\n            r.Bind(wx.EVT_BUTTON, f)\n            return r\n\n        def hbox(items):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            [r.Add(i, 0, wx.EXPAND) for i in items]\n            return r\n\n        def hcenter(i):\n            r = wx.BoxSizer(wx.HORIZONTAL)\n            r.AddStretchSpacer(prop=1)\n            r.Add(i, 2, wx.CENTER)\n            r.AddStretchSpacer(prop=1)\n            return r\n\n        def vbox(items):\n            r = wx.BoxSizer(wx.VERTICAL)\n            [r.Add(i, 0, wx.EXPAND) for i in items]\n            return r\n\n        wx.Frame.__init__(self, None, -1, \"I2CDriver\")\n\n        self.bold = self.GetFont().Bold()\n        self.addrfonts = [\n            self.GetFont(),\n            self.bold\n        ]\n\n        self.label_serial = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_voltage = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_current = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_temp = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_speed = wx.Choice(self, choices = [\"100\", \"400\"])\n        self.label_speed.Bind(wx.EVT_CHOICE, self.set_speed)\n        pupch = sorted(set(pullup_vals), reverse = True)\n        self.label_pullups = wx.Choice(self, choices = pupch)\n        self.label_pullups.Bind(wx.EVT_CHOICE, self.set_pullups)\n        self.label_sda = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_scl = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n        self.label_uptime = wx.StaticText(self, label = \"-\", style = wx.ALIGN_RIGHT)\n\n        self.dynamic = [\n            self.label_voltage,\n            self.label_current,\n            self.label_temp,\n            self.label_speed,\n            self.label_pullups,\n            self.label_sda,\n            self.label_scl,\n            self.label_uptime\n        ]\n        [d.Enable(False) for d in self.dynamic]\n\n        self.Bind(EVT_PING, self.refresh)\n\n        def addrbutton(s):\n            r = wx.RadioButton(self, label = s)\n            r.Bind(wx.EVT_RADIOBUTTON, self.choose_addr)\n            return r\n        self.heat = {i:addrbutton(\"%02X\" % i) for i in range(0x08, 0x78)}\n        # Be careful here, GridSizer changed between wx 3.x and 4.x\n        devgrid = wx.GridSizer(8)\n        devgrid.SetHGap(4)\n        devgrid.SetVGap(6)\n        for i,l in sorted(self.heat.items()):\n            devgrid.Add(l)\n\n        self.monitor = False\n        self.ckM = wx.ToggleButton(self, label = \"Monitor mode\")\n        self.ckM.Bind(wx.EVT_TOGGLEBUTTON, self.check_m)\n\n        self.capture = False\n        self.ckC = wx.ToggleButton(self, label = \"Capture mode\")\n        self.ckC.Bind(wx.EVT_TOGGLEBUTTON, self.check_c)\n\n        self.txVal = HexTextCtrl(self, size=wx.DefaultSize, style=0)\n\n        self.rxVal = HexTextCtrl(self, size=wx.DefaultSize, style=wx.TE_READONLY)\n\n        txButton = wx.Button(self, label = \"write\")\n        txButton.Bind(wx.EVT_BUTTON, partial(self.write, self.txVal))\n\n        self.rxCount = wx.SpinCtrl(self, min = 1)\n        rxButton = wx.Button(self, label = \"read\")\n        rxButton.Bind(wx.EVT_BUTTON, self.read)\n\n        self.dev_widgets = [txButton, rxButton]\n\n        self.reset_button = button(\"i2c reset\", self.reset)\n\n        self.stop_button = button(\"stop\", self.stop)\n        self.stop_button.Enable(False)\n\n        self.allw = [self.ckM, self.reset_button]\n        [w.Enable(False) for w in self.allw]\n        self.devs = self.devices()\n        cb = wx.ComboBox(self, choices = sorted(self.devs.keys()), style = wx.CB_READONLY)\n        cb.Bind(wx.EVT_COMBOBOX, self.choose_device)\n\n        self.no_addr()\n        self.addr = None\n        [self.hot(i, False) for i in self.heat]\n        self.started = False\n\n        info = vbox([\n        pair(label(\"Serial\"),   self.label_serial),\n        pair(label(\"Voltage\"),  self.label_voltage),\n        pair(label(\"Current\"),  self.label_current),\n        pair(label(\"Temp.\"),    self.label_temp),\n        pair(label(\"SDA\"),      self.label_sda),\n        pair(label(\"SCL\"),      self.label_scl),\n        pair(label(\"Running\"),  self.label_uptime),\n        pair(label(\"Speed\"),    self.label_speed),\n        pair(label(\"Pullups\"),  self.label_pullups),\n        ])\n\n        vb = vbox([\n            label(\"\"),\n            hcenter(cb),\n            label(\"\"),\n            hcenter(epair(self.ckM, self.ckC)),\n            hcenter(self.reset_button),\n            label(\"\"),\n            hcenter(info),\n\n            label(\"\"),\n            hcenter(devgrid),\n            label(\"\"),\n            hcenter(pair(self.txVal, txButton)),\n            hcenter(pair(self.rxVal, hbox([self.rxCount, rxButton]))),\n            label(\"\"),\n            hcenter(self.stop_button),\n\n            label(\"\"),\n        ])\n        self.SetSizerAndFit(vb)\n        self.SetAutoLayout(True)\n\n        d1 = None\n        while (d1 is None) and (len(self.devs) > 0):\n            if preferred in self.devs:\n                d1 = preferred\n            else:\n                d1 = min(self.devs)\n            try:\n                self.connect(self.devs[d1])\n            except:\n                del self.devs[d1]\n                d1 = None\n        cb.Set(sorted(self.devs.keys()))\n        if d1 is not None:\n            cb.SetValue(d1)\n\n        t = threading.Thread(target=ping_thr, args=(self, ), daemon=True)\n        t.start()\n\n    def start(self, rw):\n        self.sd.start(self.addr, rw)\n        self.started = True\n        self.stop_button.Enable(True)\n\n    def stop(self, e = None):\n        self.sd.stop()\n        self.started = False\n        self.stop_button.Enable(False)\n\n    def reset(self, e = None):\n        self.sd.reset()\n        self.started = False\n\n    def write(self, htc, e):\n        if (self.addr is not None) and htc.GetValue():\n            vv = [int(c,16) for c in htc.GetValue().split()]\n            self.start(0)\n            self.sd.write(vv)\n\n    def read(self, e):\n        n = int(self.rxCount.GetValue())\n        if self.addr is not None:\n            self.start(1)\n            r = self.sd.read(n)\n            bb = struct.unpack(\"B\"*n, r)\n            self.rxVal.SetValue(\" \".join([\"%02X\" % b for b in bb]))\n            self.stop()\n\n    def devices(self):\n        if sys.platform in ('win32', 'cygwin'):\n            return {pi.device: pi.device for pi in slp.comports()}\n        elif sys.platform == 'darwin':\n            devdir = \"/dev/\"\n            pattern = \"^cu.usbserial-(.*)\"\n        else:\n            devdir = \"/dev/serial/by-id/\"\n            pattern = \"^usb-FTDI_FT230X_Basic_UART_(........)-\"\n\n        if not os.access(devdir, os.R_OK):\n            return {}\n        devs = os.listdir(devdir)\n        def filter(d):\n            m = re.match(pattern, d)\n            if m:\n                return (m.group(1), devdir + d)\n        seldev = [filter(d) for d in devs]\n        return dict([d for d in seldev if d])\n\n    def connect(self, dev):\n        self.sd = i2cdriver.I2CDriver(dev)\n        [w.Enable(True) for w in self.allw]\n        self.refresh(None)\n\n    def refresh(self, e):\n        if self.sd and not self.monitor and not self.capture:\n            lowhigh = [\"LOW\", \"HIGH\"]\n            self.sd.getstatus()\n            self.label_serial.SetLabel(self.sd.serial)\n            self.label_voltage.SetLabel(\"%.2f V\" % self.sd.voltage)\n            self.label_current.SetLabel(\"%d mA\" % self.sd.current)\n            self.label_temp.SetLabel(\"%.1f C\" % self.sd.temp)\n            self.label_speed.SetSelection({100:0, 400:1}[self.sd.speed])\n            self.label_pullups.SetStringSelection(pullup_vals[self.sd.pullups & 7])\n\n            self.label_sda.SetLabel(lowhigh[self.sd.sda])\n            self.label_scl.SetLabel(lowhigh[self.sd.scl])\n            days = self.sd.uptime // (24 * 3600)\n            rem = self.sd.uptime % (24 * 3600)\n            hh = rem // 3600\n            mm = (rem // 60) % 60\n            ss = rem % 60;\n            self.label_uptime.SetLabel(\"%d:%02d:%02d:%02d\" % (days, hh, mm, ss))\n            [d.Enable(True) for d in self.dynamic]\n\n            if not self.started and (self.sd.sda == 1) and (self.sd.scl == 1):\n                devs = self.sd.scan(True)\n                for i,l in self.heat.items():\n                    self.hot(i, i in devs)\n\n    def choose_device(self, e):\n        self.connect(self.devs[e.EventObject.GetValue()])\n\n    def no_addr(self):\n        [w.Enable(False) for w in self.dev_widgets]\n\n    def choose_addr(self, e):\n        o = e.EventObject\n        v = o.GetValue()\n        if v:\n            self.addr = int(o.GetLabel(), 16)\n            [w.Enable(True) for w in self.dev_widgets]\n\n    def check_m(self, e):\n        self.monitor = e.EventObject.GetValue()\n        self.sd.monitor(self.monitor)\n        [d.Enable(not self.monitor) for d in self.dynamic]\n        if self.monitor:\n            [self.hot(i, False) for i in self.heat]\n\n    def check_c(self, e):\n        global StopCapture\n        cm = e.EventObject.GetValue()\n        # self.sd.monitor(self.monitor)\n        if cm:\n            openFileDialog = wx.FileDialog(self, \"CSV dump to file\", \"\", \"\", \n                  \"CSV files (*.csv)|*.csv\", \n                         wx.FD_SAVE | wx.FD_OVERWRITE_PROMPT)\n            openFileDialog.ShowModal()\n            self.log_csv = openFileDialog.GetPath()\n            openFileDialog.Destroy()\n            if self.log_csv == u\"\":\n                e.EventObject.SetValue(False)\n                return\n            StopCapture = False\n            self.sd.dumpcount = 0\n            t = threading.Thread(target=capture_thr, args=(self.sd, self.log_csv))\n            t.setDaemon(True)\n            t.start()\n        else:\n            StopCapture = True\n            wx.MessageBox(\"Capture finished. %d events written to \\\"%s\\\"\" % (self.sd.dumpcount, self.log_csv), \"Message\", wx.OK | wx.ICON_INFORMATION)\n            while StopCapture:\n                pass\n        [d.Enable(not cm) for d in self.dynamic]\n        if cm:\n            [self.hot(i, False) for i in self.heat]\n        self.capture = cm\n\n    def set_speed(self, e):\n        w = e.EventObject\n        s = int(w.GetString(w.GetCurrentSelection()))\n        self.sd.setspeed(s)\n\n    def set_pullups(self, e):\n        w = e.EventObject\n        s = w.GetString(w.GetCurrentSelection())\n        code = pullup_vals.index(s)\n        self.sd.setpullups(code | (code << 3))\n\n    def hot(self, i, s):\n        l = self.heat[i]\n        if s:\n            l.SetForegroundColour((0,0,0))\n            l.SetFont(self.addrfonts[1])\n        else:\n            l.SetForegroundColour((160,) * 3)\n            l.SetFont(self.addrfonts[0])\n        l.Enable(s)\n        if i == self.addr:\n            [w.Enable(s) for w in self.dev_widgets]\n\ndef main():\n    app = wx.App(0)\n    try:\n        f = Frame(*sys.argv[1:])\n        f.Show(True)\n        app.MainLoop()\n    except:\n        import sys, traceback\n        xc = traceback.format_exception(*sys.exc_info())\n        dlg = wx.MessageDialog(None, \"\".join(xc), \"i2cgui Error Trap (%s)\" % i2cdriver.__version__, wx.OK | wx.ICON_WARNING)\n        dlg.ShowModal()\n        dlg.Destroy()\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "python3/samples/lcd1602.py",
    "content": "\"\"\"\nExample for LCD1602, in which a PCF8574 I/O expander drives a HD44780.\nAvailable from various vendors.\n\nNote that the modules require a 5V VCC; they don't function using the\n3.3V VCC of I2CDriver.\n\n\"\"\"\n\nimport sys\nimport time\nimport struct\n\nfrom i2cdriver import I2CDriver\n\nclass HD44780:\n\n    def __init__(self, i2, a = 0x27):\n        self.i2 = i2\n        self.a = a\n\n        self.nybble(3)  # Enter 4-bit mode\n        self.nybble(3)\n        self.nybble(3)\n        self.nybble(2)\n\n        self.cmd(0x28)  # 2 lines, 5x8 dot matrix\n        self.cmd(0x0c)  # display on\n        self.cmd(0x06)  # inc cursor to right when writing and don't scroll\n        self.cmd(0x80)  # set cursor to row 1, column 1\n\n        self.clear()\n\n    def clear(self):\n        \"\"\" Clear the screen \"\"\"\n        self.cmd(0x01)\n        time.sleep(.003)\n\n    def show(self, line, text):\n        \"\"\" Send string to LCD. Newline wraps to second line\"\"\"\n        self.cmd({0:0x80, 1:0xc0}[line])\n        for c in text:\n            self.data(ord(c))\n\n    def cmd(self, b):\n        self.nybble(b >> 4)\n        self.nybble(b & 0xf)\n        time.sleep(.000053)\n\n    def data(self, b):\n        self.nybble(b >> 4, 1)\n        self.nybble(b & 0xf, 1)\n\n    # The PCF8574 outputs are connected to the HD44780\n    # pins as follows:\n\n    # P0    RS (0: command, 1: data)\n    # P1    R/W (0: write, 1: read)\n    # P2    Enable/CLK\n    # P3    Backlight control\n    # P4-7  D4-D7\n\n    def nybble(self, n, rs = 0):\n        bl = 8 | rs\n        self.port(\n            bl | (n << 4),\n            bl | (n << 4) | 4,\n            bl | (n << 4)\n        )\n\n    def port(self, *bb):\n        # Write bytes to port, setting the PCF8574 outputs\n        self.i2.start(self.a, 0)\n        self.i2.write(bb)\n        self.i2.stop()\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    d = HD44780(i2)\n    d.show(0, \"HELLO WORLD\")\n    time.sleep(.5)\n    d.show(1, \"0123456789012345\")\n"
  },
  {
    "path": "python3/samples/led8x8.py",
    "content": "\"\"\"\nExample for 8x8 LED Matrix modules, based on HT16K33.\nAvailable from multiple vendors.\n\"\"\"\n\nimport sys\nimport time\n\nfrom i2cdriver import I2CDriver\n\nfont = open(\"cp437-8x8\", \"rb\").read()\n\nfrom ht16k33 import HT16K33\n\nclass led8x8(HT16K33):\n    def image(self, bb):\n        \"\"\" Set the pixels to the bytes bb \"\"\"\n        def swiz(b):\n            bs = [str((b >> n) & 1) for n in range(8)]\n            return int(bs[7] + bs[0] + bs[1] + bs[2] + bs[3] + bs[4] + bs[5] + bs[6], 2)\n        bb = [swiz(b) for b in bb]\n        self.load([b for s in zip(bb,bb) for b in s])\n\n    def char(self, c):\n        \"\"\" Set the pixels to character c \"\"\"\n        n = ord(c)\n        ch = font[n * 8:n * 8 + 8]\n        self.image(ch)\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = led8x8(i2)\n\n    for c in \"I2C\":\n        d.char(c)\n        time.sleep(1)\n"
  },
  {
    "path": "python3/samples/mag3110.py",
    "content": "\"\"\"\nExample Xtrinsic MAG3110 Three-Axis Digital Magnetometer\nBreakout available from Sparkfun.\n\"\"\"\n\nimport sys\nimport struct\nimport time\n\nfrom i2cdriver import I2CDriver, EDS\n\nclass MAG3110:\n    def __init__(self, i2, a = 0x0e):\n        self.i2 = i2\n        self.a = a\n        self.i2.regwr(self.a, 0x10, 0b00000001) # CTRL_REG1. ACTIVE mode, 80 Hz conversions\n\n    def rd(self):\n        \"\"\" Read the measurement STATUS_REG and OUT_X,Y,Z \"\"\"\n        return self.i2.regrd(self.a, 0x00, \">B3h\")\n\n    def measurement(self):\n        \"\"\" Wait for a new field reading, return the (x,y,z) \"\"\"\n        while True:\n            (status, x, y, z) = self.rd()\n            if status & 8:\n                return (x, y, z)\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    i2.scan()\n\n    d = MAG3110(i2)\n    while 1:\n        print(d.measurement())\n"
  },
  {
    "path": "python3/samples/mux.py",
    "content": "import sys\nfrom i2cdriver import I2CDriver, EDS\n\n# Using a TCA9548A Low-Voltage 8-Channel I2C Switch\n# Three LM75B temperature sensors are connected to \n# channels 0,1 and 2. All are at address 0x48.\n\nclass Mux:\n    def __init__(self, i2, a = 0x70):\n        self.i2 = i2\n        self.a = a\n\n    def select(self, n):\n        assert n in range(8)\n        self.i2.start(self.a, 0)\n        self.i2.write([1 << n])\n        self.i2.stop()\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    mux = Mux(i2)\n    sensors = [\n        (0, EDS.Temp(i2)),\n        (1, EDS.Temp(i2)),\n        (2, EDS.Temp(i2))\n        ]\n\n    # Reset all 8 channels\n    for chan in range(8):\n        mux.select(chan)\n        i2.reset()\n\n    def read(chan, dev):\n        mux.select(chan)\n        celsius = dev.read()\n        return celsius\n\n    while 1:\n        print(\" \".join([\"%.1f\" % read(chan, dev) for chan,dev in sensors]))\n"
  },
  {
    "path": "python3/samples/oled.py",
    "content": "\"\"\"\nExample for 128X64OLED Module \nAvailable from multiple vendors, e.g. DIYMall\n\nThis example loads the I2CDriver logo onto the display,\nand flashes it four times.\n\n\"\"\"\n\nimport sys\nimport time\n\nfrom PIL import Image, ImageChops\n\nfrom i2cdriver import I2CDriver\n\nSETCONTRAST         = 0x81\nDISPLAYALLON_RESUME = 0xA4\nDISPLAYALLON        = 0xA5\nNORMALDISPLAY       = 0xA6\nINVERTDISPLAY       = 0xA7\nDISPLAYOFF          = 0xAE\nDISPLAYON           = 0xAF\nSETDISPLAYOFFSET    = 0xD3\nSETCOMPINS          = 0xDA\nSETVCOMDETECT       = 0xDB\nSETDISPLAYCLOCKDIV  = 0xD5\nSETPRECHARGE        = 0xD9\nSETMULTIPLEX        = 0xA8\nSETLOWCOLUMN        = 0x00\nSETHIGHCOLUMN       = 0x10\nSETSTARTLINE        = 0x40\nMEMORYMODE          = 0x20\nCOLUMNADDR          = 0x21\nPAGEADDR            = 0x22\nCOMSCANINC          = 0xC0\nCOMSCANDEC          = 0xC8\nSEGREMAP            = 0xA0\nCHARGEPUMP          = 0x8D\n\nclass OLED:\n    def __init__(self, i2, a = 0x3c):\n        self.i2 = i2\n        self.a = a\n\n        self.command(DISPLAYOFF)\n        self.command(SETDISPLAYCLOCKDIV, 0x80)       # the suggested ratio 0x80\n\n        self.command(SETMULTIPLEX, 0x3f)\n\n        self.command(SETDISPLAYOFFSET, 0)\n        self.command(SETSTARTLINE | 0x0)\n        self.command(CHARGEPUMP, 0x14)\n        self.command(MEMORYMODE, 0)\n        self.command(SEGREMAP | 0x1)\n        self.command(COMSCANDEC)\n\n        self.command(SETCOMPINS, 0x12)\n        self.command(SETCONTRAST, 0xcf)\n\n        self.command(SETVCOMDETECT, 0x40)\n        self.command(DISPLAYALLON_RESUME)\n        self.command(NORMALDISPLAY)\n\n        self.im = Image.new(\"1\", (128,64), 1)\n        self.cls()\n\n    def command(self, *c):\n        assert(self.i2.start(self.a, 0))\n        assert(self.i2.write((0,) + c))\n        self.i2.stop()\n\n    def image(self, im):\n        for p in range(8):\n            pr = self.im.crop((0,8*p,128,8*p+8)).transpose(Image.ROTATE_270)\n            bb = im.crop((0,8*p,128,8*p+8)).transpose(Image.ROTATE_270)\n            diff = ImageChops.difference(pr, bb)\n            di = diff.getbbox()\n            if di is not None:\n                (x0, y0, x1, y1) = di\n                self.command(COLUMNADDR)\n                self.command(y0)\n                self.command(y1 - 1)\n                self.command(PAGEADDR)\n                self.command(p)\n                self.command(p + 1)\n                self.i2.start(self.a, 0)\n                self.i2.write([0x40])\n                self.i2.write(bb.tobytes()[y0:y1])\n                self.i2.stop()\n        self.im = im\n        self.command(DISPLAYON)\n\n    def cls(self):\n        self.image(Image.new(\"1\", (128,64), 0))\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    d = OLED(i2)\n\n    d.image(Image.open(\"logo.png\").convert(\"1\"))\n\n    for i in range(4):\n        d.command(INVERTDISPLAY)\n        time.sleep(.5)\n        d.command(NORMALDISPLAY)\n        time.sleep(.5)\n"
  },
  {
    "path": "python3/samples/pca9685.py",
    "content": "import sys\nimport time\nimport random\nimport struct\n\nfrom i2cdriver import I2CDriver\n\nclass PCA9685:\n    def __init__(self, i2, a = 0x40):\n        self.i2 = i2\n        self.a = a\n        self.i2.regwr(self.a, 0x00, 0x20)  # auto-increment mode\n\n    def set(self, channel, t_on, t_off):\n        assert 0 <= channel < 16\n        assert 0 <= t_on <= 0x1000\n        assert 0 <= t_off <= 0x1000\n        self.i2.regwr(self.a,\n                       0x06 + 4 * channel,\n                       struct.pack(\"<HH\", t_on, t_off))\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    print(i2.scan())\n    d = PCA9685(i2)\n\n    for channel in range(16):\n        d.set(channel, 4096, 0)\n\n    while True:\n        for channel in range(16):\n            d.set(channel, random.randrange(4096), random.randrange(4096))\n            time.sleep(.3)\n"
  },
  {
    "path": "python3/samples/qwiic-joystick.py",
    "content": "\"\"\"\nExample for Qwiic Joystick\nAvailable from Sparkfun.\n\"\"\"\n\nimport sys\nimport time\nimport struct\n\nfrom i2cdriver import I2CDriver\n\nclass Joystick:\n    def __init__(self, i2, a = 0x20):\n        self.i2 = i2\n        self.a = a\n\n    def axis(self, i):\n        self.i2.start(self.a, 0)\n        self.i2.write([i])\n        self.i2.stop()              # Note: their firmware cannot handle an I2C restart\n        self.i2.start(self.a, 1)\n        (r,) = struct.unpack(\">H\", self.i2.read(2))\n        self.i2.stop()\n        return r\n\n    def read(self):\n        \"\"\"\n        return the joystick (x,y) position. The range is 0-1023.\n        The center position of the joystick is approximately 512.\n        \"\"\"\n\n        # Note: their firmware requires two separate reads\n\n        return (self.axis(0), self.axis(2))\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = Joystick(i2)\n\n    while 1:\n        print(d.read())\n        time.sleep(.1)\n"
  },
  {
    "path": "python3/samples/qwiic-keypad.py",
    "content": "\"\"\"\nExample for Qwiic Keypad\nAvailable from Sparkfun.\n\"\"\"\n\nimport sys\nimport time\nimport struct\n\nfrom i2cdriver import I2CDriver\n\nclass Keypad:\n    def __init__(self, i2, a = 0x4b):\n        self.i2 = i2\n        self.a = a\n\n    def read_ts(self):\n        \"\"\"\n        Return (key, timestamp) if pressed, or None.\n        \"\"\"\n\n        self.i2.start(self.a, 1)\n        (k, age_in_ms) = struct.unpack(\">BH\", self.i2.read(3))\n        self.i2.stop()\n        if k != 0:\n            return (chr(k), time.time() - age_in_ms * .001)\n        else:\n            return None\n\n    def read(self):\n        r = self.read_ts()\n        if r:\n            return r[0]\n        else:\n            return None\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = Keypad(i2)\n\n    while 1:\n        print(d.read())\n        time.sleep(.1)\n"
  },
  {
    "path": "python3/samples/read-temperature.py",
    "content": "import sys\nimport time\n\nfrom i2cdriver import I2CDriver, LM75B\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    d = LM75B(i2)\n    for i in range(100):\n        print(d.read())\n        time.sleep(.1)\n"
  },
  {
    "path": "python3/samples/tcr.py",
    "content": "import sys\nimport struct\nfrom i2cdriver import I2CDriver\n\nclass TCR:\n    pass\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    i2.setspeed(400)\n    i2.scan()\n    while 1:\n        i2.start(0x0c, 1)\n        b = i2.read(256)\n        i2.stop()\n        (l, ) = struct.unpack(\"<H\", b[0:2])\n        s = b[2:2+l]\n        if l:\n            print(s)\n        else:\n            print('nothing')\n"
  },
  {
    "path": "python3/samples/touch.py",
    "content": "\"\"\"\nExample for MPR121 Capacitive Touch Sensor.\nAvailable from multiple vendors.\n\"\"\"\n\nimport sys\nimport serial\nimport time\nimport struct\nimport random\n\nfrom i2cdriver import I2CDriver\n\nclass MPR121:\n    def __init__(self, i2, a = 0x5a):\n        self.i2 = i2\n        self.a = a\n        self.i2.regwr(self.a, 0x5e, 0x0c)\n\n    def read(self):\n        \"\"\" Return 12 touch detection flags \"\"\"\n        (tb,) = struct.unpack(\"<H\", self.i2.regrd(0x5a, 0, 2))\n        return [((tb >> i) & 1) for i in range(12)]\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n\n    i2.reset()\n\n    d = MPR121(i2)\n    while 1:\n        print(d.read())\n        time.sleep(.1)\n"
  },
  {
    "path": "python3/samples/wii.py",
    "content": "import sys\nimport struct\nfrom i2cdriver import I2CDriver\n\n#\n# For details see\n# https://wiibrew.org/wiki/Wiimote/Extension_Controllers\n#\n\nclass Wii:\n    def __init__(self, i2, a = 0x52):\n        self.i2 = i2\n        self.a = a\n\n        self.i2.regwr(self.a, 0xf0, 0x55)\n        self.i2.regwr(self.a, 0xfb, 0x00)\n        idcode = (self.rdreg(0xfa, 6))\n        \n        devices = {\n            bytes([0x01, 0x00, 0xa4, 0x20, 0x01, 0x01]): self.wii_classic_pro,\n        }\n        if idcode in devices:\n            self.rd = devices[idcode]\n        else:\n            raise IOError(\"Unrecognised device %r\" % idcode)\n\n    def rdreg(self, addr, n):\n        self.i2.start(self.a, 0)\n        self.i2.write([addr])\n        self.i2.stop()\n\n        self.i2.start(self.a, 1)\n        r = self.i2.read(n)\n        self.i2.stop()\n        return r\n\n    def wii_classic_pro(self):\n        b = self.rdreg(0x00, 6)\n        r4 = '. brt b+ bh b- blt bdd bdr'.split()\n        r = {id: 1 & (~b[4] >> i) for i,id in enumerate(r4)}\n        r5 = 'bdu bdl bzr bx ba by bb bzl'.split()\n        r.update({id: 1 & (~b[5] >> i) for i,id in enumerate(r5)})\n        r.update({\n            'lx' : b[0] & 63,\n            'ly' : b[1] & 63,\n            'rx' : (((b[0] >> 6) & 3) << 3) |\n                   (((b[1] >> 6) & 3) << 1) |\n                   (((b[2] >> 7) & 1)),\n            'ry' : b[2] & 31,\n            'lt' : (((b[2] >> 5) & 3) << 3) |\n                   (((b[3] >> 5) & 7)),\n            'rt' : b[3] & 31,\n        })\n        return r\n\nif __name__ == '__main__':\n    i2 = I2CDriver(sys.argv[1])\n    i2.scan()\n\n    d = Wii(i2)\n    while True:\n        print(d.rd())\n"
  },
  {
    "path": "testall",
    "content": "#!/bin/sh\n\nset -e\n\ncd python3\npip install -e .\npython -c 'from i2cdriver import I2CDriver' \ncd ..\n\ncd c\nmake -f linux/Makefile\nmake -f linux/Makefile.clang\n"
  }
]