SPI Library Issue w/ ILI9341 TFT & PN532 NFC Module on Teensy 3.2

Status
Not open for further replies.

plsco

Active member
I have wired the Adafruit 2.8" TFT LCD CapTouch Shield (ILI9341 SPI display driver) and a PN532 NFC module to a Teensy 3.2 and am experiencing strange issues trying to share the SPI bus between them.

I am using Adafruit's PN532 library and PD4ML's Pixels library for the LCD. Both work fine independently, but as soon as an attempt to read a tag is called on the PN532 in the main loop, subsequent attempts to write to the LCD don't cause the display to change (notably, the main loop continues to run as if there's no issue - it's just the LCD that goes static).

Now for where it gets weird:

As an experiment, I switched out PD4ML's Pixels ILI9341 library with Adafruit's library (also tried Paul's optimized library for the ILI9341). With that configuration, the LCD updates properly IF there is an NFC tag detected (i.e. I have to hold one up to the PN532 continuously). If not, no change to the contents of the display.

There is no 'wait until NFC tag detected loop' obstructing the main loop (at least not that I'm seeing - this also seems clear since the serial monitor shows main loop iterating regardless of the presence of a tag or whether the LCD is changing colors).

I'm assuming that something in the PN532 library (or perhaps one of the ILI9341 libraries) is not effectively releasing/asserting control of the SPI port after doing its work. I simply can't seem to locate the code that might be responsible for this (and as I mentioned, I'd ultimately like to use the Pixels library, which I have the least success with when using it alongside Adafruit's PN532 library).

I have tried "forcing" the modules to release/reclaim control of the SPI bus by pulling the appropriate CS pin LOW before its routine is called, and then setting it back to HIGH at the completion of that routine in my sketch. This has no apparent effect.

Here is a video of the strange behavior I observe when I switch from the PD4ML Pixels library to the Adafruit library for ILI9341 support:


If anyone has advice or a fix (ideally to make the Pixels library and a PN532 library play nice together over SPI), that'd be huge.

My code is attached (pin configuration is indicated therein), and the Pixels library is available here:
https://github.com/zxfr/Pixels

Many thanks in advance,
Justin
 

Attachments

  • debugNFCLCD.ino
    6 KB · Views: 86
Tried moving the PN532 over to I2C to confirm that the LCD would actually work if the PN532 weren't sharing the SPI bus. Interestingly, it is behaving exactly the same way as when the PN532 is using the SPI interface (as in the video - the LCD freezes until the PN532 detects an NFC tag).

Seems like the PN532 library doesn't fully let go of the SPI bus, at least not after calls to:

bool Adafruit_PN532::readPassiveTargetID(uint8_t cardbaudrate, uint8_t * uid, uint8_t * uidLength, uint16_t timeout)

...and its dependents. Any ideas?
 
The PD4ML Pixels library is not using SPI transactions, so you can expect it to have compatibility problems with other libraries using SPI.

I'm not sure of Adafruit_ILI9341 is using SPI transactions. It might not. :(

ILI9341_t3 and Adafruit_PN532 are properly using SPI transactions. These 2 really should work together. Maybe give ILI9341_t3 another try?

I looked at your code, and I see this:

Code:
#elif LCD_LIBRARY == 3 
  #include "ILI9341_t3.h"         //Paul's optimized lib
#endif

However, I do not see any constructor which uses ILI9341_t3. I see only this:

Code:
//ILI9341 Constructor
#if LCD_LIBRARY == 2
  Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC); //Adafruit lib Hardware SPI
#else
  Pixels pxs(320, 240); //PD4ML Hardware SPI
#endif

What if LCD_LIBRARY is 3? Are you actually using the Pixels lib, rather than ILI9341_t3 in that case? Without the ILI9341_t3 constructor, I don't see you could be using ILI9341_t3.
 
Thanks so much for the response Paul. I have tried the ILI9341_t3 library (with the correct constructor), and it behaves exactly the same way as with the Adafruit_ILI9341 library.

I assumed that the Pixels library was problematic on account of not using SPI transactions (it hasn't been updated in a while), but I can't figure out why (a) the other ILI9341 libraries can only effectively assert control of the LCD after a successful tag detection (and then only for as long as a tag remains in range) when the program is evidently not stuck in some sort of loop during the detection routine, and (b) why I'd see the same behavior when I move the PN532 to I2C.

Seems like it must either be a bug with the PN532 library - something about the tag detection event obviously allows the ILI9341 libraries (yours and Adafruit's) to reassert control of the LCD - or with the way the ILI9341 libraries are asserting CS when the SPI bus is shared. I haven't tried measuring what's actually happening on the CS lines with a scope (don't currently have access to one), but I'm also not sure this would point to the issue.

Anything you'd suggest I try?

Thanks so much again,
Justin
 
For your reference, here is the sketch with the proper constructor for the ILI9341_t3 library as well as a video I just took showing the same strange behavior as that which occurs with Adafruit library.

FWIW, it is quite obvious when comparing the two videos that the ILI9341_t3 library is significantly faster than the Adafruit (i.e. the colors change much more quickly) so long as the tag is present!

Thanks again for your help,
Justin


View attachment debugNFCLCD.ino
 
Have you tried calling SPI.end();?

Thanks for the response. I'm not sure I understand the idea though?

Are you suggesting that I wrap every call to either module in: SPI.begin(); [ILI9341 or PN532 method]; SPI.end(); ?

Seems like this would be inefficient if it worked at all, no? Maybe you can clarify for me?
 
Any chance you could reduce and simplify this code a bit?

Let's focus on only the Adafruit_PN532 and ILI9341_t3 libraries, using only SPI. There's a lot of #ifdefs that make the code difficult to follow (for me) and longer than necessary.

Can you trim this to an example that reproduces the problem without the Adafruit_FT6206 touchscreen library?

If I end up buying that Adafruit PN532 product for testing, a simpler program that doesn't require me to also buy a display with that touchscreen would *really* help.
 
Oh, one more concern. I see you've got TFT_RESET on pin 8. There's also code for Serial3 in there, which uses pins 7 and 8.

Maybe that's causing a conflict?
 
Any chance you could reduce and simplify this code a bit?

Let's focus on only the Adafruit_PN532 and ILI9341_t3 libraries, using only SPI. There's a lot of #ifdefs that make the code difficult to follow (for me) and longer than necessary.

Can you trim this to an example that reproduces the problem without the Adafruit_FT6206 touchscreen library?

If I end up buying that Adafruit PN532 product for testing, a simpler program that doesn't require me to also buy a display with that touchscreen would *really* help.

Done and done - code is now short/simple enough to be pasted directly in here (.ino attached as well).

Do you think the issue could be power/logic-level related? I have the T3.2 mounted to Sparkfun's Teensy shield (to make attaching the TFT Shield easier). Both modules draw power from the 5V source (per the spec sheets), though my understanding is that these are both 3.3V logic devices. Both obviously have level shifters on-board, but I hadn't really considered power/logic as possible culprits so thought I'd throw it out there.

Simplified sketch code for ILI9341_t3 and Adafruit_PN532 SPI libraries only:

Code:
// Sketch to debug issues using Adafruit's 2.8" TFT LCD Shield and
// most PN532 breakout modules when they are sharing SPI on a 
// Teensy 3.2, and using libraries that support SPI transactions

// 1. LIBRARY SUPPORT
#include <Wire.h>
#include <SPI.h>
#include <ILI9341_t3.h>         
#include <Adafruit_PN532.h>

// 2. PIN CONFIGURATION (USING TEENSY 3.2 BOARD)

// Adafruit 2.8" TFT LCD Shield (ILI9341: SPI)
#define TFT_BL      5
#define TFT_RESET   8
#define TFT_DC      9
#define TFT_CS      10
#define TFT_MOSI    11
#define TFT_MISO    12
#define TFT_SCLK    13

// PN532 NFC Module (Tested w/ Adafruit's, Elechouse's, and Iteadstudio's: SPI)
#define PN532_RESET 6
#define PN532_MOSI  11
#define PN532_MISO  12
#define PN532_SCK   13
#define PN532_SS    15
#define PN532_IRQ   17

// 3. ILI9341/PN532 SPI CONSTRUCTORS
ILI9341_t3 tft = ILI9341_t3(TFT_CS, TFT_DC);
Adafruit_PN532 nfc(PN532_SS);

// 4. GLOBAL VARIABLES
bool PN532_INIT_SUCCESS = false; 
uint8_t rotation = 0;

void setup() {
  // A. INIT SERIAL PORT
  Serial.begin(115200);
  
  // B. LIBS SHOULD ALREADY BE DOING THIS...
  //pinMode(TFT_CS, OUTPUT); pinMode(PN532_SS, OUTPUT);
  
  // C. INIT DISPLAY
  pinMode(TFT_BL, OUTPUT); analogWrite(TFT_BL, 255);
  tft.begin(); tft.fillScreen(ILI9341_BLACK);
  
  // D. INIT PN532 MODULE
  nfc.begin(); delay(500);
  uint32_t versiondata = nfc.getFirmwareVersion();
  if (!versiondata) {
    Serial.print(F("Didn't find PN53x board")); while (1);
  }
  Serial.print(F("Found chip PN5")); Serial.println((versiondata>>24) & 0xFF, HEX); 
  Serial.print(F("Firmware ver. ")); Serial.print((versiondata>>16) & 0xFF, DEC); 
  Serial.print('.'); Serial.println((versiondata>>8) & 0xFF, DEC);
  nfc.SAMConfig(); delay(100);
}

void loop() {
  // A. ROTATE LCD BACKGROUND COLOR
  if (rotation == 0) tft.fillScreen(ILI9341_RED);
  else if (rotation == 1) tft.fillScreen(ILI9341_GREEN);
  else tft.fillScreen(ILI9341_BLUE);
  if (++rotation > 2) rotation = 0;

  // B. DETECT NFC TAG
  uint8_t uidLength; uint8_t uid[] = { 0, 0, 0, 0, 0, 0, 0 }; 
  uint8_t success = nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A, uid, &uidLength);
  if (success) Serial.println(F("NFC Tag Detected"));
}

View attachment ILI9341_t3_PN532_SPI.ino
 
Ok. Can you please post a link to the Adafruit board. I'll buy one and put this on my list of compatibility issues to investigate.
 
I've only had a very brief glance but:
Code:
bool readPassiveTargetID(uint8_t cardbaudrate, uint8_t * uid, uint8_t * uidLength, uint16_t timeout = 0); //timeout 0 means no timeout - will block forever.
As you're not specifying a timeout it is making the function blocking causing...
the LCD to update properly IF there is an NFC tag detected (i.e. I have to hold one up to the PN532 continuously)

Try using a timeout
 
Hm.
Did you read this comment:
Code:
boolean readPassiveTargetID(uint8_t cardbaudrate, uint8_t * uid, uint8_t * uidLength, uint16_t timeout = 0);
[U][I][B] //timeout 0 means no timeout - will block forever.[/B][/I][/U]
 
LOL, you were 2 minutes faster, xeno :)
Like a true
html-ninja.jpg
 
Ok. Can you please post a link to the Adafruit board. I'll buy one and put this on my list of compatibility issues to investigate.

Here's the Adafruit model:
https://www.adafruit.com/products/789

Though the Elechouse breakout is much cheaper, smaller, and easier to switch interfaces with:
http://www.elechouse.com/elechouse/index.php?main_page=product_info&cPath=90_93&products_id=2242

In any case, a solution for one should be a solution for all as I'm virtually certain that this has nothing to do with one specific board vs another.

Thanks so much Paul.
 
Hm.
Did you read this comment:
Code:
boolean readPassiveTargetID(uint8_t cardbaudrate, uint8_t * uid, uint8_t * uidLength, uint16_t timeout = 0);
[U][I][B] //timeout 0 means no timeout - will block forever.[/B][/I][/U]

Thanks for the idea! I actually did try adding a timeout value to that call at one point in my debugging journey (I believe I put the value '10' in there) and I recall it not solving things, but I will try again now just to be sure.
 
I just tried moving the reset pin to 8 as an experiment (after removing the device that was on Serial3).

What is the significance of the RESET pin for driving the ILI9341 on a shared SPI?
 
...without setting the timeout it will _never_work.. it can't.

edit: there's a loop in the code, that never stops if timeout is 0.
 
Last edited:
When I change the timeout value to 100, the loop does proceed in the absence of a tag - of course it slows everything down because of what effectively becomes a 100ms delay, but I can mess around with that code (maybe see if the IRQ pin, which is normally triggered when using the I2C interface, can also be a pin change interrupt when the module's connected to SPI - this way I could theoretically avoid polling altogether). Thanks for the pointer.

Unfortunately, I still have an issue...

My actual code uses the Pixels library to drive the ILI9341 because of two primary features that I haven't found elsewhere:

The first is called "drawCompressedBitmap". Using PD4ML's companion application "Pixelmeister", you can import an image (most types supported: png, jpg, bmp) into the software and it will substantially reduce the size of the image (with no noticeable reduction in quality) and export it as an array that you can paste into your sketch to print.

The second is the ability to import almost any font on your computer and export it as a data array (with a fixed size) for use in the sketch. The nice thing here is that antialiasing is supported, which means printing (and cleaning) text looks nice on the LCD.

As Paul mentioned, the library isn't written with the newer SPI transactions methods, and so it does not work even with a timeout added to the tag read function.

Having limited experience with low-level SPI-related programming, I'm wondering what either of you would advise:

Should I try to add SPI transactions to the Pixels library (which would allow me to continue using my existing code) or should I try to get those functions I use from the Pixels library working in Paul's ILI9341_t3 library? Or are both ideas bound to take loads of time...?

Thank you all!
 
Yes, that's how that timeout works. If you need an other behavior,, you have to rewrite that code inside the library.

The T3- ILI9341 Library has hundrets of fonts available.
"drawCompressedBitmap" could be done too. Can you give us a link ?
 
Yes, that's how that timeout works. If you need an other behavior,, you have to rewrite that code inside the library.

The T3- ILI9341 Library has hundrets of fonts available.
"drawCompressedBitmap" could be done too. Can you give us a link ?

Well if you're able help me get the two functions I still rely on from the Pixels library to work in the ILI9341_t3 library, you have no idea how huge that would be for me.

Below is a working sketch using the Pixels library with the ILI9341 2.8" shield, and here is the link to the Pixels library:
https://github.com/zxfr/Pixels

And this is what it looks like on the display (both the logo image and the font were converted to those arrays you see in the sketch from png/ttf files on my computer using the Pixelmeister software):

IMG_1243.jpg

View attachment pixelsFunctionsExample.ino

Code:
#include <Wire.h>
#include <SPI.h>
#include <TimeLib.h>
#include <Pixels_SPIhw.h>
#include <Pixels_ILI9341.h>

#define LCD_BL       (5)
#define LCD_RESET    (2)
#define LCD_DC       (9)
#define LCD_CS       (10)
#define LCD_MOSI     (11)
#define LCD_MISO     (12)
#define LCD_SCLK     (13)

extern prog_uint8_t streamsLogo[759] PROGMEM;
extern prog_uchar Avenir16[8400] PROGMEM;

Pixels pxs(320, 240);

void setup() {
  pxs.setSpiPins(LCD_SCLK, LCD_MOSI, LCD_CS, LCD_RESET, LCD_DC);
  pxs.init(); pxs.setOriginAbsolute(); 
  pinMode(LCD_BL, OUTPUT); analogWrite(LCD_BL, 255);
  pxs.setBackground(0, 0, 0); pxs.clear();

  // 1. Drawing compressed bitmaps using prog_uchar arrays (as below)
  pxs.drawCompressedBitmap(150, 75, streamsLogo);

  //...and...

  // 2. Printing antialiased fonts
  pxs.setFont(Avenir16);
  pxs.setColor(255, 255, 255);
  pxs.print(45, 150, "thank you for your help!");
}

void loop() {
  while (1) {
    delay(500);
  }

}

prog_uint8_t streamsLogo[759] PROGMEM = {
  0x5A,0x00,0x02,0xEB,0x00,0x06,0x20,0xFD,0x00,0x1C,0x00,0x1C,0x00,0x4F,0x8C,0x14,0x91,0x4A,0x4A,0xA3,
  0xDB,0xBD,0x18,0x71,0xA9,0xEF,0x61,0x4B,0x98,0x29,0x32,0xFD,0x5F,0x14,0xA4,0x8A,0x5E,0xB5,0xDE,0xE9,
  0xE7,0xFC,0xD1,0xEE,0xBE,0x5E,0xE0,0x31,0x83,0x3F,0x53,0xDE,0xAD,0x3A,0xFC,0xDB,0x73,0x87,0x16,0xA9,
  0x64,0xE3,0xCE,0xAB,0xD6,0xBF,0x30,0x79,0xE3,0xB5,0xEB,0xDC,0x83,0xD0,0x00,0x00,0x60,0x05,0x09,0x02,
  0xA8,0x4B,0x04,0xAA,0x39,0x82,0x0F,0xAF,0x99,0x08,0x50,0xEF,0x2E,0xFC,0x39,0x4E,0x3C,0xF9,0xA0,0x0F,
  0x4E,0x40,0x83,0x0F,0xF0,0x6A,0x91,0xE6,0xFF,0x4E,0xFA,0xA1,0xBC,0x6D,0x2C,0x01,0x43,0x82,0xDE,0x00,
  0xFC,0x3F,0x90,0xF4,0x00,0x10,0xFC,0x1C,0x47,0x2E,0x7F,0xE4,0x57,0xFF,0xB1,0x6D,0x92,0x89,0x3F,0xC5,
  0xF2,0x92,0xDA,0x4E,0x7F,0xDB,0xD1,0xB8,0xFC,0x04,0x7E,0x0D,0xC3,0xE2,0x43,0xB7,0xA7,0x11,0x08,0x13,
  0xEB,0xCB,0x38,0xB2,0x18,0x61,0xFD,0x6E,0x41,0x08,0x90,0x28,0x05,0x1E,0x87,0x5B,0xCC,0xF6,0xFF,0xDB,
  0x91,0xD9,0xC0,0x02,0x89,0x04,0x89,0xBD,0x98,0xAD,0x52,0xDE,0x35,0xEE,0x9E,0xF8,0x48,0x03,0xEB,0xF2,
  0xA5,0x86,0xC9,0xFA,0x81,0x1F,0x61,0xA5,0x6B,0x79,0x33,0xF1,0xD6,0x6B,0x5B,0xD9,0x99,0x28,0x93,0xF8,
  0xB9,0x31,0x8B,0x3F,0xA3,0xE5,0x12,0x15,0x46,0xCB,0xFA,0x1F,0xC5,0xA3,0xA0,0x48,0x97,0xAA,0x42,0x04,
  0x3F,0xFF,0x6B,0x06,0xB2,0x6F,0xEB,0xF2,0x5B,0x7F,0x4B,0x07,0x9E,0x00,0x83,0xEB,0xF1,0x86,0xC5,0xE3,
  0x66,0xFF,0xEB,0x51,0x68,0x67,0x90,0x62,0xFE,0x67,0x36,0x71,0x67,0xFD,0xDC,0x5D,0xE7,0xDE,0xE9,0xCD,
  0x1D,0xF5,0xF8,0xC1,0x26,0x7F,0xD5,0xA3,0x6F,0xD6,0xA9,0xCE,0x42,0x8F,0xC7,0x89,0x69,0x97,0xFC,0xDC,
  0x8C,0x54,0xDD,0x64,0xA4,0x8A,0xE9,0x0D,0xF1,0x49,0x97,0xEC,0x71,0x08,0x04,0x8F,0x91,0xB1,0x7E,0x83,
  0xF0,0x4A,0xA3,0xC9,0x98,0x41,0x45,0xFA,0x59,0x31,0xFF,0xA7,0x47,0x34,0x77,0x35,0xBC,0xFB,0xFE,0x9F,
  0x8C,0x24,0xAE,0xFA,0xF0,0x9F,0x0D,0x9C,0x7C,0xFB,0xB3,0x8F,0x3F,0x3D,0x46,0x14,0x79,0xCA,0x33,0x63,
  0xFE,0x0C,0x60,0xC7,0xEB,0xF8,0x88,0x22,0xD3,0xDF,0xFB,0xA8,0xB5,0x37,0xC5,0x00,0x4D,0x96,0xBF,0xF1,
  0xC2,0x71,0xA7,0xF6,0x68,0xE3,0xF6,0x79,0x42,0x4E,0xF1,0xB2,0xFF,0xEC,0xA1,0x24,0x6F,0xA7,0x85,0x6B,
  0xF6,0x72,0x39,0xAB,0xBF,0xA9,0xA0,0x04,0xD9,0x48,0x35,0x7E,0xFD,0x94,0x5A,0x3A,0xFD,0x7F,0x08,0x03,
  0xFA,0x94,0xB3,0xFD,0x4E,0x25,0x24,0x57,0x35,0xFE,0xDF,0x14,0x91,0x7D,0xFA,0x89,0x12,0xE3,0x63,0xFF,
  0xFB,0xE8,0x48,0x57,0xF5,0xF8,0x42,0x0A,0x27,0x79,0xF7,0xE7,0x26,0x31,0x67,0x59,0x10,0x89,0x3A,0xC9,
  0xAC,0xDB,0xEF,0xCC,0x36,0x30,0xFA,0xA8,0xD9,0x3E,0x24,0x1A,0xFF,0xEB,0xC4,0x00,0x29,0x2A,0xBF,0x4B,
  0x0F,0xF1,0x8A,0x9B,0xFB,0x5C,0x16,0xDF,0xF1,0xC0,0xE3,0xFD,0xBC,0x91,0xBF,0x5E,0x0F,0xE2,0xD6,0xEF,
  0x21,0x47,0xF6,0x78,0xD6,0xBF,0xEF,0xC3,0x38,0xB3,0xDF,0x12,0x51,0xA7,0xF0,0xF2,0x5A,0x75,0xF5,0x90,
  0xD3,0xBF,0xFA,0x38,0x3F,0xD0,0xFC,0x09,0x33,0xFD,0x7E,0x32,0x10,0x23,0xFD,0x15,0xFF,0xFC,0xDA,0x4D,
  0xF1,0xE6,0xB4,0x79,0x78,0x57,0x78,0xF0,0x44,0x2A,0x01,0x8C,0x87,0xC9,0xFF,0xE8,0xD1,0xB0,0xFF,0xFD,
  0xBE,0x30,0x04,0x03,0x0C,0x37,0x38,0x73,0xE3,0xAD,0x64,0xD7,0x87,0x10,0x48,0x14,0x02,0xEA,0x0D,0x1B,
  0x3F,0x17,0x2D,0x7C,0x82,0x60,0xFF,0x60,0xBC,0x2D,0x4E,0x04,0x81,0x5F,0x5F,0x8C,0x20,0xA2,0x5E,0xBD,
  0xFF,0x97,0x91,0xCB,0x1F,0xC7,0x88,0x6D,0xE8,0x3F,0x80,0x14,0x38,0x4D,0x6E,0xF9,0xE5,0xCE,0xDF,0xE2,
  0x0E,0x7E,0xAF,0x18,0x03,0xFC,0xB8,0x6F,0x36,0xFF,0xCD,0xCC,0x01,0x24,0x42,0x2D,0x1C,0x8F,0x9F,0xFF,
  0xCD,0xA0,0x53,0xF1,0x54,0xF6,0xEF,0x3E,0xFB,0x21,0xBC,0x9C,0x49,0x10,0x85,0x00,0x01,0x07,0xC0,0xC4,
  0x10,0x61,0x29,0x22,0x94,0xA3,0x4F,0xAB,0x2F,0xF6,0xF9,0x8C,0x19,0xF8,0xDD,0x41,0x26,0x70,0x90,0xAA,
  0x84,0xBD,0x8A,0x9E,0x40,0x88,0x52,0x24,0x56,0x9D,0x7E,0x1D,0x3F,0xFF,0xCB,0x55,0xBC,0xC4,0xE3,0x4E,
  0x8F,0x35,0xEB,0x5F,0x98,0x3C,0xF1,0xDA,0xF5,0xEE,0x42,0x04,0x7F,0x17,0xCA,0x00,0x98,0x14,0x91,0x5F,
  0x35,0x7B,0xA7,0xBE,0x6D,0xBF,0xE5,0x3D,0xD7,0xDF,0x55,0x31,0xFE,0xAF,0x60,0x04,0xE8,0x14,0x91,0x4B,
  0x4C,0xBF,0xED,0x94,0xA2,0x4A,0xA7,0xBD,0x85,0xAE,0x60,0xA4,0xCB,0xF5,0x7C,0x50,0x04,0xF2,0x1F,};
  // array size:   759
  // image width: 28
  // image height: 28
  /* usage:
    pxs.drawCompressedBitmap(x, y, streamsLogo);
  */
  
prog_uchar Avenir16[8400] PROGMEM = {
  0x5A,0x46,0x02,0x19,0x16,0x00,0x22,0x00,0x29,0x0B,0x82,0x01,0x11,0x41,0x3C,0x3C,0x3C,0x3C,0x3C,0x3D,
  0x3B,0x85,0x24,0x3C,0x10,0x13,0x13,0x13,0x10,0x34,0x47,0x3C,0x10,0x13,0x13,0x13,0x10,0x29,0x3C,0x10,
  0x13,0x13,0x13,0x0B,0x2F,0x47,0x00,0x23,0x00,0x84,0x0C,0x80,0x01,0x07,0x46,0x3B,0x3E,0x42,0x35,0x22,
  0x3A,0x49,0x2F,0x81,0x32,0x42,0x26,0x81,0x38,0x42,0x3D,0x3C,0x45,0x2D,0x81,0x32,0x3D,0x3C,0x1E,0x81,
  0x20,0x1E,0x17,0x82,0x41,0x3C,0x39,0x33,0x2D,0x19,0x81,0x10,0x87,0x13,0x19,0x3B,0x87,0x13,0x20,0x17,
  0x81,0x2A,0x3B,0x3C,0x42,0x3E,0x17,0x22,0x26,0x34,0x1C,0x81,0x30,0x42,0x27,0x81,0x39,0x49,0x2F,0x81,
  0x33,0x42,0x24,0x81,0x29,0x2F,0x26,0x1C,0x19,0x43,0x3C,0x3A,0x22,0x81,0x1E,0x19,0x13,0x87,0x3C,0x10,
  0x13,0x87,0x0B,0x81,0x1E,0x30,0x33,0x3B,0x3C,0x3D,0x81,0x0B,0x13,0x24,0x0B,0x81,0x29,0x3D,0x41,0x26,
  0x81,0x38,0x45,0x3C,0x3E,0x42,0x2C,0x81,0x32,0x42,0x29,0x10,0x3C,0x49,0x3A,0x32,0x3B,0x49,0x00,0x20,
  0x00,0x0B,0x06,0x00,0x00,0x00,0x7F,0x7F,0x58,0x00,0x21,0x00,0x37,0x06,0x81,0x01,0x06,0x3E,0x33,0x33,
  0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x32,0x3D,0x41,0x37,0x22,0x2D,0x41,0x3B,0x8B,0x1C,0x41,0x13,
  0x82,0x3C,0x3E,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x20,0x41,0x1E,0x82,0x3E,0x4E,
  0x3E,0x3A,0x3C,0x41,0x00,0x26,0x00,0x94,0x0F,0x80,0x01,0x06,0x4A,0x3D,0x33,0x33,0x33,0x38,0x4C,0x34,
  0x85,0x24,0x44,0x2F,0x24,0x26,0x26,0x34,0x41,0x38,0x83,0x17,0x0B,0x82,0x27,0x42,0x24,0x85,0x26,0x10,
  0x81,0x17,0x3B,0x42,0x20,0x82,0x3D,0x38,0x82,0x1C,0x32,0x19,0x83,0x0B,0x3E,0x44,0x0B,0x81,0x35,0x2C,
  0x81,0x19,0x43,0x27,0x82,0x13,0x45,0x19,0x81,0x32,0x27,0x81,0x2C,0x43,0x27,0x83,0x1C,0x44,0x17,0x81,
  0x33,0x2D,0x81,0x13,0x42,0x32,0x82,0x20,0x82,0x19,0x42,0x37,0x82,0x3A,0x3B,0x82,0x10,0x19,0x82,0x24,
  0x41,0x2D,0x82,0x17,0x37,0x82,0x1C,0x42,0x2D,0x84,0x1E,0x43,0x30,0x84,0x10,0x3D,0x43,0x39,0x33,0x33,
  0x34,0x44,0x39,0x84,0x37,0x4A,0x3C,0x22,0x85,0x0B,0x3B,0x49,0x83,0x1C,0x3B,0x34,0x82,0x0B,0x49,0x81,
  0x0B,0x33,0x43,0x35,0x82,0x49,0x2A,0x3E,0x45,0x35,0x81,0x41,0x00,0x27,0x00,0x1A,0x06,0x81,0x01,0x11,
  0x3E,0x33,0x33,0x33,0x33,0x33,0x38,0x3B,0x85,0x24,0x41,0x2C,0x26,0x26,0x26,0x24,0x32,0x47,0x00,0x24,
  0x00,0x8B,0x0C,0x80,0x00,0x05,0x44,0x3E,0x3C,0x3C,0x3D,0x47,0x2A,0x3A,0x46,0x2F,0x0B,0x83,0x29,0x45,
  0x33,0x82,0x3C,0x44,0x2D,0x86,0x27,0x44,0x34,0x82,0x20,0x43,0x3D,0x82,0x22,0x3C,0x3D,0x1E,0x82,0x3B,
  0x44,0x2F,0x82,0x3C,0x42,0x33,0x81,0x13,0x44,0x82,0x27,0x45,0x10,0x81,0x35,0x41,0x1C,0x0B,0x82,0x13,
  0x10,0x10,0x13,0x83,0x13,0x10,0x10,0x10,0x13,0x82,0x0B,0x1C,0x26,0x19,0x81,0x17,0x26,0x26,0x26,0x26,
  0x24,0x82,0x19,0x26,0x26,0x26,0x27,0x82,0x1E,0x29,0x41,0x32,0x81,0x1C,0x45,0x13,0x81,0x22,0x44,0x0B,
  0x81,0x3A,0x42,0x3A,0x82,0x2F,0x44,0x30,0x82,0x2A,0x3B,0x3C,0x1E,0x81,0x0B,0x44,0x20,0x81,0x0B,0x45,
  0x1C,0x86,0x34,0x44,0x3E,0x24,0x3A,0x46,0x24,0x83,0x13,0x34,0x4F,0x3D,0x3B,0x3B,0x45,0x00,0x25,0x00,
  0xB7,0x12,0x80,0x01,0x06,0x42,0x3A,0x26,0x26,0x24,0x30,0x4C,0x34,0x85,0x1E,0x4A,0x3E,0x82,0x20,0x3A,
  0x2F,0x82,0x2D,0x49,0x33,0x81,0x17,0x43,0x32,0x81,0x17,0x46,0x37,0x13,0x37,0x30,0x81,0x29,0x43,0x3C,
  0x81,0x13,0x44,0x3D,0x22,0x82,0x24,0x34,0x81,0x13,0x43,0x2F,0x81,0x19,0x43,0x2F,0x83,0x2C,0x41,0x3E,
  0x82,0x1C,0x2F,0x2A,0x82,0x30,0x41,0x38,0x17,0x82,0x20,0x3C,0x43,0x35,0x85,0x26,0x41,0x26,0x82,0x10,
  0x34,0x46,0x3C,0x2C,0x2A,0x29,0x38,0x32,0x0B,0x82,0x2D,0x4B,0x3B,0x1C,0x82,0x20,0x39,0x2C,0x20,0x1C,
  0x26,0x3A,0x45,0x3E,0x27,0x82,0x10,0x34,0x3E,0x10,0x85,0x37,0x43,0x32,0x0B,0x82,0x29,0x42,0x22,0x81,
  0x10,0x38,0x3C,0x1E,0x81,0x0B,0x41,0x3A,0x1C,0x82,0x1C,0x3A,0x43,0x82,0x3A,0x43,0x0B,0x81,0x3A,0x17,
  0x81,0x0B,0x33,0x44,0x3E,0x82,0x44,0x1C,0x81,0x38,0x35,0x27,0x3E,0x46,0x0B,0x81,0x34,0x42,0x3C,0x82,
  0x3B,0x49,0x29,0x82,0x2C,0x2F,0x10,0x81,0x19,0x4B,0x20,0x84,0x13,0x3C,0x4C,0x35,0x32,0x32,0x33,0x43,
  0x00,0x2A,0x00,0x40,0x0A,0x80,0x01,0x0E,0x43,0x29,0x19,0x48,0x0B,0x81,0x39,0x41,0x30,0x2C,0x44,0x29,
  0x81,0x26,0x26,0x82,0x3A,0x3E,0x33,0x34,0x27,0x84,0x2F,0x41,0x3B,0x84,0x0B,0x81,0x38,0x43,0x26,0x26,
  0x1C,0x83,0x17,0x3A,0x44,0x2F,0x81,0x19,0x17,0x82,0x3B,0x43,0x17,0x81,0x35,0x41,0x20,0x1C,0x44,0x19,
  0x81,0x49,0x3C,0x45,0x00,0x2B,0x00,0x3D,0x0F,0x81,0x05,0x08,0x45,0x1C,0x17,0x4A,0x0B,0x81,0x4A,0x10,
  0x81,0x4A,0x10,0x81,0x4A,0x10,0x81,0x45,0x1C,0x13,0x17,0x17,0x17,0x82,0x17,0x17,0x17,0x17,0x19,0x19,
  0x8B,0x3D,0x3B,0x3B,0x3B,0x3C,0x82,0x3B,0x3B,0x3B,0x3B,0x3C,0x45,0x10,0x81,0x4A,0x10,0x81,0x4A,0x0B,
  0x81,0x4A,0x22,0x13,0x51,0x00,0x28,0x00,0x45,0x06,0x80,0x01,0x03,0x47,0x3B,0x3C,0x34,0x33,0x35,0x3C,
  0x3C,0x4B,0x34,0x1C,0x13,0x87,0x17,0x26,0x35,0x45,0x3E,0x2A,0x10,0x83,0x0B,0x19,0x26,0x26,0x26,0x17,
  0x84,0x13,0x2F,0x42,0x34,0x0B,0x82,0x0B,0x29,0x38,0x3E,0x45,0x3D,0x35,0x22,0x83,0x10,0x39,0x20,0x82,
  0x2F,0x3E,0x4B,0x3C,0x27,0x82,0x33,0x3C,0x27,0x3D,0x4F,0x3A,0x34,0x41,0x00,0x29,0x00,0x3E,0x06,0x80,
  0x01,0x03,0x2D,0x81,0x19,0x38,0x4D,0x33,0x10,0x81,0x35,0x27,0x83,0x1C,0x34,0x3E,0x47,0x3C,0x2F,0x13,
  0x83,0x35,0x41,0x37,0x19,0x83,0x0B,0x1C,0x26,0x32,0x34,0x2D,0x26,0x19,0x84,0x26,0x3C,0x44,0x39,0x26,
  0x13,0x89,0x13,0x2D,0x3C,0x49,0x3B,0x33,0x34,0x2C,0x24,0x30,0x33,0x34,0x3C,0x5B,0x00,0x2E,0x00,0x16,
  0x06,0x01,0x0F,0x01,0x37,0x13,0x1E,0x3E,0x22,0x82,0x3A,0x2D,0x82,0x3C,0x41,0x3C,0x3E,0x41,0x00,0x2F,
  0x00,0x3C,0x08,0x80,0x01,0x06,0x4D,0x3A,0x26,0x0B,0x81,0x37,0x4B,0x33,0x1C,0x83,0x19,0x3A,0x48,0x3C,
  0x2A,0x10,0x83,0x26,0x3A,0x48,0x37,0x22,0x83,0x17,0x30,0x3D,0x47,0x3E,0x30,0x17,0x83,0x20,0x37,0x48,
  0x3A,0x27,0x0B,0x82,0x10,0x2A,0x3C,0x49,0x2C,0x83,0x1C,0x33,0x4C,0x35,0x81,0x26,0x39,0x4E,0x00,0x2C,
  0x00,0x1E,0x06,0x80,0x0F,0x03,0x45,0x3C,0x43,0x39,0x2C,0x1C,0x81,0x3D,0x2D,0x10,0x84,0x3E,0x1E,0x82,
  0x19,0x2F,0x3C,0x41,0x2D,0x2A,0x3B,0x4B,0x00,0x2D,0x00,0x19,0x07,0x00,0x0B,0x00,0x32,0x26,0x27,0x27,
  0x27,0x26,0x37,0x22,0x85,0x22,0x3B,0x2F,0x2F,0x2F,0x2F,0x2F,0x35,0x00,0x33,0x00,0x71,0x0C,0x00,0x01,
  0x00,0x43,0x3C,0x33,0x30,0x33,0x3B,0x46,0x24,0x85,0x20,0x44,0x22,0x82,0x13,0x26,0x19,0x82,0x20,0x42,
  0x3D,0x10,0x81,0x2A,0x43,0x30,0x82,0x3B,0x43,0x37,0x45,0x13,0x81,0x33,0x49,0x13,0x81,0x34,0x48,0x2F,
  0x82,0x3D,0x45,0x32,0x29,0x1C,0x82,0x2F,0x45,0x3B,0x84,0x17,0x47,0x2C,0x22,0x17,0x82,0x1C,0x49,0x33,
  0x82,0x32,0x49,0x26,0x81,0x24,0x49,0x34,0x81,0x26,0x41,0x32,0x13,0x1E,0x45,0x22,0x81,0x24,0x41,0x2C,
  0x82,0x2C,0x43,0x2C,0x82,0x2F,0x42,0x13,0x82,0x0B,0x19,0x0B,0x82,0x19,0x43,0x3D,0x24,0x85,0x26,0x46,
  0x3E,0x39,0x38,0x39,0x3E,0x44,0x00,0x32,0x00,0x67,0x0C,0x00,0x01,0x00,0x44,0x34,0x30,0x32,0x37,0x46,
  0x30,0x85,0x0B,0x34,0x43,0x34,0x83,0x20,0x1E,0x83,0x37,0x42,0x1C,0x81,0x13,0x3C,0x42,0x3C,0x10,0x81,
  0x22,0x41,0x3C,0x0B,0x81,0x34,0x44,0x32,0x81,0x13,0x43,0x3E,0x45,0x33,0x81,0x13,0x49,0x19,0x81,0x24,
  0x48,0x2A,0x82,0x38,0x47,0x2D,0x82,0x24,0x47,0x2F,0x82,0x19,0x47,0x2F,0x82,0x17,0x47,0x30,0x82,0x17,
  0x47,0x30,0x82,0x19,0x47,0x32,0x82,0x19,0x47,0x37,0x82,0x17,0x3E,0x41,0x3E,0x3E,0x3E,0x3E,0x42,0x33,
  0x89,0x17,0x41,0x33,0x81,0x0B,0x87,0x17,0x41,0x00,0x31,0x00,0x3A,0x0C,0x81,0x01,0x07,0x44,0x3C,0x4F,
  0x2C,0x81,0x2A,0x4D,0x34,0x82,0x22,0x4C,0x3B,0x82,0x1E,0x4D,0x10,0x82,0x32,0x33,0x33,0x33,0x33,0x33,
  0x33,0x33,0x33,0x33,0x33,0x33,0x34,0x3B,0x90,0x3E,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  0x26,0x26,0x26,0x26,0x26,0x27,0x51,0x00,0x30,0x00,0x74,0x0C,0x80,0x01,0x06,0x44,0x3A,0x32,0x26,0x26,
  0x26,0x26,0x26,0x27,0x33,0x3C,0x46,0x39,0x19,0x8A,0x1E,0x3C,0x43,0x34,0x83,0x17,0x26,0x2D,0x33,0x34,
  0x2A,0x26,0x13,0x83,0x3A,0x42,0x82,0x13,0x38,0x48,0x35,0x0B,0x81,0x17,0x41,0x34,0x82,0x3D,0x4A,0x39,
  0x82,0x3B,0x30,0x81,0x20,0x4C,0x17,0x81,0x38,0x30,0x81,0x1C,0x4C,0x13,0x81,0x38,0x38,0x82,0x38,0x4A,
  0x32,0x82,0x3D,0x41,0x13,0x82,0x2C,0x3C,0x46,0x3B,0x27,0x82,0x20,0x42,0x3B,0x10,0x83,0x17,0x19,0x26,
  0x26,0x17,0x13,0x83,0x19,0x3E,0x43,0x3E,0x2A,0x13,0x88,0x17,0x2F,0x48,0x3B,0x33,0x33,0x33,0x33,0x33,
  0x34,0x3C,0x45,0x00,0x37,0x00,0x56,0x0C,0x80,0x01,0x07,0x3E,0x32,0x34,0x4E,0x3B,0x81,0x0B,0x4D,0x3D,
  0x3B,0x81,0x13,0x4B,0x37,0x20,0x0B,0x3B,0x81,0x13,0x49,0x33,0x19,0x83,0x3B,0x81,0x13,0x46,0x3E,0x2F,
  0x13,0x83,0x17,0x32,0x3B,0x81,0x13,0x44,0x3C,0x2A,0x0B,0x83,0x1E,0x37,0x42,0x3B,0x81,0x13,0x42,0x3A,
  0x24,0x84,0x26,0x3A,0x44,0x3B,0x81,0x10,0x38,0x1E,0x83,0x10,0x2C,0x3D,0x46,0x3B,0x85,0x17,0x32,0x49,
  0x3B,0x83,0x20,0x37,0x4C,0x33,0x33,0x3A,0x4D,0x00,0x36,0x00,0x6F,0x0C,0x80,0x01,0x06,0x49,0x3D,0x33,
  0x33,0x33,0x33,0x3D,0x4A,0x3E,0x2A,0x0B,0x85,0x30,0x48,0x32,0x0B,0x83,0x1C,0x20,0x83,0x34,0x45,0x3A,
  0x1C,0x84,0x38,0x42,0x3D,0x19,0x81,0x10,0x44,0x2A,0x85,0x2F,0x44,0x3C,0x82,0x3B,0x41,0x35,0x10,0x82,
  0x13,0x38,0x13,0x81,0x3C,0x45,0x17,0x81,0x38,0x3C,0x83,0x2A,0x42,0x0B,0x81,0x3B,0x45,0x13,0x81,0x38,
  0x3B,0x81,0x19,0x3A,0x43,0x13,0x81,0x27,0x44,0x38,0x82,0x3C,0x41,0x35,0x45,0x2C,0x82,0x2C,0x3D,0x41,
  0x35,0x0B,0x81,0x1C,0x49,0x17,0x87,0x3B,0x49,0x3E,0x26,0x84,0x1C,0x3A,0x4C,0x3D,0x3B,0x3B,0x3B,0x44,
  0x00,0x35,0x00,0x74,0x0C,0x00,0x01,0x00,0x42,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3C,0x43,0x3B,0x88,
  0x3B,0x42,0x33,0x82,0x13,0x13,0x13,0x13,0x13,0x10,0x3C,0x42,0x33,0x81,0x13,0x49,0x33,0x81,0x13,0x49,
  0x33,0x81,0x13,0x49,0x33,0x82,0x35,0x32,0x34,0x3B,0x45,0x33,0x86,0x20,0x44,0x33,0x81,0x0B,0x20,0x20,
  0x0B,0x82,0x19,0x43,0x3E,0x34,0x44,0x27,0x82,0x30,0x49,0x1C,0x81,0x26,0x49,0x33,0x81,0x17,0x49,0x33,
  0x81,0x1C,0x41,0x3E,0x2A,0x22,0x45,0x1C,0x81,0x26,0x41,0x33,0x82,0x26,0x42,0x3E,0x24,0x82,0x35,0x42,
  0x19,0x83,0x19,0x83,0x27,0x44,0x26,0x84,0x0B,0x2F,0x46,0x3E,0x39,0x38,0x3A,0x45,0x00,0x34,0x00,0x68,
  0x0C,0x80,0x01,0x07,0x4A,0x30,0x24,0x24,0x3A,0x4B,0x3A,0x1C,0x83,0x37,0x4A,0x2A,0x82,0x13,0x82,0x37,
  0x48,0x35,0x13,0x82,0x27,0x41,0x20,0x81,0x37,0x46,0x3D,0x22,0x82,0x19,0x39,0x42,0x1E,0x81,0x37,0x45,
  0x30,0x83,0x30,0x44,0x1E,0x81,0x37,0x43,0x3E,0x1C,0x82,0x26,0x3E,0x45,0x1E,0x81,0x37,0x43,0x3B,0x83,
  0x19,0x17,0x17,0x17,0x17,0x17,0x17,0x82,0x13,0x17,0x17,0x17,0x3C,0x90,0x41,0x3C,0x3B,0x3B,0x3B,0x3B,
  0x3B,0x3B,0x3B,0x3B,0x3D,0x1C,0x81,0x32,0x3C,0x3B,0x3C,0x4B,0x19,0x81,0x37,0x4E,0x37,0x32,0x3C,0x43,
  0x00,0x3B,0x00,0x2C,0x06,0x80,0x07,0x03,0x4D,0x3C,0x41,0x39,0x32,0x39,0x47,0x39,0x2C,0x1C,0x81,0x3D,
  0x0B,0x81,0x0B,0x45,0x2D,0x10,0x84,0x3E,0x83,0x45,0x1E,0x82,0x19,0x2F,0x3C,0x41,0x38,0x33,0x38,0x45,
  0x2D,0x2A,0x3B,0x53,0x00,0x3A,0x00,0x22,0x06,0x01,0x07,0x01,0x32,0x81,0x10,0x3D,0x22,0x82,0x3A,0x33,
  0x81,0x13,0x3D,0x54,0x37,0x13,0x1E,0x3E,0x22,0x82,0x3A,0x2D,0x82,0x3C,0x41,0x3C,0x3E,0x41,0x00,0x39,
  0x00,0x6C,0x0C,0x80,0x01,0x07,0x43,0x3B,0x33,0x33,0x33,0x37,0x4B,0x2A,0x85,0x19,0x3D,0x48,0x2D,0x82,
  0x10,0x19,0x19,0x82,0x13,0x47,0x3E,0x82,0x22,0x43,0x33,0x82,0x2F,0x44,0x3A,0x26,0x35,0x81,0x0B,0x45,
  0x27,0x81,0x1E,0x43,0x2A,0x82,0x30,0x81,0x22,0x45,0x38,0x81,0x19,0x41,0x37,0x13,0x82,0x13,0x32,0x81,
  0x20,0x45,0x35,0x81,0x19,0x29,0x83,0x29,0x41,0x38,0x82,0x3C,0x44,0x1E,0x84,0x19,0x3A,0x43,0x0B,0x81,
  0x13,0x38,0x41,0x3C,0x26,0x84,0x30,0x45,0x35,0x83,0x13,0x84,0x24,0x3D,0x47,0x37,0x17,0x84,0x22,0x3A,
  0x4B,0x3B,0x3B,0x3B,0x3C,0x49,0x00,0x38,0x00,0x84,0x0C,0x80,0x01,0x06,0x4A,0x3E,0x35,0x32,0x38,0x3E,
  0x45,0x3B,0x26,0x20,0x20,0x2C,0x3E,0x41,0x30,0x0B,0x84,0x33,0x43,0x37,0x85,0x13,0x30,0x82,0x10,0x17,
  0x83,0x35,0x42,0x0B,0x82,0x30,0x32,0x10,0x83,0x27,0x42,0x3C,0x17,0x81,0x13,0x41,0x37,0x82,0x3A,0x42,
  0x3D,0x82,0x19,0x44,0x3B,0x82,0x3B,0x30,0x81,0x20,0x44,0x2A,0x81,0x2D,0x45,0x17,0x81,0x38,0x32,0x81,
  0x1C,0x44,0x26,0x81,0x2A,0x45,0x13,0x81,0x38,0x39,0x82,0x32,0x42,0x38,0x82,0x10,0x44,0x37,0x82,0x3D,
  0x41,0x19,0x82,0x1E,0x20,0x84,0x19,0x39,0x3B,0x33,0x82,0x1C,0x42,0x3C,0x13,0x84,0x22,0x3A,0x87,0x3B,
  0x44,0x33,0x33,0x33,0x38,0x42,0x3A,0x1E,0x0B,0x81,0x0B,0x1C,0x3B,0x4D,0x3D,0x3B,0x3E,0x44,0x00,0x3F,
  0x00,0x58,0x0B,0x80,0x01,0x06,0x43,0x35,0x34,0x4E,0x3D,0x19,0x82,0x4E,0x19,0x82,0x17,0x4D,0x39,0x82,
  0x30,0x46,0x3C,0x3C,0x3C,0x42,0x33,0x3C,0x41,0x32,0x81,0x19,0x45,0x3A,0x19,0x82,0x19,0x41,0x1E,0x82,
  0x3E,0x30,0x81,0x24,0x44,0x38,0x84,0x17,0x41,0x13,0x82,0x3C,0x35,0x82,0x3C,0x42,0x37,0x82,0x13,0x38,
  0x3C,0x3C,0x41,0x37,0x29,0x2F,0x41,0x3E,0x82,0x0B,0x26,0x22,0x82,0x17,0x4A,0x32,0x85,0x17,0x3E,0x4B,
  0x3A,0x27,0x26,0x24,0x2F,0x5D,0x00,0x3E,0x00,0x49,0x0F,0x01,0x05,0x01,0x1C,0x22,0x3B,0x4A,0x13,0x82,
  0x20,0x39,0x48,0x3E,0x2C,0x83,0x19,0x37,0x49,0x2F,0x10,0x82,0x17,0x33,0x49,0x32,0x13,0x82,0x10,0x30,
  0x49,0x35,0x1C,0x82,0x17,0x48,0x3A,0x22,0x82,0x13,0x46,0x37,0x19,0x82,0x0B,0x2A,0x3D,0x44,0x33,0x17,
  0x82,0x10,0x2F,0x45,0x30,0x10,0x82,0x13,0x32,0x46,0x17,0x82,0x19,0x35,0x48,0x13,0x1E,0x38,0x4A,0x00,
  0x3C,0x00,0x49,0x0F,0x01,0x05,0x01,0x49,0x3D,0x27,0x19,0x48,0x3B,0x24,0x82,0x10,0x46,0x39,0x20,0x83,
  0x27,0x3C,0x44,0x37,0x1C,0x83,0x2A,0x3E,0x44,0x34,0x17,0x82,0x0B,0x2D,0x46,0x19,0x82,0x17,0x33,0x48,
  0x17,0x82,0x19,0x37,0x49,0x2F,0x10,0x82,0x13,0x32,0x49,0x33,0x17,0x82,0x10,0x2F,0x49,0x35,0x19,0x83,
  0x2C,0x3E,0x48,0x39,0x1E,0x82,0x13,0x4A,0x3B,0x24,0x13,0x41,0x00,0x44,0x00,0x80,0x10,0x81,0x01,0x07,
  0x3D,0x24,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x27,0x3B,0x90,0x3B,
  0x81,0x10,0x34,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x32,0x82,0x3B,0x81,0x13,0x4C,0x82,
  0x3B,0x81,0x13,0x4B,0x3E,0x82,0x3B,0x81,0x13,0x4B,0x3E,0x82,0x3B,0x81,0x0B,0x4B,0x3C,0x82,0x3E,0x82,
  0x3A,0x4A,0x34,0x81,0x10,0x41,0x17,0x81,0x29,0x4A,0x1E,0x81,0x22,0x41,0x2C,0x82,0x3A,0x48,0x34,0x82,
  0x34,0x42,0x82,0x0B,0x3B,0x46,0x37,0x82,0x17,0x43,0x35,0x83,0x29,0x3B,0x3B,0x3B,0x3A,0x24,0x83,0x3A,
  0x44,0x33,0x89,0x0B,0x38,0x46,0x3B,0x24,0x85,0x0B,0x27,0x3E,0x49,0x3D,0x3C,0x35,0x38,0x3C,0x3E,0x45,
  0x00,0x45,0x00,0x73,0x0D,0x01,0x01,0x00,0x3E,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3C,0x41,
  0x33,0x89,0x10,0x41,0x33,0x81,0x0B,0x13,0x13,0x13,0x13,0x13,0x13,0x10,0x1C,0x41,0x33,0x81,0x26,0x49,
  0x33,0x81,0x26,0x49,0x33,0x81,0x26,0x49,0x33,0x81,0x26,0x49,0x33,0x81,0x1C,0x33,0x32,0x32,0x32,0x32,
  0x32,0x30,0x3B,0x41,0x33,0x89,0x32,0x41,0x33,0x81,0x13,0x26,0x24,0x24,0x24,0x24,0x24,0x22,0x38,0x41,
  0x33,0x81,0x27,0x49,0x33,0x81,0x26,0x49,0x33,0x81,0x26,0x49,0x33,0x81,0x26,0x49,0x33,0x81,0x24,0x41,
  0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x41,0x33,0x8A,0x3B,0x33,0x89,0x0B,0x3D,0x00,0x46,0x00,0x67,0x0C,
  0x01,0x01,0x00,0x3E,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x41,0x33,0x89,0x2C,0x33,0x81,0x0B,
  0x13,0x13,0x13,0x13,0x13,0x13,0x0B,0x27,0x33,0x81,0x26,0x48,0x33,0x81,0x26,0x48,0x33,0x81,0x26,0x48,
  0x33,0x81,0x26,0x48,0x33,0x81,0x1C,0x33,0x32,0x32,0x32,0x32,0x32,0x33,0x41,0x33,0x88,0x0B,0x41,0x33,
  0x81,0x13,0x26,0x24,0x24,0x24,0x24,0x24,0x29,0x41,0x33,0x81,0x27,0x48,0x33,0x81,0x26,0x48,0x33,0x81,
  0x26,0x48,0x33,0x81,0x26,0x48,0x33,0x81,0x26,0x48,0x33,0x81,0x26,0x48,0x33,0x81,0x27,0x48,0x00,0x47,
  0x00,0x94,0x11,0x00,0x01,0x01,0x46,0x37,0x2D,0x29,0x29,0x2D,0x37,0x48,0x2D,0x0B,0x87,0x2C,0x45,0x1C,
  0x83,0x20,0x2C,0x2C,0x1E,0x83,0x1E,0x43,0x1C,0x82,0x26,0x3E,0x44,0x3D,0x1E,0x81,0x2F,0x42,0x30,0x82,
  0x2C,0x48,0x3A,0x42,0x3E,0x10,0x81,0x1C,0x4C,0x39,0x82,0x37,0x4C,0x33,0x81,0x10,0x46,0x3B,0x30,0x32,
  0x32,0x32,0x32,0x3E,0x33,0x81,0x13,0x46,0x22,0x85,0x3B,0x33,0x81,0x13,0x46,0x30,0x24,0x26,0x1C,0x82,
  0x3B,0x33,0x81,0x0B,0x3E,0x48,0x3E,0x82,0x3B,0x3B,0x82,0x33,0x48,0x3C,0x82,0x3B,0x41,0x17,0x81,0x17,
  0x48,0x3C,0x82,0x3B,0x41,0x35,0x82,0x24,0x47,0x3D,0x82,0x3B,0x42,0x24,0x82,0x1C,0x3A,0x44,0x3D,0x2A,
  0x82,0x3B,0x43,0x26,0x83,0x17,0x1C,0x1E,0x17,0x84,0x3C,0x44,0x35,0x17,0x86,0x10,0x27,0x3C,0x47,0x3C,
  0x35,0x32,0x33,0x35,0x3B,0x44,0x00,0x40,0x00,0xD9,0x12,0x80,0x01,0x06,0x45,0x3E,0x34,0x33,0x26,0x27,
  0x33,0x35,0x4A,0x30,0x0B,0x86,0x13,0x34,0x47,0x1E,0x82,0x17,0x2D,0x34,0x35,0x2C,0x17,0x82,0x26,0x45,
  0x1E,0x82,0x30,0x42,0x3B,0x34,0x35,0x33,0x2A,0x82,0x27,0x43,0x2F,0x82,0x39,0x41,0x32,0x13,0x84,0x17,
  0x2F,0x82,0x37,0x42,0x0B,0x81,0x33,0x41,0x26,0x83,0x22,0x22,0x82,0x22,0x2D,0x81,0x19,0x41,0x38,0x81,
  0x19,0x41,0x2F,0x82,0x26,0x3D,0x42,0x37,0x82,0x41,0x0B,0x81,0x3C,0x2D,0x81,0x2F,0x41,0x10,0x81,0x29,
  0x45,0x82,0x41,0x27,0x81,0x35,0x29,0x81,0x39,0x3E,0x81,0x0B,0x45,0x30,0x81,0x1C,0x41,0x2D,0x81,0x32,
  0x29,0x81,0x38,0x3E,0x82,0x3D,0x43,0x2D,0x82,0x34,0x41,0x2F,0x81,0x33,0x2F,0x81,0x2C,0x41,0x17,0x81,
  0x10,0x27,0x26,0x10,0x83,0x10,0x41,0x26,0x81,0x37,0x39,0x81,0x13,0x41,0x34,0x85,0x13,0x26,0x82,0x41,
  0x0B,0x81,0x3D,0x41,0x10,0x81,0x2F,0x22,0x82,0x1C,0x2D,0x39,0x41,0x3A,0x81,0x19,0x32,0x81,0x1E,0x42,
  0x33,0x82,0x24,0x33,0x3D,0x43,0x39,0x0B,0x81,0x24,0x82,0x39,0x43,0x26,0x82,0x22,0x34,0x3A,0x34,0x24,
  0x82,0x22,0x0B,0x81,0x2D,0x45,0x2D,0x87,0x2C,0x41,0x81,0x2D,0x47,0x3B,0x30,0x24,0x26,0x24,0x2F,0x3B,
  0x42,0x3C,0x56,0x00,0x41,0x00,0x70,0x0F,0x80,0x01,0x07,0x4D,0x38,0x22,0x82,0x4B,0x33,0x19,0x84,0x48,
  0x3D,0x2C,0x10,0x83,0x10,0x2D,0x3D,0x46,0x3A,0x26,0x85,0x34,0x47,0x34,0x1C,0x83,0x0B,0x22,0x81,0x10,
  0x45,0x3E,0x2F,0x13,0x83,0x19,0x32,0x3E,0x3E,0x81,0x10,0x44,0x3C,0x83,0x0B,0x26,0x39,0x43,0x3C,0x81,
  0x10,0x44,0x3B,0x83,0x2A,0x45,0x3C,0x81,0x10,0x45,0x26,0x84,0x24,0x39,0x42,0x3C,0x81,0x10,0x46,0x3D,
  0x2D,0x10,0x83,0x19,0x32,0x3B,0x81,0x10,0x49,0x33,0x19,0x85,0x10,0x4B,0x39,0x24,0x84,0x1E,0x35,0x4B,
  0x3C,0x2A,0x0B,0x83,0x13,0x2F,0x4B,0x3E,0x32,0x17,0x83,0x4E,0x37,0x20,0x0B,0x00,0x42,0x00,0x86,0x0E,
  0x81,0x01,0x07,0x3E,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x34,
  0x3B,0x90,0x3B,0x81,0x0B,0x26,0x26,0x26,0x26,0x1E,0x81,0x17,0x27,0x26,0x26,0x26,0x24,0x82,0x3B,0x81,
  0x13,0x44,0x35,0x81,0x29,0x45,0x82,0x3B,0x81,0x13,0x44,0x34,0x81,0x29,0x44,0x3E,0x82,0x3B,0x81,0x13,
  0x44,0x34,0x81,0x29,0x44,0x3E,0x82,0x3D,0x82,0x44,0x2C,0x81,0x26,0x44,0x3B,0x82,0x41,0x82,0x2C,0x42,
  0x3E,0x10,0x81,0x10,0x44,0x30,0x81,0x10,0x41,0x20,0x82,0x22,0x29,0x13,0x83,0x2C,0x42,0x3B,0x0B,0x81,
  0x26,0x41,0x3C,0x85,0x10,0x2C,0x82,0x17,0x1E,0x83,0x3B,0x42,0x3B,0x26,0x1C,0x1C,0x29,0x3D,0x41,0x22,
  0x85,0x34,0x4B,0x37,0x2A,0x24,0x30,0x3C,0x53,0x00,0x43,0x00,0x77,0x0F,0x00,0x01,0x00,0x46,0x37,0x2D,
  0x29,0x29,0x30,0x3A,0x47,0x2D,0x0B,0x86,0x17,0x3A,0x44,0x1C,0x83,0x20,0x2C,0x27,0x10,0x83,0x37,0x42,
  0x1C,0x82,0x26,0x3E,0x44,0x30,0x82,0x2D,0x41,0x30,0x82,0x2C,0x47,0x34,0x35,0x41,0x3E,0x10,0x81,0x1C,
  0x4B,0x39,0x82,0x37,0x4B,0x33,0x81,0x10,0x4C,0x33,0x81,0x13,0x4C,0x33,0x81,0x13,0x4C,0x33,0x81,0x0B,
  0x3E,0x4B,0x3B,0x82,0x33,0x4C,0x17,0x81,0x17,0x4C,0x35,0x82,0x24,0x47,0x38,0x81,0x33,0x42,0x24,0x82,
  0x1C,0x3A,0x44,0x32,0x82,0x10,0x43,0x26,0x83,0x17,0x1C,0x19,0x0B,0x83,0x3B,0x44,0x35,0x17,0x86,0x26,
  0x3D,0x47,0x3C,0x35,0x32,0x33,0x37,0x44,0x00,0x4C,0x00,0x40,0x0B,0x81,0x01,0x07,0x3E,0x33,0x33,0x33,
  0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x3B,0x90,0x3E,0x26,0x26,0x26,0x26,
  0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x24,0x82,0x4F,0x82,0x4E,0x3E,0x82,0x4E,0x3E,0x82,0x4E,
  0x3E,0x82,0x4E,0x3E,0x82,0x4E,0x3E,0x82,0x4E,0x3E,0x13,0x17,0x00,0x4D,0x00,0x92,0x14,0x81,0x01,0x07,
  0x3E,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x3B,0x90,0x3B,
  0x84,0x26,0x29,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x27,0x3D,0x17,0x83,0x13,0x2D,0x3D,0x4B,
  0x38,0x24,0x84,0x22,0x37,0x4B,0x3D,0x2D,0x13,0x83,0x17,0x2F,0x3E,0x4B,0x35,0x20,0x83,0x0B,0x27,0x3A,
  0x4B,0x3B,0x29,0x0B,0x83,0x1C,0x34,0x4C,0x22,0x84,0x49,0x3D,0x2D,0x13,0x83,0x17,0x30,0x47,0x39,0x24,
  0x84,0x22,0x37,0x47,0x32,0x19,0x83,0x10,0x2A,0x3C,0x46,0x3B,0x29,0x0B,0x83,0x1C,0x33,0x47,0x3E,0x1E,
  0x83,0x10,0x29,0x3B,0x49,0x3B,0x84,0x22,0x29,0x27,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x3B,
  0x90,0x3E,0x32,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x4E,
  0x00,0x78,0x11,0x81,0x01,0x07,0x3E,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  0x33,0x33,0x33,0x3B,0x90,0x3B,0x83,0x17,0x29,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x27,
  0x41,0x29,0x83,0x2F,0x4D,0x37,0x0B,0x82,0x1C,0x3C,0x4C,0x3E,0x22,0x83,0x30,0x4D,0x32,0x83,0x20,0x3E,
  0x4C,0x3C,0x1C,0x82,0x0B,0x34,0x4D,0x2C,0x83,0x26,0x4D,0x39,0x13,0x82,0x10,0x38,0x4D,0x27,0x83,0x2A,
  0x42,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3D,0x30,0x83,0x19,0x3B,0x8B,0x0B,0x84,0x3D,
  0x90,0x41,0x3D,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x00,0x4F,
  0x00,0x97,0x12,0x80,0x01,0x06,0x45,0x3E,0x39,0x33,0x33,0x33,0x33,0x3B,0x4A,0x30,0x10,0x86,0x17,0x35,
  0x47,0x1C,0x83,0x10,0x13,0x13,0x0B,0x83,0x24,0x45,0x1C,0x82,0x1C,0x37,0x43,0x3E,0x33,0x17,0x82,0x26,
  0x43,0x2D,0x82,0x2C,0x48,0x24,0x82,0x35,0x42,0x0B,0x81,0x26,0x4A,0x1C,0x81,0x17,0x41,0x37,0x82,0x3E,
  0x4A,0x3A,0x82,0x3C,0x2D,0x81,0x20,0x4C,0x17,0x81,0x35,0x29,0x81,0x2C,0x4C,0x1C,0x81,0x32,0x29,0x81,
  0x2A,0x4C,0x1C,0x81,0x32,0x2D,0x81,0x1E,0x4C,0x10,0x81,0x35,0x39,0x82,0x3D,0x4A,0x38,0x82,0x3D,0x41,
  0x10,0x81,0x20,0x4A,0x13,0x81,0x1C,0x42,0x32,0x82,0x24,0x47,0x3E,0x1C,0x82,0x39,0x43,0x24,0x82,0x10,
  0x30,0x3C,0x3E,0x3D,0x3C,0x2C,0x0B,0x82,0x2C,0x45,0x26,0x84,0x0B,0x85,0x2C,0x47,0x37,0x19,0x86,0x20,
  0x3A,0x4A,0x3C,0x3B,0x37,0x35,0x3C,0x3C,0x46,0x00,0x48,0x00,0x6E,0x10,0x81,0x01,0x07,0x3E,0x33,0x33,
  0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x34,0x3B,0x90,0x3D,0x24,0x26,0x26,
  0x26,0x26,0x26,0x1C,0x81,0x13,0x27,0x26,0x26,0x26,0x26,0x26,0x27,0x47,0x33,0x81,0x26,0x4E,0x32,0x81,
  0x24,0x4E,0x32,0x81,0x24,0x4E,0x32,0x81,0x24,0x4E,0x32,0x81,0x24,0x4E,0x32,0x81,0x24,0x4E,0x33,0x81,
  0x26,0x47,0x3E,0x33,0x33,0x33,0x33,0x33,0x34,0x20,0x81,0x1E,0x34,0x33,0x33,0x33,0x33,0x33,0x33,0x3B,
  0x90,0x3C,0x10,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x1E,0x51,0x00,
  0x49,0x00,0x2D,0x06,0x81,0x01,0x07,0x3E,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  0x33,0x33,0x33,0x33,0x3B,0x90,0x3E,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  0x26,0x26,0x27,0x51,0x00,0x4A,0x00,0x47,0x0B,0x80,0x01,0x06,0x4D,0x27,0x81,0x1E,0x3C,0x4E,0x1C,0x82,
  0x19,0x4E,0x3E,0x2C,0x82,0x39,0x4F,0x19,0x81,0x32,0x4F,0x20,0x81,0x32,0x4E,0x39,0x82,0x37,0x3E,0x33,
  0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x24,0x82,0x10,0x41,0x3B,0x8F,0x39,0x42,0x27,
  0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x24,0x2D,0x3D,0x54,0x00,0x4B,0x00,0x6E,0x0E,
  0x81,0x01,0x07,0x3E,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  0x3B,0x90,0x3E,0x26,0x26,0x26,0x26,0x26,0x29,0x82,0x1E,0x27,0x26,0x26,0x26,0x26,0x26,0x27,0x46,0x33,
  0x82,0x13,0x3D,0x4B,0x34,0x85,0x3A,0x49,0x37,0x82,0x20,0x37,0x83,0x39,0x47,0x39,0x82,0x19,0x42,0x37,
  0x83,0x38,0x45,0x3B,0x82,0x10,0x3E,0x43,0x38,0x83,0x35,0x43,0x3D,0x0B,0x82,0x3C,0x45,0x39,0x83,0x34,
  0x42,0x13,0x82,0x3A,0x47,0x3A,0x83,0x32,0x3B,0x82,0x37,0x49,0x3A,0x83,0x3B,0x81,0x33,0x4B,0x3B,0x82,
  0x41,0x35,0x4D,0x3B,0x19,0x00,0x55,0x00,0x6D,0x0F,0x81,0x01,0x06,0x3D,0x24,0x26,0x26,0x26,0x26,0x26,
  0x26,0x26,0x26,0x26,0x26,0x26,0x33,0x3E,0x43,0x3B,0x8E,0x33,0x43,0x34,0x33,0x33,0x33,0x33,0x33,0x33,
  0x33,0x33,0x34,0x29,0x20,0x83,0x34,0x4E,0x3B,0x13,0x81,0x0B,0x4F,0x3A,0x82,0x38,0x4F,0x19,0x81,0x33,
  0x4F,0x22,0x81,0x32,0x4F,0x10,0x81,0x33,0x4E,0x30,0x82,0x3C,0x4C,0x3C,0x2A,0x82,0x1E,0x41,0x3C,0x10,
  0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x83,0x10,0x3D,0x41,0x3C,0x8C,0x0B,0x27,0x3E,0x43,
  0x34,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x39,0x3B,0x3E,0x44,0x00,0x54,0x00,0x52,0x0D,0x80,
  0x01,0x07,0x3B,0x81,0x10,0x4E,0x3B,0x81,0x13,0x4E,0x3B,0x81,0x13,0x4E,0x3B,0x81,0x13,0x4E,0x3B,0x81,
  0x13,0x4E,0x3B,0x82,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x3B,0x90,
  0x3B,0x81,0x10,0x3C,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3C,0x3B,0x81,0x13,
  0x4E,0x3B,0x81,0x13,0x4E,0x3B,0x81,0x13,0x4E,0x3C,0x81,0x0B,0x4F,0x35,0x34,0x4E,0x00,0x57,0x00,0xA2,
  0x15,0x80,0x01,0x07,0x3B,0x82,0x13,0x27,0x35,0x3E,0x4A,0x3C,0x0B,0x84,0x0B,0x20,0x30,0x3C,0x49,0x38,
  0x2C,0x19,0x85,0x19,0x2A,0x38,0x49,0x3C,0x33,0x24,0x10,0x84,0x10,0x24,0x33,0x3D,0x49,0x39,0x2D,0x1E,
  0x10,0x83,0x0B,0x4B,0x3B,0x2A,0x84,0x47,0x3E,0x35,0x27,0x13,0x84,0x13,0x27,0x44,0x3C,0x30,0x20,0x0B,
  0x84,0x1C,0x2D,0x3A,0x43,0x38,0x2A,0x19,0x84,0x0B,0x24,0x33,0x3C,0x45,0x3B,0x84,0x1C,0x2C,0x38,0x49,
  0x3B,0x84,0x29,0x39,0x4B,0x29,0x17,0x84,0x0B,0x22,0x32,0x3C,0x49,0x3B,0x2F,0x1E,0x85,0x19,0x2C,0x39,
  0x49,0x3D,0x35,0x26,0x10,0x84,0x13,0x26,0x34,0x4A,0x3A,0x2F,0x1E,0x84,0x4A,0x3B,0x30,0x20,0x84,0x46,
  0x3D,0x34,0x26,0x13,0x84,0x10,0x26,0x34,0x43,0x38,0x2C,0x19,0x85,0x19,0x2C,0x39,0x43,0x3D,0x20,0x10,
  0x84,0x0B,0x22,0x32,0x3C,0x46,0x3B,0x83,0x13,0x27,0x37,0x3E,0x49,0x3E,0x22,0x2D,0x3A,0x4D,0x00,0x56,
  0x00,0x5C,0x0D,0x80,0x01,0x07,0x3B,0x82,0x1C,0x32,0x3E,0x4B,0x3D,0x0B,0x83,0x0B,0x24,0x37,0x4B,0x34,
  0x20,0x84,0x13,0x2C,0x3B,0x4A,0x3C,0x2F,0x17,0x84,0x1E,0x33,0x3E,0x4A,0x39,0x27,0x0B,0x83,0x0B,0x26,
  0x39,0x4B,0x34,0x20,0x84,0x19,0x4C,0x35,0x84,0x49,0x3D,0x2F,0x17,0x84,0x26,0x47,0x37,0x22,0x84,0x19,
  0x30,0x3D,0x45,0x3B,0x2C,0x13,0x83,0x0B,0x27,0x39,0x46,0x33,0x1E,0x84,0x1C,0x33,0x3E,0x46,0x3C,0x0B,
  0x83,0x10,0x2A,0x3B,0x49,0x3B,0x82,0x20,0x35,0x4C,0x00,0x51,0x00,0x92,0x12,0x80,0x01,0x07,0x45,0x3E,
  0x38,0x33,0x33,0x33,0x33,0x3C,0x49,0x2C,0x87,0x1E,0x3A,0x45,0x3D,0x13,0x83,0x13,0x81,0x13,0x84,0x2F,
  0x44,0x13,0x82,0x22,0x39,0x43,0x3D,0x2F,0x83,0x33,0x42,0x27,0x82,0x32,0x47,0x3D,0x13,0x82,0x3E,0x3E,
  0x82,0x2C,0x49,0x3D,0x82,0x2D,0x34,0x81,0x0B,0x4B,0x2A,0x81,0x19,0x2C,0x81,0x24,0x4B,0x3A,0x81,0x0B,
  0x29,0x81,0x2D,0x4B,0x3E,0x82,0x29,0x81,0x29,0x4B,0x3C,0x82,0x30,0x81,0x17,0x4B,0x33,0x82,0x3B,0x82,
  0x37,0x4A,0x17,0x82,0x41,0x19,0x81,0x0B,0x3C,0x48,0x27,0x83,0x41,0x3A,0x82,0x0B,0x34,0x45,0x3C,0x22,
  0x83,0x0B,0x42,0x33,0x83,0x19,0x26,0x2F,0x27,0x24,0x83,0x26,0x0B,0x81,0x43,0x38,0x17,0x88,0x2F,0x41,
  0x82,0x45,0x33,0x26,0x24,0x13,0x17,0x26,0x2F,0x3C,0x41,0x3E,0x82,0x4F,0x19,0x17,0x00,0x50,0x00,0x66,
  0x0D,0x81,0x01,0x07,0x3E,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  0x34,0x3B,0x90,0x3B,0x81,0x0B,0x26,0x26,0x26,0x26,0x20,0x81,0x10,0x27,0x26,0x26,0x26,0x26,0x26,0x27,
  0x3B,0x81,0x13,0x44,0x39,0x81,0x1C,0x47,0x3B,0x81,0x13,0x44,0x38,0x81,0x1C,0x47,0x3B,0x81,0x10,0x44,
  0x37,0x81,0x19,0x47,0x3B,0x82,0x3E,0x43,0x2D,0x81,0x1C,0x48,0x82,0x29,0x43,0x10,0x81,0x27,0x48,0x26,
  0x82,0x22,0x27,0x13,0x82,0x3A,0x48,0x3D,0x86,0x24,0x4A,0x3D,0x27,0x20,0x13,0x24,0x33,0x5A,0x00,0x53,
  0x00,0x75,0x0C,0x00,0x01,0x00,0x43,0x3D,0x32,0x2A,0x29,0x2D,0x38,0x45,0x2F,0x86,0x17,0x3C,0x42,0x30,
  0x82,0x0B,0x26,0x2D,0x1C,0x82,0x10,0x42,0x13,0x81,0x19,0x44,0x2C,0x0B,0x38,0x41,0x3C,0x82,0x38,0x48,
  0x3B,0x82,0x37,0x49,0x10,0x81,0x19,0x3D,0x48,0x27,0x83,0x26,0x38,0x47,0x22,0x84,0x0B,0x2A,0x46,0x39,
  0x26,0x0B,0x83,0x0B,0x3C,0x47,0x35,0x19,0x82,0x1C,0x49,0x24,0x82,0x3C,0x48,0x3C,0x82,0x3B,0x41,0x3A,
  0x30,0x45,0x37,0x82,0x3B,0x37,0x82,0x2D,0x43,0x3A,0x0B,0x81,0x17,0x41,0x3B,0x0B,0x82,0x10,0x22,0x19,
  0x83,0x38,0x42,0x3C,0x1E,0x85,0x17,0x39,0x45,0x3D,0x35,0x32,0x33,0x3A,0x44,0x00,0x52,0x00,0x7D,0x0D,
  0x81,0x01,0x07,0x3E,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  0x3B,0x90,0x3B,0x81,0x0B,0x26,0x26,0x26,0x26,0x20,0x81,0x10,0x27,0x26,0x26,0x26,0x26,0x26,0x27,0x3B,
  0x81,0x13,0x44,0x39,0x81,0x1C,0x47,0x3B,0x81,0x13,0x44,0x38,0x81,0x19,0x47,0x3B,0x81,0x10,0x44,0x37,
  0x82,0x1E,0x3B,0x45,0x3B,0x82,0x44,0x30,0x84,0x29,0x44,0x3E,0x82,0x33,0x43,0x19,0x81,0x19,0x13,0x82,
  0x0B,0x32,0x43,0x1E,0x82,0x30,0x37,0x24,0x82,0x39,0x41,0x29,0x83,0x1C,0x39,0x41,0x39,0x86,0x1C,0x43,
  0x3A,0x1C,0x83,0x42,0x35,0x17,0x0B,0x81,0x10,0x27,0x46,0x32,0x0B,0x81,0x44,0x3D,0x3B,0x49,0x3D,0x2F,
  0x00,0x5D,0x00,0x42,0x06,0x80,0x01,0x03,0x26,0x10,0x3E,0x4F,0x37,0x81,0x32,0x20,0x81,0x50,0x35,0x81,
  0x30,0x20,0x81,0x24,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x1E,
  0x81,0x30,0x22,0x93,0x2F,0x3D,0x32,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  0x33,0x33,0x33,0x33,0x32,0x3B,0x00,0x5C,0x00,0x3A,0x08,0x80,0x01,0x06,0x2F,0x81,0x10,0x29,0x3B,0x4D,
  0x37,0x17,0x83,0x20,0x35,0x4D,0x38,0x24,0x83,0x13,0x2D,0x3D,0x4C,0x3C,0x2D,0x10,0x83,0x26,0x39,0x4D,
  0x34,0x1E,0x83,0x19,0x32,0x4D,0x3A,0x27,0x0B,0x82,0x10,0x2A,0x3C,0x4C,0x3E,0x30,0x17,0x83,0x34,0x4E,
  0x38,0x22,0x81,0x3B,0x00,0x5F,0x00,0x1E,0x0B,0x00,0x13,0x00,0x81,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,0x0B,
  0x0B,0x81,0x10,0x19,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1C,0x1E,0x00,0x5E,0x00,0x44,0x0F,0x81,
  0x01,0x0D,0x49,0x35,0x1C,0x47,0x38,0x1C,0x82,0x45,0x3A,0x20,0x82,0x10,0x33,0x43,0x3C,0x24,0x82,0x0B,
  0x30,0x43,0x3D,0x27,0x83,0x2D,0x3E,0x43,0x3C,0x83,0x2C,0x3D,0x45,0x3C,0x83,0x34,0x47,0x39,0x1E,0x82,
  0x17,0x34,0x47,0x37,0x19,0x82,0x19,0x37,0x47,0x34,0x13,0x82,0x1E,0x39,0x47,0x32,0x10,0x82,0x49,0x2D,
  0x20,0x4B,0x00,0x59,0x00,0x53,0x0D,0x80,0x01,0x07,0x3B,0x82,0x2F,0x4D,0x3D,0x83,0x1C,0x3B,0x4C,0x3C,
  0x1E,0x83,0x2D,0x4D,0x33,0x0B,0x82,0x19,0x3A,0x4C,0x3E,0x26,0x83,0x2C,0x4D,0x38,0x13,0x82,0x13,0x17,
  0x17,0x17,0x17,0x17,0x17,0x46,0x3C,0x19,0x89,0x45,0x2C,0x83,0x26,0x3C,0x3B,0x3B,0x3B,0x3B,0x3B,0x3C,
  0x43,0x38,0x17,0x82,0x10,0x35,0x4A,0x27,0x83,0x26,0x4A,0x3D,0x0B,0x82,0x10,0x37,0x4B,0x3B,0x82,0x27,
  0x4D,0x3E,0x19,0x38,0x4E,0x00,0x58,0x00,0x6E,0x0E,0x80,0x01,0x07,0x3C,0x17,0x3A,0x4B,0x3D,0x1E,0x81,
  0x3B,0x82,0x2D,0x49,0x33,0x83,0x3C,0x83,0x1E,0x3D,0x46,0x24,0x83,0x2F,0x41,0x3A,0x17,0x83,0x34,0x43,
  0x38,0x10,0x82,0x19,0x3B,0x44,0x2A,0x83,0x26,0x3E,0x29,0x83,0x2D,0x47,0x39,0x13,0x85,0x17,0x3A,0x4A,
  0x1C,0x83,0x1C,0x4B,0x2F,0x85,0x29,0x48,0x3D,0x1C,0x82,0x10,0x33,0x13,0x82,0x13,0x38,0x45,0x33,0x83,
  0x22,0x3E,0x42,0x27,0x83,0x29,0x43,0x24,0x83,0x32,0x45,0x35,0x0B,0x82,0x13,0x39,0x3B,0x82,0x19,0x3B,
  0x47,0x3E,0x20,0x83,0x3C,0x81,0x2A,0x4B,0x32,0x82,0x41,0x3B,0x4D,0x3B,0x26,0x00,0x5B,0x00,0x47,0x06,
  0x80,0x01,0x03,0x3D,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,
  0x3C,0x3C,0x3C,0x3E,0x20,0x93,0x30,0x20,0x81,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  0x13,0x13,0x13,0x13,0x17,0x82,0x30,0x20,0x81,0x3D,0x4F,0x34,0x81,0x30,0x26,0x81,0x3E,0x4F,0x39,0x81,
  0x2F,0x3E,0x3C,0x51,0x3C,0x3E,0x00,0x5A,0x00,0x61,0x0C,0x00,0x01,0x00,0x3C,0x3B,0x3B,0x3B,0x3B,0x3B,
  0x3B,0x3B,0x3B,0x3B,0x3B,0x41,0x10,0x8A,0x26,0x26,0x10,0x13,0x13,0x13,0x13,0x13,0x13,0x83,0x26,0x48,
  0x20,0x82,0x3C,0x47,0x2D,0x82,0x33,0x47,0x3A,0x82,0x24,0x48,0x13,0x81,0x10,0x48,0x27,0x82,0x38,0x47,
  0x35,0x82,0x2A,0x47,0x3D,0x0B,0x81,0x19,0x48,0x1E,0x82,0x3B,0x47,0x2F,0x82,0x32,0x47,0x3A,0x82,0x22,
  0x48,0x17,0x81,0x0B,0x3E,0x47,0x27,0x82,0x35,0x41,0x3E,0x3E,0x3E,0x3E,0x3E,0x3E,0x41,0x8B,0x29,0x82,
  0x0B,0x88,0x26,0x00,0x66,0x00,0x47,0x07,0x80,0x00,0x07,0x47,0x17,0x81,0x4D,0x3B,0x3C,0x3D,0x10,0x81,
  0x3A,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x3E,0x41,0x39,0x1C,0x10,0x8D,0x10,0x41,0x83,0x10,0x13,0x13,
  0x82,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x32,0x81,0x13,0x3A,0x43,0x13,0x81,0x3E,0x48,0x2C,
  0x81,0x2F,0x44,0x0B,0x81,0x3E,0x48,0x30,0x81,0x2A,0x44,0x34,0x33,0x49,0x00,0x67,0x00,0x8A,0x0D,0x80,
  0x06,0x01,0x44,0x38,0x33,0x33,0x33,0x39,0x45,0x3D,0x3E,0x44,0x3C,0x1C,0x85,0x22,0x3E,0x42,0x39,0x81,
  0x17,0x43,0x3E,0x0B,0x82,0x17,0x20,0x13,0x82,0x19,0x42,0x34,0x82,0x2A,0x42,0x24,0x82,0x34,0x43,0x2F,
  0x82,0x2F,0x42,0x2D,0x81,0x0B,0x42,0x82,0x33,0x45,0x2C,0x81,0x17,0x43,0x0B,0x81,0x3A,0x3C,0x81,0x10,
  0x46,0x3E,0x82,0x43,0x20,0x81,0x38,0x3C,0x81,0x19,0x47,0x82,0x43,0x22,0x81,0x37,0x41,0x82,0x3E,0x45,
  0x3A,0x81,0x10,0x43,0x10,0x81,0x3A,0x41,0x24,0x81,0x24,0x45,0x19,0x81,0x27,0x42,0x2F,0x82,0x42,0x3C,
  0x82,0x1E,0x35,0x3D,0x34,0x19,0x82,0x3A,0x34,0x24,0x82,0x2A,0x42,0x19,0x8D,0x22,0x43,0x1C,0x13,0x13,
  0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x1E,0x27,0x35,0x55,0x00,0x64,0x00,0x75,0x0D,0x80,0x00,0x06,
  0x4A,0x33,0x26,0x26,0x26,0x32,0x3E,0x4B,0x39,0x10,0x85,0x0B,0x35,0x49,0x3C,0x83,0x24,0x22,0x26,0x83,
  0x39,0x48,0x22,0x81,0x10,0x3B,0x43,0x3D,0x17,0x81,0x19,0x48,0x82,0x39,0x45,0x3C,0x82,0x3C,0x46,0x3C,
  0x81,0x13,0x47,0x1C,0x81,0x38,0x46,0x3C,0x81,0x17,0x47,0x13,0x81,0x39,0x47,0x82,0x3D,0x46,0x0B,0x81,
  0x3C,0x47,0x22,0x81,0x20,0x45,0x27,0x81,0x19,0x42,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x39,0x82,0x1E,0x39,
  0x3C,0x3B,0x22,0x82,0x38,0x41,0x39,0x90,0x10,0x41,0x3A,0x10,0x13,0x13,0x13,0x13,0x13,0x13,0x17,0x13,
  0x13,0x13,0x13,0x13,0x13,0x13,0x17,0x17,0x54,0x00,0x65,0x00,0x66,0x0C,0x00,0x06,0x00,0x45,0x3C,0x3C,
  0x47,0x3E,0x24,0x84,0x24,0x3E,0x43,0x3C,0x0B,0x82,0x13,0x19,0x82,0x10,0x3D,0x42,0x1E,0x81,0x0B,0x38,
  0x42,0x3A,0x10,0x81,0x24,0x41,0x38,0x82,0x3C,0x44,0x3A,0x82,0x3D,0x33,0x82,0x2C,0x2A,0x2A,0x2A,0x2A,
  0x29,0x82,0x3B,0x33,0x8A,0x3B,0x33,0x81,0x10,0x3A,0x39,0x39,0x39,0x39,0x39,0x3A,0x38,0x41,0x37,0x82,
  0x3A,0x45,0x34,0x43,0x19,0x81,0x10,0x3A,0x43,0x24,0x81,0x1E,0x42,0x3A,0x83,0x1C,0x22,0x83,0x2D,0x43,
  0x3C,0x1E,0x84,0x10,0x34,0x46,0x3D,0x38,0x38,0x3B,0x44,0x00,0x62,0x00,0x73,0x0D,0x81,0x00,0x06,0x3C,
  0x13,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x41,0x39,0x90,
  0x10,0x42,0x3B,0x3B,0x3B,0x3B,0x3B,0x3C,0x38,0x82,0x20,0x3B,0x3A,0x3B,0x26,0x82,0x37,0x48,0x22,0x81,
  0x24,0x45,0x2A,0x81,0x19,0x48,0x82,0x3E,0x46,0x0B,0x81,0x3C,0x46,0x3C,0x81,0x19,0x47,0x22,0x81,0x38,
  0x46,0x3C,0x81,0x13,0x47,0x1E,0x81,0x38,0x47,0x82,0x38,0x45,0x3C,0x82,0x3D,0x47,0x22,0x81,0x0B,0x3A,
  0x43,0x3C,0x17,0x81,0x19,0x48,0x3D,0x83,0x24,0x1C,0x24,0x83,0x3A,0x49,0x3A,0x13,0x85,0x10,0x37,0x4C,
  0x34,0x2C,0x24,0x2A,0x34,0x44,0x00,0x63,0x00,0x54,0x0B,0x00,0x06,0x00,0x45,0x3C,0x3C,0x3E,0x45,0x3D,
  0x22,0x84,0x1E,0x3B,0x42,0x3B,0x83,0x13,0x19,0x83,0x39,0x41,0x19,0x82,0x37,0x42,0x3B,0x10,0x17,0x3C,
  0x37,0x82,0x37,0x44,0x3E,0x42,0x33,0x81,0x17,0x48,0x33,0x81,0x27,0x48,0x33,0x81,0x19,0x48,0x35,0x82,
  0x3A,0x48,0x17,0x81,0x10,0x3B,0x42,0x3E,0x19,0x20,0x3E,0x41,0x38,0x83,0x1C,0x22,0x83,0x37,0x42,0x3A,
  0x19,0x84,0x17,0x38,0x45,0x3C,0x38,0x38,0x3B,0x43,0x00,0x61,0x00,0x63,0x0B,0x00,0x06,0x00,0x44,0x3B,
  0x3B,0x3D,0x45,0x3E,0x26,0x84,0x13,0x37,0x43,0x13,0x82,0x13,0x1C,0x83,0x3B,0x42,0x2C,0x13,0x38,0x42,
  0x3D,0x13,0x81,0x27,0x48,0x32,0x81,0x26,0x43,0x39,0x29,0x1C,0x13,0x10,0x10,0x81,0x26,0x42,0x29,0x84,
  0x10,0x82,0x26,0x41,0x37,0x82,0x24,0x3A,0x3E,0x41,0x34,0x81,0x26,0x41,0x33,0x81,0x1C,0x44,0x27,0x81,
  0x26,0x41,0x33,0x81,0x10,0x3C,0x42,0x37,0x82,0x26,0x41,0x39,0x83,0x13,0x13,0x83,0x22,0x42,0x33,0x84,
  0x10,0x32,0x81,0x1C,0x44,0x3A,0x38,0x3A,0x45,0x00,0x6E,0x00,0x4C,0x0C,0x81,0x06,0x07,0x41,0x17,0x10,
  0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x41,0x17,0x89,0x0B,0x41,0x35,0x82,0x2C,0x3C,0x3B,0x3B,
  0x3B,0x3B,0x3B,0x3D,0x41,0x19,0x81,0x33,0x48,0x3D,0x81,0x13,0x49,0x3B,0x81,0x17,0x49,0x3C,0x82,0x32,
  0x49,0x1C,0x82,0x1C,0x27,0x26,0x26,0x26,0x26,0x26,0x2C,0x41,0x3C,0x13,0x89,0x43,0x34,0x33,0x33,0x33,
  0x33,0x33,0x33,0x33,0x34,0x00,0x6F,0x00,0x61,0x0D,0x80,0x06,0x06,0x44,0x39,0x33,0x33,0x33,0x37,0x46,
  0x3D,0x1E,0x85,0x19,0x3B,0x44,0x10,0x82,0x13,0x27,0x19,0x83,0x3C,0x42,0x27,0x82,0x35,0x43,0x38,0x0B,
  0x81,0x1E,0x42,0x0B,0x81,0x35,0x45,0x3A,0x82,0x3D,0x3C,0x81,0x10,0x47,0x1C,0x81,0x39,0x3C,0x81,0x19,
  0x47,0x22,0x81,0x38,0x3D,0x82,0x3E,0x46,0x10,0x81,0x3A,0x41,0x17,0x81,0x24,0x45,0x2A,0x81,0x0B,0x42,
  0x34,0x82,0x1E,0x37,0x3B,0x39,0x22,0x82,0x2D,0x43,0x2A,0x87,0x24,0x45,0x37,0x19,0x13,0x13,0x13,0x17,
  0x33,0x50,0x00,0x6C,0x00,0x2E,0x05,0x81,0x00,0x07,0x3C,0x24,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x2A,0x39,0x91,0x3D,0x32,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,
  0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x34,0x00,0x6D,0x00,0x71,0x13,0x81,0x06,0x07,0x41,0x1E,0x10,0x17,
  0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x41,0x13,0x89,0x0B,0x41,0x2F,0x82,0x2D,0x3C,0x3B,0x3B,0x3B,
  0x3B,0x3B,0x3D,0x41,0x13,0x81,0x37,0x48,0x3C,0x81,0x17,0x49,0x3C,0x81,0x10,0x4A,0x82,0x24,0x3B,0x3D,
  0x47,0x2C,0x83,0x0B,0x17,0x17,0x17,0x17,0x17,0x17,0x42,0x8A,0x41,0x2A,0x81,0x10,0x33,0x3C,0x3B,0x3B,
  0x3B,0x3B,0x3B,0x3B,0x41,0x82,0x3B,0x48,0x3C,0x81,0x1C,0x49,0x3B,0x81,0x10,0x4A,0x82,0x22,0x3A,0x3C,
  0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x41,0x2D,0x8A,0x42,0x30,0x17,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x17,
  0x4C,0x00,0x6A,0x00,0x3A,0x05,0x80,0x02,0x01,0x53,0x19,0x81,0x37,0x26,0x10,0x2A,0x42,0x29,0x26,0x26,
  0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x27,0x19,0x82,0x3B,0x82,0x13,0x42,0x8F,0x27,0x41,0x2F,
  0x26,0x33,0x42,0x34,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x38,0x58,0x00,
  0x6B,0x00,0x5C,0x0B,0x81,0x00,0x07,0x3D,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x19,
  0x17,0x17,0x17,0x17,0x17,0x39,0x90,0x0B,0x41,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3D,0x34,0x82,
  0x22,0x3D,0x3B,0x3B,0x3D,0x49,0x3B,0x84,0x29,0x4B,0x3C,0x82,0x17,0x22,0x82,0x27,0x49,0x3C,0x0B,0x81,
  0x0B,0x3D,0x41,0x24,0x82,0x27,0x48,0x17,0x82,0x3B,0x43,0x24,0x82,0x27,0x47,0x10,0x81,0x39,0x45,0x22,
  0x82,0x47,0x10,0x37,0x47,0x22,0x81,0x47,0x3D,0x49,0x2C,0x00,0x68,0x00,0x57,0x0C,0x81,0x00,0x07,0x3C,
  0x13,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x39,0x90,0x0B,
  0x41,0x3B,0x3B,0x3B,0x3B,0x3B,0x3C,0x34,0x82,0x2C,0x3C,0x3B,0x3B,0x3B,0x3B,0x3B,0x3D,0x47,0x19,0x81,
  0x33,0x4E,0x3D,0x81,0x13,0x4F,0x3B,0x81,0x17,0x4F,0x3C,0x82,0x32,0x4F,0x1C,0x82,0x1C,0x27,0x26,0x26,
  0x26,0x26,0x26,0x2C,0x47,0x3C,0x13,0x89,0x49,0x34,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x34,0x00,0x69,
  0x00,0x2B,0x05,0x81,0x02,0x07,0x26,0x10,0x2A,0x42,0x29,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  0x2A,0x82,0x13,0x42,0x8B,0x2F,0x26,0x33,0x42,0x34,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x34,
  0x50,0x00,0x77,0x00,0x6D,0x10,0x80,0x07,0x07,0x13,0x10,0x26,0x35,0x3E,0x46,0x10,0x83,0x0B,0x22,0x33,
  0x3D,0x43,0x3B,0x30,0x20,0x0B,0x84,0x1E,0x30,0x3C,0x43,0x3E,0x37,0x29,0x19,0x84,0x45,0x3E,0x32,0x10,
  0x83,0x42,0x3C,0x30,0x1E,0x83,0x0B,0x22,0x33,0x32,0x1C,0x83,0x0B,0x24,0x34,0x3E,0x42,0x0B,0x82,0x10,
  0x35,0x46,0x1E,0x83,0x17,0x27,0x37,0x45,0x3A,0x2D,0x19,0x83,0x10,0x26,0x35,0x45,0x3B,0x2F,0x1E,0x83,
  0x10,0x45,0x3B,0x2F,0x10,0x83,0x41,0x3D,0x34,0x26,0x13,0x84,0x19,0x2D,0x22,0x85,0x1C,0x30,0x3B,0x42,
  0x0B,0x82,0x20,0x32,0x3C,0x45,0x29,0x34,0x3D,0x48,0x00,0x76,0x00,0x45,0x0B,0x80,0x07,0x07,0x17,0x13,
  0x2D,0x3D,0x47,0x0B,0x83,0x24,0x38,0x45,0x3A,0x27,0x0B,0x83,0x17,0x2F,0x3E,0x45,0x34,0x20,0x83,0x0B,
  0x26,0x39,0x45,0x3C,0x2F,0x1C,0x83,0x46,0x38,0x24,0x83,0x43,0x3B,0x2A,0x13,0x83,0x1E,0x35,0x3E,0x32,
  0x1C,0x83,0x0B,0x2A,0x3B,0x42,0x17,0x83,0x1C,0x33,0x45,0x0B,0x0B,0x27,0x3A,0x47,0x35,0x3E,0x49,0x00,
  0x75,0x00,0x4C,0x0C,0x81,0x07,0x06,0x24,0x13,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x2F,0x42,0x0B,0x89,
  0x29,0x41,0x3C,0x3B,0x3B,0x3B,0x3B,0x3B,0x3C,0x39,0x20,0x82,0x3D,0x49,0x13,0x81,0x38,0x49,0x10,0x81,
  0x38,0x49,0x0B,0x81,0x3D,0x48,0x24,0x81,0x26,0x41,0x29,0x26,0x26,0x26,0x26,0x26,0x26,0x10,0x82,0x24,
  0x41,0x8B,0x41,0x34,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x33,0x32,0x2D,0x41,0x00,0x74,0x00,0x43,0x07,
  0x80,0x04,0x06,0x43,0x17,0x81,0x4A,0x3C,0x3C,0x3D,0x10,0x81,0x3A,0x3C,0x3C,0x3C,0x3C,0x3C,0x3C,0x43,
  0x19,0x8B,0x13,0x32,0x41,0x20,0x13,0x13,0x82,0x13,0x13,0x13,0x13,0x13,0x13,0x83,0x3D,0x43,0x13,0x81,
  0x3E,0x45,0x3B,0x10,0x81,0x38,0x43,0x10,0x81,0x3E,0x46,0x1C,0x81,0x38,0x43,0x1C,0x13,0x3E,0x46,0x17,
  0x81,0x3D,0x00,0x73,0x00,0x55,0x09,0x00,0x06,0x00,0x43,0x3E,0x3C,0x3C,0x44,0x3A,0x19,0x83,0x10,0x33,
  0x41,0x3D,0x83,0x19,0x83,0x38,0x33,0x81,0x0B,0x3C,0x41,0x3D,0x10,0x13,0x3B,0x33,0x81,0x10,0x3D,0x42,
  0x3E,0x42,0x38,0x83,0x1E,0x2D,0x39,0x43,0x30,0x85,0x20,0x3E,0x43,0x35,0x29,0x13,0x82,0x2C,0x41,0x3C,
  0x44,0x26,0x81,0x24,0x2C,0x81,0x29,0x43,0x22,0x81,0x24,0x26,0x82,0x13,0x17,0x10,0x82,0x32,0x41,0x29,
  0x85,0x2D,0x44,0x39,0x38,0x3B,0x43,0x00,0x72,0x00,0x2D,0x07,0x81,0x06,0x07,0x41,0x27,0x13,0x17,0x17,
  0x17,0x17,0x17,0x17,0x17,0x17,0x19,0x41,0x10,0x8A,0x41,0x34,0x82,0x24,0x34,0x3B,0x3B,0x3B,0x3B,0x3B,
  0x3C,0x41,0x17,0x81,0x2A,0x48,0x3C,0x82,0x49,0x3C,0x82,0x49,0x00,0x71,0x00,0x76,0x0D,0x80,0x06,0x00,
  0x44,0x33,0x26,0x26,0x26,0x32,0x3E,0x4B,0x39,0x10,0x85,0x0B,0x35,0x49,0x3C,0x83,0x24,0x22,0x26,0x83,
  0x39,0x48,0x22,0x81,0x10,0x3B,0x43,0x3D,0x17,0x81,0x19,0x48,0x82,0x39,0x45,0x3C,0x82,0x3C,0x46,0x3C,
  0x81,0x13,0x47,0x1C,0x81,0x38,0x46,0x3C,0x81,0x17,0x47,0x13,0x81,0x39,0x47,0x82,0x3D,0x46,0x0B,0x81,
  0x3C,0x47,0x22,0x81,0x20,0x45,0x27,0x81,0x19,0x48,0x39,0x82,0x1E,0x39,0x3C,0x3B,0x22,0x82,0x35,0x3C,
  0x3C,0x3C,0x3C,0x3C,0x3C,0x3E,0x41,0x13,0x90,0x34,0x41,0x1C,0x13,0x13,0x13,0x13,0x13,0x13,0x13,0x13,
  0x17,0x13,0x13,0x13,0x13,0x13,0x13,0x10,0x39,0x53,0x00,0x70,0x00,0x74,0x0D,0x81,0x06,0x00,0x41,0x20,
  0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x17,0x10,0x35,0x41,0x10,0x90,
  0x38,0x41,0x38,0x82,0x20,0x3B,0x3A,0x3B,0x26,0x82,0x34,0x3C,0x3B,0x3B,0x3B,0x3B,0x3C,0x42,0x22,0x81,
  0x24,0x45,0x2A,0x81,0x19,0x48,0x82,0x3E,0x46,0x0B,0x81,0x3C,0x46,0x3C,0x81,0x19,0x47,0x22,0x81,0x38,
  0x46,0x3C,0x81,0x13,0x47,0x1E,0x81,0x38,0x47,0x82,0x38,0x45,0x3C,0x82,0x3D,0x47,0x22,0x81,0x0B,0x3A,
  0x43,0x3C,0x17,0x81,0x19,0x48,0x3D,0x83,0x24,0x1C,0x24,0x83,0x3A,0x49,0x3A,0x13,0x85,0x10,0x37,0x4C,
  0x34,0x2C,0x24,0x2A,0x34,0x4A,0x00,0x7E,0x00,0x2E,0x0F,0x01,0x09,0x01,0x42,0x2A,0x1C,0x1C,0x2D,0x44,
  0x24,0x3C,0x41,0x3E,0x13,0x84,0x0B,0x33,0x3B,0x1C,0x81,0x24,0x41,0x27,0x81,0x10,0x35,0x32,0x0B,0x85,
  0x3A,0x41,0x3D,0x1E,0x3B,0x43,0x2D,0x17,0x17,0x20,0x3B,0x42,0x00,0x7D,0x00,0x46,0x06,0x80,0x01,0x03,
  0x20,0x81,0x3A,0x4F,0x2D,0x81,0x2F,0x24,0x81,0x17,0x30,0x33,0x33,0x33,0x33,0x33,0x3C,0x41,0x39,0x33,
  0x33,0x33,0x33,0x34,0x2C,0x0B,0x81,0x33,0x38,0x88,0x0B,0x29,0x88,0x0B,0x3E,0x41,0x39,0x30,0x26,0x26,
  0x26,0x26,0x27,0x10,0x83,0x19,0x27,0x26,0x26,0x26,0x27,0x33,0x3C,0x4A,0x0B,0x81,0x22,0x52,0x38,0x32,
  0x3C,0x49,0x00,0x7C,0x00,0x31,0x05,0x81,0x00,0x06,0x3D,0x24,0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x26,
  0x26,0x26,0x26,0x26,0x26,0x26,0x26,0x24,0x38,0x39,0x91,0x32,0x41,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,
  0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3B,0x3E,0x00,0x7B,0x00,0x45,0x06,0x80,0x01,0x03,0x49,
  0x17,0x81,0x2A,0x4B,0x38,0x33,0x33,0x33,0x33,0x34,0x20,0x83,0x29,0x34,0x33,0x33,0x33,0x33,0x3A,0x42,
  0x3C,0x0B,0x88,0x13,0x88,0x1C,0x41,0x27,0x82,0x24,0x26,0x26,0x26,0x26,0x24,0x35,0x41,0x2F,0x24,0x26,
  0x26,0x26,0x26,0x20,0x82,0x35,0x20,0x81,0x35,0x4F,0x29,0x81,0x2F,0x1E,0x81,0x3C,0x4F,0x2D,0x81,0x35,
  0x00,0x7A,0x00,0x40,0x09,0x00,0x07,0x00,0x29,0x10,0x13,0x13,0x13,0x13,0x13,0x0B,0x29,0x2A,0x87,0x24,
  0x41,0x3E,0x3E,0x3E,0x41,0x19,0x82,0x3B,0x44,0x2A,0x82,0x34,0x44,0x35,0x82,0x29,0x44,0x3C,0x82,0x19,
  0x45,0x19,0x82,0x3C,0x44,0x27,0x82,0x35,0x44,0x33,0x82,0x2C,0x45,0x83,0x10,0x10,0x10,0x10,0x10,0x19,
  0x82,0x0B,0x85,0x19,0x00,0x79,0x00,0x5B,0x0B,0x80,0x07,0x01,0x19,0x17,0x30,0x3E,0x4A,0x1E,0x10,0x3A,
  0x0B,0x82,0x0B,0x26,0x39,0x48,0x20,0x81,0x37,0x35,0x20,0x84,0x19,0x32,0x3E,0x44,0x3A,0x0B,0x81,0x38,
  0x42,0x3C,0x2D,0x17,0x83,0x0B,0x27,0x39,0x37,0x22,0x82,0x10,0x46,0x38,0x27,0x10,0x86,0x19,0x3B,0x47,
  0x38,0x1E,0x84,0x24,0x38,0x46,0x39,0x29,0x10,0x83,0x17,0x2F,0x3D,0x45,0x3C,0x2F,0x19,0x84,0x24,0x38,
  0x48,0x13,0x83,0x17,0x30,0x3D,0x4A,0x0B,0x81,0x26,0x39,0x4D,0x34,0x3D,0x4F,0x00,0x78,0x00,0x51,0x0B,
  0x80,0x07,0x07,0x20,0x30,0x46,0x3D,0x1C,0x81,0x0B,0x81,0x27,0x44,0x37,0x0B,0x82,0x20,0x82,0x19,0x3D,
  0x41,0x2D,0x82,0x0B,0x38,0x41,0x2A,0x82,0x10,0x20,0x82,0x20,0x3E,0x43,0x38,0x0B,0x83,0x30,0x45,0x3C,
  0x10,0x83,0x2A,0x44,0x30,0x82,0x0B,0x1C,0x82,0x1C,0x3D,0x41,0x24,0x82,0x19,0x3D,0x41,0x29,0x82,0x0B,
  0x37,0x0B,0x81,0x2A,0x44,0x34,0x83,0x1C,0x35,0x46,0x3B,0x13,0x81,0x49,0x3E,0x2C,0x00,0x00,0x00,0x00,
  };
  // antialiased
  // array size:   8400
  // glyph height: 46
  // baseline:     22
  // range:        A-Z a-z . , - + #x0021-#x0024 #00048-#00057 ~!@#$%^&*()_+[]\{}|;':",./<>?
 
Last edited:
Status
Not open for further replies.
Back
Top