mirror of https://github.com/arendst/Tasmota.git
parent
99374ae45b
commit
7cb8a3f968
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Before you create this issue**
|
||||
This library takes compressed JPEG data and outputs pixels to your callback functions. If your problem is related to LCD displays, SD cards, or any other issue that has nothing to do with this library, please stop here. If you need help with your private or commercial project, please email me (bitbank@pobox.com) to ask about paid consulting. Github issues are for submitting actual bugs.
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Image file you're having trouble with**
|
||||
If applicable, add images to help explain your problem.
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
|
@ -0,0 +1,8 @@
|
|||
set(srcs
|
||||
"src/JPEGDEC.cpp"
|
||||
"src/jpeg.inl"
|
||||
)
|
||||
idf_component_register(SRCS ${srcs}
|
||||
REQUIRES "jpegdec"
|
||||
INCLUDE_DIRS "src"
|
||||
)
|
|
@ -0,0 +1,204 @@
|
|||
Copyright 2020 BitBank Software, Inc. All rights reserved.
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2020 BitBank Software, Inc.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
CFLAGS=-D__LINUX__ -c -Wall -O2
|
||||
LIBS =
|
||||
CXX = g++
|
||||
|
||||
all: demo
|
||||
|
||||
demo: main.o JPEGDEC.o
|
||||
$(CXX) main.o JPEGDEC.o $(LIBS) -o demo
|
||||
|
||||
main.o: main.cpp
|
||||
$(CXX) $(CFLAGS) main.cpp
|
||||
|
||||
JPEGDEC.o: JPEGDEC.cpp
|
||||
$(CXX) $(CFLAGS) JPEGDEC.cpp
|
||||
|
||||
clean:
|
||||
rm -rf *.o demo
|
|
@ -0,0 +1,63 @@
|
|||
JPEGDEC<br>
|
||||
-----------------------------------
|
||||
Copyright (c) 2020 BitBank Software, Inc.<br>
|
||||
Written by Larry Bank<br>
|
||||
larry@bitbanksoftware.com<br>
|
||||
<br>
|
||||
**I optimize other people's code for a living. This library is a good example of the kind of work I do for my commercial clients; it contains many unique and clever optimizations that allows it to perform better than anything else available. I'm happy to contribute optimized libraries to the open source community in addition to working on commercial projects. Whatever platform you're using, I can make significant improvements to your native code. Please contact me so that I can show you how.**<br>
|
||||
<br>
|
||||
![JPEGDEC](/demo.jpg?raw=true "JPEGDEC")
|
||||
<br>
|
||||
I started working with image and video files around 1989 and soon turned my interest into a Document Imaging product based on my own imaging library. Over the years I added support for more and more formats until I had supported all of the standard ones, including DICOM. I sold my Document Imaging business in 1997. I started over with a new library design in 2000 and added even more formats. Over the years, I found uses for my imaging code in projects such as retro gaming. I recently went looking to see if there was a good JPEG viewer for Arduino and only found ones which sacrificed speed to work on MCUs with almost no RAM. I thought it would be possible to create an optimized JPEG decoder that could run on any MCU with at least 20K of RAM, so I started modifying my old JPEG code for this purpose. There are a lot of clever optimizations contained in the code that I kept as trade secrets for many years. I decided that it's time to share the code with the community. This code doesn't look like other JPEG libraries because I wrote it from a "blank sheet". It took many hundreds of hours of work to get it working correctly and find all of the optimizations. If you appreciate my work, please consider sponsoring me.
|
||||
|
||||
<br>
|
||||
|
||||
Features:<br>
|
||||
---------<br>
|
||||
- Supports any MCU with at least 20K of RAM (Cortex-M0+ is the simplest I've tested)
|
||||
- Optimized for speed; the main limitation will be how fast you can copy the pixels to the display. You can use DMA assisted SPI to help.
|
||||
- JPEG image data can come from memory (FLASH/RAM), SDCard or any media you provide.
|
||||
- Simple class and callback design allows you to easily add JPEG support to any application.
|
||||
- The C code doing the heavy lifting is completely portable and has no external dependencies.
|
||||
- Includes fast downscaling options (1/2, 1/4, 1/8).
|
||||
- Includes option to detect and decode the embedded Exif thumbnail
|
||||
- Supports Baseline Huffman images (grayscale or YCbCr)<br>
|
||||
- Includes optional Floyd-Steinberg dithering to 1, 2 or 4-bpp grayscale output; useful for e-paper displays<br>
|
||||
|
||||
<br>
|
||||
<p align="center">
|
||||
<img width="600" height="250" src="https://github.com/bitbank2/JPEGDEC/blob/master/perf.jpg?raw=true">
|
||||
</p>
|
||||
<br>
|
||||
|
||||
**A note about performance**<br>
|
||||
The chart above gives you an idea of how the code performs on various MCUs with the different scaling options. The test image used is both large in dimension and large in terms of the compressed data size. The two factors that have the most influence on performance are the compressed data size and the output scaling options. This is because the time to decode JPEG data scales mostly linearly with the amount of data to decode. To get the fastest decode speed, choose the lowest acceptable quality for your image; this will produce the smallest compressed data size. When you must use an image that is too large, the scaling options allow you to display it at a lower resolution than the original.<br>
|
||||
|
||||
<br>
|
||||
<p align="center">
|
||||
<img width="720" height="568" src="https://github.com/bitbank2/JPEGDEC/blob/master/squirrel_dither.jpg?raw=true">
|
||||
</p>
|
||||
<br>
|
||||
|
||||
**Floyd-Steinberg dithering**<br>
|
||||
I added the option to dither the output to 1, 2 or 4-bit per pixel grayscale using the FS error diffusion algorithm. It creates a pleasant output without visible blocking nor repeating patterns. This seemed useful for generating output suitable for high resolution e-paper displays. The image above was decoded from a 800x600 color JPEG and rendered as 2-bits per pixels (4 gray levels) on a 400x300 4.2" e-paper display. See the Wiki for info on how to use this option.
|
||||
|
||||
Acquiring JPEG files to play:
|
||||
----------------------------
|
||||
You'll notice that the images provided in the test_images folder have been turned into C code. Each byte is now in the form 0xAB so that it can be compiled into your program and stored in FLASH memory alongside your other code. You can use a command line tool I wrote called image_to_c (https://github.com/bitbank2/image_to_c) or an older Linux tool called xxd to convert a binary file into this type of text. Make sure to add a const/PROGMEM modifier in front of the JPEG data array to ensure that it gets written to FLASH and not RAM by your build environment.
|
||||
|
||||
The Callback functions:
|
||||
-----------------------
|
||||
One of the ways to allow this code to run on any embedded platform was to define a set of callback functions. These isolate the JPEG decoding logic from the display and file I/O. This allows the core code to run on any system, but you need to help it a little. At a minimum, your code must provide a function to draw (or store) each block of image pixels emitted by the library. If you're displaying a JPEG file from memory (RAM or FLASH), this is the only function you need to provide. In the examples folder there are multiple sketches to show how this is done on various display libraries. For reading from SD cards, 4 other functions must be provided: open, close, read, seek. There is an example for implementing these in the examples folder as well.
|
||||
Note:
|
||||
If you're using the ESP32 or ESP8266 (or another MCU which uses the Harvard Architecture) and decoding JPEG images stored in RAM or FLASH, you'll need to use the correct open function (openRAM or openFLASH). For MCUs based on the ARM Cortex-M, they are interchangeable.
|
||||
|
||||
The API:
|
||||
--------
|
||||
Please consult the Wiki for detailed info about each method exposed by the JPEGDEC class.
|
||||
|
||||
|
||||
If you find this code useful, please consider becoming a sponsor or sending a donation.
|
||||
|
||||
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SR4F44J2UR8S4)
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 155 KiB |
|
@ -0,0 +1,104 @@
|
|||
// A simple image slideshow which reads all the .JPG files from the root
|
||||
// directory of a SD card and shows each for 1 second on an ILI9341 display.
|
||||
|
||||
#include <JPEGDEC.h>
|
||||
#include <ILI9341_t3.h>
|
||||
#include <Bounce.h>
|
||||
#include <SD.h>
|
||||
|
||||
#define TFT_DC 9
|
||||
#define TFT_CS 10
|
||||
|
||||
ILI9341_t3 tft = ILI9341_t3(TFT_CS, TFT_DC);
|
||||
JPEGDEC jpeg;
|
||||
|
||||
// Setup - initialize ILI9341 display, wait for serial monitor, open SD card
|
||||
void setup() {
|
||||
pinMode(34, INPUT_PULLDOWN);
|
||||
pinMode(33, OUTPUT);
|
||||
digitalWrite(33, HIGH); // pushbuttons short pins 33 & 34 together
|
||||
Serial.begin(115200);
|
||||
tft.begin();
|
||||
tft.setRotation(3);
|
||||
tft.fillScreen(ILI9341_BLACK);
|
||||
tft.setTextColor(ILI9341_YELLOW);
|
||||
tft.setTextSize(2);
|
||||
tft.println("Waiting for Arduino Serial Monitor...");
|
||||
|
||||
while (!Serial && millis() < 3000); // wait up to 3 seconds for Arduino Serial Monitor
|
||||
Serial.println("ILI9341 Slideshow");
|
||||
tft.fillScreen(ILI9341_BLACK);
|
||||
tft.setCursor(0, 0);
|
||||
|
||||
while (!SD.begin(BUILTIN_SDCARD)) {
|
||||
Serial.println("Unable to access SD Card");
|
||||
tft.println("Unable to access SD Card");
|
||||
delay(1000);
|
||||
}
|
||||
}
|
||||
|
||||
// Functions to access a file on the SD card
|
||||
File myfile;
|
||||
|
||||
void * myOpen(const char *filename, int32_t *size) {
|
||||
myfile = SD.open(filename);
|
||||
*size = myfile.size();
|
||||
return &myfile;
|
||||
}
|
||||
void myClose(void *handle) {
|
||||
if (myfile) myfile.close();
|
||||
}
|
||||
int32_t myRead(JPEGFILE *handle, uint8_t *buffer, int32_t length) {
|
||||
if (!myfile) return 0;
|
||||
return myfile.read(buffer, length);
|
||||
}
|
||||
int32_t mySeek(JPEGFILE *handle, int32_t position) {
|
||||
if (!myfile) return 0;
|
||||
return myfile.seek(position);
|
||||
}
|
||||
|
||||
// Function to draw pixels to the display
|
||||
int JPEGDraw(JPEGDRAW *pDraw) {
|
||||
//Serial.printf("jpeg draw: x,y=%d,%d, cx,cy = %d,%d\n",
|
||||
//pDraw->x, pDraw->y, pDraw->iWidth, pDraw->iHeight);
|
||||
// for (int i=0; i<pDraw->iWidth*pDraw->iHeight; i++) {
|
||||
// pDraw->pPixels[i] = __builtin_bswap16(pDraw->pPixels[i]);
|
||||
// }
|
||||
tft.writeRect(pDraw->x, pDraw->y, pDraw->iWidth, pDraw->iHeight, pDraw->pPixels);
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Main loop, scan for all .JPG files on the card and display them
|
||||
void loop() {
|
||||
int filecount = 0;
|
||||
tft.setCursor(0, 0);
|
||||
File dir = SD.open("/");
|
||||
while (true) {
|
||||
File entry = dir.openNextFile();
|
||||
if (!entry) break;
|
||||
if (entry.isDirectory() == false) {
|
||||
const char *name = entry.name();
|
||||
const int len = strlen(name);
|
||||
if (len > 3 && strcasecmp(name + len - 3, "JPG") == 0) {
|
||||
Serial.print("File: ");
|
||||
Serial.println(name);
|
||||
tft.print("File: ");
|
||||
tft.println(name);
|
||||
jpeg.open((const char *)name, myOpen, myClose, myRead, mySeek, JPEGDraw);
|
||||
jpeg.decode(0,0,0);
|
||||
jpeg.close();
|
||||
filecount = filecount + 1;
|
||||
if (digitalRead(34) == LOW) {
|
||||
// skip delay between images when pushbutton is pressed
|
||||
delay(1000);
|
||||
}
|
||||
}
|
||||
}
|
||||
entry.close();
|
||||
}
|
||||
if (filecount == 0) {
|
||||
Serial.println("No .JPG files found");
|
||||
tft.println("No .JPG files found");
|
||||
delay(2000);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,61 @@
|
|||
// JPEGDEC example for Adafruit GFX displays
|
||||
|
||||
#include "JPEGDEC.h"
|
||||
// Sample image (truncated) containing a 320x240 Exif thumbnail
|
||||
// if an image doesn't display, it may have been created using progressive, open gimp, export as a jpg, remove progressive.
|
||||
|
||||
#include "thumb_test.h"
|
||||
//#include "ncc1701.h" //http://clipart-library.com/clip-art/uss-enterprise-silhouette-11.htm
|
||||
//#include "batman.h" //http://clipart-library.com/clipart/batman-clip-art_19.htm
|
||||
|
||||
#include <M5Core2.h>
|
||||
|
||||
#define DISPLAY_WIDTH 320
|
||||
#define DISPLAY_HEIGHT 240
|
||||
|
||||
|
||||
JPEGDEC jpeg;
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
|
||||
M5.Lcd.drawBitmap((int16_t)pDraw->x, (int16_t)pDraw->y, (int16_t)pDraw->iWidth, (int16_t)pDraw->iHeight, pDraw->pPixels);
|
||||
return 1;
|
||||
} /* JPEGDraw() */
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
|
||||
Serial.println("Starting...");
|
||||
|
||||
M5.begin(true, true, true, true);
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
} /* setup() */
|
||||
|
||||
void loop() {
|
||||
int i;
|
||||
long lTime;
|
||||
int iOption[4] = {0, JPEG_SCALE_HALF, JPEG_SCALE_QUARTER, JPEG_SCALE_EIGHTH};
|
||||
int iCenterX[4] = {0,80,120,140};
|
||||
int iCenterY[4] = {0,60,90,105};
|
||||
|
||||
for (i=0; i<4; i++)
|
||||
{
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
M5.Lcd.startWrite(); // Not sharing TFT bus on PyPortal, just CS once and leave it
|
||||
if (jpeg.openFLASH((uint8_t *)thumb_test, sizeof(thumb_test), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)ncc1701, sizeof(ncc1701), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)batman, sizeof(batman), JPEGDraw))
|
||||
|
||||
{
|
||||
lTime = micros();
|
||||
if (jpeg.hasThumb()) {jpeg.decode(iCenterX[i],iCenterY[i],JPEG_EXIF_THUMBNAIL | iOption[i]); } else { jpeg.decode(iCenterX[i],iCenterY[i], iOption[i]); }
|
||||
{
|
||||
lTime = micros() - lTime;
|
||||
Serial.printf("%d x %d image, decode time = %d us\n", jpeg.getWidth() >> i, jpeg.getHeight() >> i, (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
delay(2000); // pause between images
|
||||
} // for i
|
||||
} /* loop() */
|
|
@ -0,0 +1,845 @@
|
|||
//
|
||||
// batman-5
|
||||
// Data size = 13342 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 240, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t batman[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x47,
|
||||
0x00,0x47,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0xf0,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1e,0x00,0x01,0x00,0x02,0x02,0x03,0x01,0x01,0x01,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x09,0x06,0x07,0x04,0x05,0x0a,0x03,0x01,
|
||||
0x02,0xff,0xc4,0x00,0x49,0x10,0x00,0x01,0x03,0x03,0x03,0x02,0x04,0x03,0x05,0x04,
|
||||
0x05,0x0a,0x04,0x07,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x06,0x07,0x08,0x11,
|
||||
0x12,0x21,0x09,0x13,0x31,0x41,0x14,0x22,0x51,0x15,0x23,0x61,0x71,0x81,0x32,0x42,
|
||||
0x52,0x62,0x24,0x33,0x82,0x91,0x92,0x16,0x17,0x18,0x53,0x63,0x72,0xa1,0xb1,0xb2,
|
||||
0xc1,0x73,0x93,0xa2,0xc2,0x19,0x34,0x43,0x44,0x83,0x84,0xc3,0xff,0xc4,0x00,0x1c,
|
||||
0x01,0x01,0x00,0x01,0x05,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x03,0x01,0x04,0x05,0x06,0x07,0x02,0x08,0xff,0xc4,0x00,0x38,0x11,0x00,
|
||||
0x01,0x03,0x02,0x05,0x01,0x06,0x03,0x06,0x06,0x03,0x01,0x00,0x00,0x00,0x00,0x01,
|
||||
0x00,0x02,0x03,0x04,0x11,0x05,0x06,0x12,0x21,0x31,0x51,0x13,0x22,0x41,0x61,0x71,
|
||||
0x81,0x07,0x32,0x91,0x15,0x42,0x62,0x92,0xa1,0xb1,0x14,0x23,0x52,0x72,0x82,0xa2,
|
||||
0x33,0xb2,0xc1,0xf0,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,
|
||||
0x3f,0x00,0xb5,0x3a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,
|
||||
0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,
|
||||
0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,
|
||||
0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,
|
||||
0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0xa2,0xae,0xf8,
|
||||
0x37,0xe7,0x8d,0x6d,0x27,0x1e,0x36,0xd8,0x69,0x66,0xff,0x00,0xa8,0xd3,0xd8,0x2b,
|
||||
0xb7,0xd9,0x4a,0x8f,0x97,0x1d,0x27,0x90,0x24,0x49,0x20,0x82,0x96,0xc1,0x1d,0x92,
|
||||
0x08,0x52,0xc8,0xe0,0x70,0x3a,0x94,0x92,0x29,0x55,0x4a,0xf3,0xf3,0xa5,0x5e,0x23,
|
||||
0xba,0xd3,0xa6,0xda,0xbb,0x71,0xce,0x66,0xe4,0x6f,0xe5,0x48,0xbb,0xbc,0x17,0x75,
|
||||
0xb2,0x5d,0x1c,0x26,0x1c,0x84,0x03,0xd9,0x2d,0x20,0x76,0x8e,0x52,0x3b,0x25,0x4d,
|
||||
0x81,0xc7,0x60,0x42,0x87,0x29,0x37,0x13,0xb5,0xfd,0xec,0xe9,0xa6,0xea,0xad,0x4d,
|
||||
0x8c,0x6e,0xe8,0x2d,0xb9,0x3a,0x1a,0x2e,0x4b,0xc6,0x6e,0x4a,0x4a,0x26,0xb3,0xc1,
|
||||
0xe1,0x4a,0x48,0xe7,0x87,0x5b,0xf4,0x3d,0x68,0x27,0x80,0xa1,0xd4,0x12,0x4f,0x48,
|
||||
0x22,0xdf,0xb4,0xa5,0x28,0x89,0x4a,0x56,0xa2,0xdc,0xd6,0xe0,0xa0,0xed,0xab,0x0a,
|
||||
0xb2,0xe5,0xd7,0x68,0xe1,0xfb,0x23,0xb7,0xc8,0x96,0xdb,0x82,0x81,0x3d,0x4c,0xb0,
|
||||
0xf7,0x52,0x54,0xf2,0x78,0xe7,0x92,0x8e,0x02,0xf8,0xe3,0xe6,0x09,0x29,0xec,0x48,
|
||||
0x20,0x8b,0x6e,0xd2,0xb5,0xde,0x79,0xb8,0x9d,0x2f,0xd3,0x06,0x63,0x39,0x95,0xea,
|
||||
0x06,0x39,0x62,0x32,0x99,0x4c,0x88,0xed,0x4b,0xb9,0x34,0x97,0x5f,0x69,0x43,0x94,
|
||||
0xb8,0xdb,0x7d,0x5d,0x4b,0x49,0x1f,0xbc,0x90,0x47,0x7a,0xc5,0xac,0x7b,0xdb,0xd0,
|
||||
0x4c,0x86,0x40,0x62,0x26,0xad,0xe2,0x69,0x70,0x9e,0x00,0x97,0x72,0x6e,0x30,0x27,
|
||||
0xe8,0x0b,0xa5,0x22,0x88,0xb7,0x6d,0x2b,0x52,0xe8,0xc6,0xe2,0xf1,0xfd,0x72,0xcd,
|
||||
0x75,0x22,0xcb,0x8e,0x2d,0xb9,0x50,0xf0,0xdb,0x83,0x36,0xc5,0xcf,0x69,0xd0,0xe2,
|
||||
0x25,0x3a,0xa6,0xca,0x96,0xb4,0x11,0xdb,0xa5,0x2b,0x0a,0x6c,0x7a,0xf2,0x5b,0x51,
|
||||
0xe7,0x82,0x2b,0x6d,0x51,0x12,0x94,0xa5,0x11,0x29,0x51,0xd3,0x74,0xdb,0xec,0xd3,
|
||||
0x3d,0xab,0x5b,0xdf,0x8f,0x79,0xb8,0x0b,0xee,0x5f,0xd0,0x15,0x1f,0x17,0xb6,0x38,
|
||||
0x15,0x29,0x44,0x8e,0x52,0x5e,0x3d,0xc3,0x08,0x3c,0x83,0xd4,0xbe,0xe4,0x77,0x4a,
|
||||
0x55,0xe9,0x55,0x05,0x9d,0x78,0x8f,0xeb,0x7e,0x67,0xac,0xb0,0x35,0x05,0x8c,0x9d,
|
||||
0xcb,0x12,0xed,0xab,0xe2,0x05,0x86,0xde,0xa5,0x26,0xda,0xd3,0x24,0x82,0xa6,0x9c,
|
||||
0x68,0x9f,0xbe,0xeb,0xe3,0xe6,0x52,0xf9,0x51,0xed,0xc1,0x48,0x4a,0x42,0x48,0xbd,
|
||||
0x04,0x52,0xa3,0x3e,0xca,0xf7,0xc7,0x8a,0x6e,0xef,0x15,0x2d,0x37,0xe5,0x58,0xf3,
|
||||
0xdb,0x73,0x21,0x77,0x5c,0x79,0x4b,0xe4,0xf4,0x8e,0x01,0x91,0x1c,0x9f,0xdb,0x64,
|
||||
0xa9,0x40,0x7f,0x12,0x09,0x01,0x5e,0xa9,0x52,0xe4,0xc5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xad,
|
||||
0x05,0xbc,0xed,0xd9,0xd9,0x36,0x91,0xa5,0x0e,0xdf,0xa5,0xa5,0xa9,0xf9,0x35,0xc7,
|
||||
0xae,0x35,0x8a,0xd0,0xb5,0x11,0xf1,0x52,0x00,0x1c,0xad,0x5c,0x77,0x0d,0x36,0x14,
|
||||
0x95,0x2c,0xf6,0xf5,0x4a,0x41,0x05,0x69,0xa2,0x2c,0x1b,0x7f,0x1b,0xec,0xb4,0xed,
|
||||
0x3f,0x11,0xfb,0x22,0xcc,0xa6,0x2e,0x9a,0x95,0x76,0x60,0x9b,0x7d,0xbd,0x47,0xa9,
|
||||
0x10,0x9b,0x3c,0x8f,0x8a,0x7c,0x7f,0x08,0x23,0xe5,0x41,0xee,0xb2,0x0f,0xb0,0x51,
|
||||
0x14,0xdb,0x61,0xd1,0xad,0x69,0xdc,0xee,0x55,0x3b,0x22,0x83,0x8c,0x5f,0xf2,0xeb,
|
||||
0x9d,0xdd,0xe5,0x4a,0x93,0x7b,0x90,0xc9,0x6d,0x87,0x5c,0x57,0x72,0x4c,0x87,0x3a,
|
||||
0x5a,0x1f,0x82,0x7a,0x87,0x00,0x70,0x07,0x02,0xb9,0x38,0x46,0xb8,0x67,0x39,0x56,
|
||||
0xb3,0x4f,0xc8,0x95,0x61,0xb3,0xea,0x26,0xa4,0x65,0x33,0x1b,0x6e,0x34,0xbc,0x82,
|
||||
0x07,0xc6,0xb8,0xd4,0x85,0x2b,0x84,0x79,0x0c,0xa9,0x41,0x94,0x9f,0xd8,0x4a,0x7a,
|
||||
0x90,0x42,0x12,0x84,0x84,0xf4,0x00,0x79,0xbc,0x7d,0x2d,0xb4,0xe5,0x36,0x4d,0x3f,
|
||||
0xb2,0x43,0xcd,0xaf,0x8d,0xe4,0x59,0x5a,0x18,0xea,0xb8,0xdc,0x19,0x61,0xb6,0x1a,
|
||||
0x5b,0xca,0x25,0x45,0x28,0x42,0x12,0x91,0xd0,0x8e,0x7a,0x01,0xe9,0x04,0x84,0x82,
|
||||
0x7b,0x93,0x5c,0xb7,0x39,0xe6,0xfa,0x8c,0xb2,0xd6,0x36,0x18,0x9a,0xe7,0x3f,0x8d,
|
||||
0x4e,0x37,0xf3,0x3a,0x40,0xe0,0x71,0x72,0xe0,0x6f,0xc0,0x22,0xe4,0x5c,0x45,0x10,
|
||||
0x93,0x92,0xa9,0xd1,0xdf,0x0c,0xcd,0xc1,0x37,0x13,0xce,0x18,0x8c,0x47,0x17,0xc7,
|
||||
0x3e,0x42,0x6f,0x11,0x3a,0xff,0x00,0xe2,0xe0,0x1f,0xf1,0xad,0x0b,0x95,0xe1,0x99,
|
||||
0x9e,0x8b,0x65,0xe9,0x83,0x7d,0xb6,0x5d,0x71,0x1c,0x8a,0x12,0xc3,0xad,0x79,0xc9,
|
||||
0x5c,0x77,0x90,0x41,0xec,0xe3,0x4b,0x1c,0x72,0x39,0x1d,0x96,0x82,0x41,0xf6,0x35,
|
||||
0xe8,0xbe,0xa3,0xbe,0xfd,0x34,0x72,0xc9,0xab,0x5b,0x6d,0xcb,0x9e,0xb8,0x45,0x42,
|
||||
0xae,0xb8,0xe4,0x07,0xef,0x56,0xc9,0xc1,0x3f,0x7b,0x1d,0xc6,0x51,0xe6,0x38,0x90,
|
||||
0x7f,0x85,0xc4,0x20,0xa5,0x43,0xd0,0xf6,0x3c,0x72,0x94,0x91,0xcf,0xb0,0x3f,0x8a,
|
||||
0x35,0xb3,0xd7,0x47,0x4f,0x89,0x44,0xcd,0x0f,0x20,0x5d,0xa0,0x82,0xdb,0x9b,0x5f,
|
||||
0x72,0x6e,0x3a,0xf0,0x7f,0x65,0x33,0xe9,0xc0,0x17,0x69,0x50,0x8f,0x6f,0x3e,0x2f,
|
||||
0x7a,0x9d,0xa6,0x2c,0x47,0xb5,0x67,0xf0,0xda,0xd4,0x9b,0x2b,0x69,0x4b,0x68,0x94,
|
||||
0xfb,0xa2,0x35,0xc9,0xa4,0x8e,0x07,0x77,0x82,0x48,0x77,0xb0,0x3f,0xd6,0x24,0xa9,
|
||||
0x47,0xd5,0x75,0x62,0xda,0x35,0xe2,0x3d,0xa0,0xda,0xd2,0xa6,0x63,0x43,0xcc,0x5a,
|
||||
0xc6,0x2e,0xce,0x27,0xab,0xec,0xcc,0xa1,0x22,0x03,0x80,0xf3,0xc7,0x48,0x71,0x44,
|
||||
0xb2,0xa5,0x7f,0x2a,0x1c,0x51,0x3f,0x4a,0xa0,0xf9,0x98,0x65,0xd2,0x0e,0x15,0x6a,
|
||||
0xca,0x9e,0x64,0x26,0xd1,0x72,0x9d,0x2a,0xdf,0x1d,0xce,0x7b,0x97,0x63,0xa1,0x85,
|
||||
0xb9,0xc8,0xfa,0x71,0x25,0xbe,0x0f,0xb9,0x0a,0xfa,0x57,0x47,0x5f,0x48,0x31,0xed,
|
||||
0x90,0x5d,0x86,0xfc,0x8f,0x70,0x6c,0x7e,0x85,0x58,0xaf,0x54,0x51,0x25,0xb1,0x3e,
|
||||
0x33,0x72,0x23,0x3c,0xdc,0x98,0xee,0x0e,0xa4,0x3a,0xd2,0xc2,0x90,0xa1,0xf5,0x04,
|
||||
0x76,0x22,0xa0,0xc7,0x8c,0xac,0xaf,0x87,0xda,0x4c,0x06,0xf9,0xe3,0xcf,0xca,0x21,
|
||||
0xb7,0xf9,0xfd,0xcc,0x95,0x7f,0xed,0xaa,0x78,0xd3,0xdd,0x6b,0xcf,0xf4,0x99,0x6e,
|
||||
0x1c,0x33,0x34,0xbf,0x62,0xe9,0x75,0x41,0x6e,0xb5,0x6a,0xb8,0x3a,0xc3,0x6e,0x91,
|
||||
0xe8,0x56,0x84,0xa8,0x25,0x5f,0xa8,0x35,0x98,0xea,0xc6,0xf0,0xb5,0x77,0x5c,0xf0,
|
||||
0x48,0x98,0x7e,0x77,0x98,0x3b,0x91,0xd8,0xa2,0x4d,0x6e,0xe0,0xc3,0x52,0x22,0x47,
|
||||
0x43,0x89,0x79,0x08,0x71,0x01,0x45,0xd4,0x36,0x95,0xab,0xe5,0x75,0x7d,0x94,0x48,
|
||||
0xf4,0xfa,0x57,0xb4,0x5a,0x6d,0x4b,0x52,0xcf,0x2a,0x25,0x47,0x80,0x39,0x27,0xd8,
|
||||
0x76,0x15,0xf9,0x5d,0xd5,0xa3,0x09,0xc8,0x2f,0xf6,0x1b,0xb5,0xee,0xd9,0x64,0xb8,
|
||||
0x5c,0x6d,0x16,0x8f,0x2f,0xed,0x19,0xd1,0x23,0x2d,0xd6,0x61,0xf9,0x9d,0x5e,0x59,
|
||||
0x79,0x49,0x04,0x36,0x15,0xd0,0xbe,0x0a,0xb8,0x07,0xa4,0xfd,0x2b,0x8f,0x8e,0xe3,
|
||||
0x37,0x8c,0xc2,0xf1,0x1e,0xd3,0x61,0xb5,0x4d,0xbd,0xdd,0x24,0x1e,0x96,0x60,0xdb,
|
||||
0xa3,0xae,0x43,0xee,0x1f,0xa2,0x50,0x80,0x54,0x7f,0x41,0x44,0x56,0x51,0xe0,0x7b,
|
||||
0x95,0xb7,0x17,0x33,0xd5,0x5c,0x65,0x47,0x97,0x67,0x5b,0xe0,0xdc,0x5b,0x04,0xfa,
|
||||
0x06,0x1c,0x75,0xb5,0xf0,0x3f,0xfd,0x94,0x73,0xf9,0x0a,0xb6,0x79,0xd3,0xa3,0x5b,
|
||||
0x22,0x3b,0x2a,0x64,0x86,0xa2,0x45,0x69,0x3d,0x4e,0x3e,0xfa,0xc2,0x10,0x81,0xf5,
|
||||
0x2a,0x3d,0x80,0xaf,0x35,0x18,0x7e,0xa1,0x6a,0x66,0xd6,0x33,0xab,0xdb,0x76,0x1b,
|
||||
0x8c,0xfc,0x1b,0x2b,0xf8,0x75,0x5a,0xee,0x28,0x0d,0x20,0x48,0x6d,0xb5,0x29,0x0e,
|
||||
0x29,0xa5,0x05,0xa4,0xf4,0x2b,0xa9,0x08,0x27,0x8e,0x14,0x08,0xe3,0xb7,0x71,0x5d,
|
||||
0x26,0xa0,0x6b,0x0e,0x75,0xaa,0xef,0xb4,0xee,0x67,0x98,0xdf,0x32,0x95,0x34,0x4a,
|
||||
0x9a,0x17,0x6b,0x83,0xb2,0x12,0xd1,0xfe,0x44,0xad,0x44,0x23,0xfb,0x20,0x51,0x15,
|
||||
0xea,0x6b,0x3f,0x89,0x5e,0x83,0x68,0xd2,0xa4,0xc5,0x73,0x2c,0x4e,0x5d,0x78,0x65,
|
||||
0x3c,0xfd,0x9d,0x8b,0x24,0x4d,0x24,0xff,0x00,0x09,0x78,0x10,0xca,0x48,0x3e,0xa0,
|
||||
0xb9,0xc8,0xfa,0x7b,0x55,0x72,0xee,0x1f,0xc5,0xc3,0x55,0x35,0x61,0x99,0x16,0xac,
|
||||
0x25,0x96,0xf4,0xce,0xc2,0xea,0x14,0xda,0xdc,0x80,0xf1,0x7a,0xe4,0xe0,0x3d,0x89,
|
||||
0xf8,0x92,0x13,0xe5,0xf6,0xe3,0x8f,0x29,0x29,0x50,0x3c,0xfc,0xe7,0xb7,0x10,0x5a,
|
||||
0x94,0x45,0xf5,0x99,0x31,0xfb,0x84,0xa7,0xa5,0x4a,0x7d,0xc9,0x32,0x5e,0x59,0x71,
|
||||
0xc7,0x9e,0x59,0x5a,0xd6,0xa2,0x79,0x25,0x44,0xf7,0x24,0xfd,0x4d,0x7c,0xab,0xed,
|
||||
0x0a,0x2a,0xe7,0x4c,0x62,0x32,0x3b,0xad,0xe7,0x12,0xda,0x7f,0x32,0x78,0x1f,0xf3,
|
||||
0xac,0x9b,0x57,0x30,0xe4,0xe9,0xe6,0xaa,0xe6,0x38,0xba,0x09,0x2d,0x59,0x6f,0x12,
|
||||
0xed,0xe8,0x51,0x24,0xf5,0x21,0xa7,0x96,0x84,0x9e,0xff,0x00,0x50,0x90,0x6a,0x13,
|
||||
0x2b,0x04,0xa2,0x1b,0xf7,0x88,0x27,0xd8,0x58,0x1f,0xdc,0x2a,0xdb,0xc5,0x7f,0x78,
|
||||
0x2d,0xdf,0x35,0xd3,0x19,0xd6,0x9d,0x47,0xc5,0xcd,0xd2,0xca,0xab,0x6d,0xc3,0xc9,
|
||||
0x87,0x90,0x46,0x65,0x61,0x84,0x4a,0x4a,0x42,0xd4,0xcf,0x99,0xc7,0x42,0x89,0x42,
|
||||
0x87,0x53,0x67,0x9e,0xa4,0x2f,0x85,0x02,0x95,0x77,0xbd,0x7d,0x8b,0x6f,0x7e,0xc7,
|
||||
0xbb,0xac,0x1d,0x4c,0xcb,0x11,0xec,0xfa,0x87,0x69,0x69,0x3f,0x6b,0xd9,0x90,0xae,
|
||||
0x10,0xe8,0xf4,0xf8,0xa8,0xc0,0x92,0xa5,0x34,0xa3,0xc7,0x23,0xb9,0x6d,0x44,0x25,
|
||||
0x44,0x82,0x85,0x2f,0x45,0x6c,0x47,0x43,0xf4,0xda,0xfd,0xb4,0xb9,0x96,0x98,0xd7,
|
||||
0x57,0x73,0xac,0x67,0x2d,0x77,0xcf,0xbb,0x5b,0xee,0x4d,0x25,0xb1,0x0e,0x58,0x69,
|
||||
0xb4,0x3a,0xc8,0x42,0x4f,0x28,0x5a,0x14,0x84,0x90,0xbe,0x79,0x3c,0x36,0xb4,0x9e,
|
||||
0x3a,0x49,0x83,0x3a,0xe5,0xa3,0x99,0xdf,0x87,0x9e,0xbe,0xd9,0xf2,0x7c,0x4a,0xe7,
|
||||
0x24,0x5b,0x04,0x85,0x4a,0xb0,0x5e,0xf8,0xe4,0x38,0x80,0x7e,0x78,0xb2,0x40,0xe0,
|
||||
0x15,0x74,0x9e,0x95,0xa7,0xd1,0x69,0x57,0x23,0x8e,0x4a,0x53,0xa3,0x61,0x19,0xc2,
|
||||
0x8f,0x13,0xc4,0xe7,0xc2,0x5c,0x34,0x48,0xc2,0x43,0x6f,0x71,0xa8,0x0e,0x76,0x36,
|
||||
0x21,0xc3,0x7b,0x8e,0x9b,0x8f,0x1b,0x4a,0xe8,0x8b,0x5a,0x1c,0xaf,0xf6,0x95,0xa4,
|
||||
0x76,0x8d,0xba,0x6c,0x7b,0x76,0x1a,0x51,0x13,0x27,0xb4,0x94,0x43,0xbc,0xc7,0xe9,
|
||||
0x8f,0x7a,0xb3,0x95,0x82,0xe4,0x19,0x3c,0x77,0x1c,0x73,0xc9,0x6d,0x7c,0x15,0x21,
|
||||
0x7e,0xe3,0xb1,0xe1,0x49,0x50,0x1b,0xba,0xb7,0xf5,0x0a,0x52,0x94,0xa2,0x25,0x29,
|
||||
0x4a,0x22,0x52,0x94,0xa2,0x25,0x29,0x4a,0x22,0xc6,0x35,0x37,0x52,0x2c,0x3a,0x43,
|
||||
0x80,0xdf,0x33,0x2c,0x9e,0x62,0x60,0x58,0xac,0xd1,0x95,0x26,0x4b,0xc7,0x8e,0x48,
|
||||
0x1d,0x92,0x84,0x82,0x47,0x52,0xd4,0xa2,0x94,0x25,0x3e,0xea,0x52,0x47,0xbd,0x79,
|
||||
0xd8,0xdd,0x0e,0xe3,0xb2,0x2d,0xd1,0x6a,0xe5,0xd3,0x34,0xbf,0x28,0xb2,0xca,0xc9,
|
||||
0x8f,0x6c,0xb6,0xa5,0x5c,0xb7,0x02,0x22,0x54,0x4b,0x6d,0x27,0xea,0x7b,0x95,0x29,
|
||||
0x5f,0xbc,0xa5,0x28,0xf0,0x01,0x00,0x4a,0xaf,0x16,0x6d,0xdd,0xab,0x55,0x35,0x14,
|
||||
0x69,0x46,0x35,0x31,0x47,0x14,0xc5,0x24,0xab,0xed,0x37,0x1b,0xe3,0xa6,0x6d,0xcd,
|
||||
0x3c,0xa5,0x43,0x9f,0x52,0x86,0x41,0x52,0x07,0xa7,0xce,0x5c,0xe4,0x10,0x94,0x1a,
|
||||
0xd5,0xbe,0x1e,0x9b,0x50,0xff,0x00,0x48,0x4d,0x4c,0x37,0xec,0x82,0x19,0x73,0x04,
|
||||
0xc7,0x1c,0x43,0xb3,0x12,0xe2,0x0f,0x97,0x3e,0x47,0xab,0x71,0x41,0xf4,0x23,0xd1,
|
||||
0x6b,0xf5,0xf9,0x78,0x07,0x8f,0x30,0x1a,0xc5,0x62,0x98,0x95,0x3e,0x11,0x47,0x25,
|
||||
0x75,0x51,0xb3,0x18,0x2f,0xeb,0xd0,0x0f,0x32,0x76,0x0b,0xd3,0x5a,0x5c,0x6c,0x14,
|
||||
0xae,0xf0,0xc8,0xda,0x18,0xc0,0xb1,0xd6,0x35,0x67,0x2b,0x87,0xd3,0x91,0xdd,0xd8,
|
||||
0x3f,0x62,0xc5,0x75,0x24,0x2a,0x14,0x35,0x8e,0x0b,0xc4,0x1f,0x47,0x1d,0x07,0xb7,
|
||||
0xd1,0xb2,0x3b,0xfc,0xea,0x02,0x46,0xee,0xdf,0x73,0x56,0xad,0xaf,0x69,0x6b,0xf7,
|
||||
0xe7,0xd0,0xd4,0xdc,0x86,0x69,0x54,0x5b,0x2d,0xb1,0xc2,0x78,0x91,0x23,0x8e,0x7a,
|
||||
0x97,0xc7,0x07,0xcb,0x40,0x21,0x4a,0x20,0x8f,0x64,0x82,0x0a,0x85,0x6e,0x69,0x93,
|
||||
0x22,0xda,0x60,0x3f,0x2e,0x53,0xcd,0x43,0x85,0x19,0xa5,0x3a,0xeb,0xce,0xa8,0x21,
|
||||
0xb6,0x9b,0x48,0xe5,0x4a,0x24,0xf6,0x00,0x00,0x4f,0x3e,0xc0,0x55,0x13,0x6e,0xa7,
|
||||
0x5c,0x2f,0x5b,0xb6,0xd7,0xe9,0x13,0x6d,0x31,0xa5,0xcf,0x81,0xe7,0x0b,0x56,0x39,
|
||||
0x6b,0x8e,0xd2,0x96,0xe2,0x98,0x0a,0x21,0x1c,0x36,0x07,0x25,0xc7,0x14,0x4a,0xc8,
|
||||
0xe3,0x9e,0x54,0x13,0xe8,0x91,0x5f,0x2f,0xe0,0x74,0x53,0xe7,0xec,0x7a,0x4c,0x43,
|
||||
0x11,0xff,0x00,0x85,0x9b,0xbb,0xa0,0x1f,0x75,0x80,0xf8,0x0e,0x6e,0x7a,0x02,0x79,
|
||||
0x2b,0x20,0xf2,0x21,0x65,0x9b,0xca,0xb2,0xff,0x00,0x0f,0x5d,0xd3,0x65,0x9b,0x9a,
|
||||
0xc2,0xb2,0x97,0x33,0x08,0x91,0x05,0xca,0xc9,0x35,0xa6,0xd1,0x3e,0x0b,0x45,0x96,
|
||||
0xe4,0x36,0xea,0x14,0xa0,0x92,0x8e,0x48,0xeb,0x41,0x41,0xe4,0x8e,0x01,0x0b,0x47,
|
||||
0x6e,0x41,0x2a,0xd8,0x5b,0xd9,0xcd,0xe1,0xe0,0x3b,0x57,0xd4,0x79,0xd2,0xdd,0x4b,
|
||||
0x66,0x5d,0xa5,0xdb,0x5b,0x08,0x24,0x75,0x38,0xec,0x91,0xe4,0x25,0x29,0x1e,0xff,
|
||||
0x00,0xd6,0x15,0x1e,0x3d,0x92,0xa3,0xed,0x5f,0xce,0xcc,0xf6,0xfd,0xfe,0x8d,0xfa,
|
||||
0x15,0x68,0xc6,0xa5,0x86,0xd5,0x7f,0x94,0xb5,0x5c,0xaf,0x0e,0x34,0x79,0x06,0x53,
|
||||
0x81,0x3c,0xa0,0x1e,0x4f,0x21,0x08,0x4a,0x1b,0xe4,0x76,0x3d,0x05,0x5f,0xbd,0x51,
|
||||
0x5f,0x76,0xfa,0x84,0xce,0xea,0xf7,0x5b,0x80,0x6d,0xfa,0xc6,0xe1,0x9d,0x8d,0x5a,
|
||||
0xae,0xe1,0xfc,0x89,0x6c,0x2b,0x80,0xeb,0xcd,0xa5,0x4a,0x7d,0x01,0x7e,0xde,0x4b,
|
||||
0x29,0x75,0x3c,0x8f,0xdf,0x5a,0x87,0x72,0x91,0x58,0xc8,0x28,0xe8,0xb1,0x4c,0xd1,
|
||||
0x2c,0xd4,0x2d,0xd3,0x49,0x13,0x8c,0x84,0x8e,0x03,0x23,0xdc,0x91,0xd3,0x51,0x1b,
|
||||
0x7a,0xf9,0x2f,0x44,0x96,0xc7,0x63,0xc9,0x59,0x4d,0x83,0x62,0x09,0xd5,0x1d,0x8a,
|
||||
0xe9,0xb6,0x10,0xed,0xd1,0x8b,0x16,0x44,0x87,0x91,0x92,0x2a,0xe2,0xe4,0x62,0xef,
|
||||
0x42,0xa4,0xa5,0x6b,0x5b,0x2a,0x4f,0x20,0xf6,0x6d,0xd6,0xd2,0x7b,0xfe,0xd3,0x20,
|
||||
0xfa,0x56,0x9f,0xb3,0x78,0x45,0x65,0x96,0xcd,0x4c,0xc7,0x5b,0xba,0x64,0xd6,0x9b,
|
||||
0xd6,0x0e,0xa9,0x49,0x55,0xce,0x44,0x5f,0x31,0x89,0x69,0x65,0x20,0xa9,0x48,0x0d,
|
||||
0x91,0xc7,0xcf,0xc0,0x40,0x52,0x56,0x48,0x2a,0xe4,0x8e,0x05,0x5a,0x24,0xfb,0x95,
|
||||
0xbb,0x1e,0x80,0x1f,0x9b,0x2a,0x2d,0xb2,0x0b,0x65,0x0d,0x07,0x1f,0x71,0x2c,0xb4,
|
||||
0x92,0x48,0x4a,0x13,0xc9,0x20,0x0e,0x49,0x00,0x0f,0xa9,0x00,0x57,0x34,0x0e,0x48,
|
||||
0x15,0x69,0x06,0x7b,0xc7,0x69,0x3b,0x6e,0xc2,0x4b,0x32,0x47,0x3d,0xd6,0x20,0x1b,
|
||||
0x17,0x6e,0x6c,0x6d,0x7d,0xaf,0x71,0xbd,0x87,0x45,0x53,0x13,0x0d,0xae,0x17,0x9e,
|
||||
0x6d,0xc4,0xc5,0x89,0x07,0x5f,0x35,0x1e,0x2c,0x08,0xcd,0x43,0x82,0xc6,0x45,0x3d,
|
||||
0x96,0x23,0xb0,0x90,0x96,0xda,0x6d,0x32,0x16,0x94,0xa1,0x20,0x7a,0x00,0x00,0x00,
|
||||
0x7e,0x15,0xaf,0x6b,0x2f,0xd6,0x2b,0xa2,0x6f,0x7a,0xb9,0x9b,0xdc,0x50,0x79,0x44,
|
||||
0xbb,0xe4,0xe9,0x09,0x20,0xf3,0xd9,0x52,0x16,0xa1,0xff,0x00,0x3a,0xc4,0x2b,0xec,
|
||||
0x6a,0x16,0x96,0xd2,0xc4,0xd7,0x72,0x1a,0xdf,0xd8,0x2c,0x59,0xe4,0xab,0x65,0xdb,
|
||||
0xfe,0xcf,0x6f,0x98,0xbd,0x82,0xdf,0xa8,0x7a,0x0b,0xaa,0xb7,0x6d,0x32,0xba,0x5f,
|
||||
0x6d,0x4d,0x33,0x75,0xb2,0xde,0x60,0x31,0x74,0x6d,0x2e,0x29,0x29,0x5f,0x48,0x2a,
|
||||
0x00,0x74,0x82,0x42,0x9b,0x59,0x42,0x89,0x42,0xd2,0xb4,0xab,0xa5,0x7d,0xf5,0x46,
|
||||
0x8e,0x78,0x78,0x6e,0x1f,0x01,0xd6,0xab,0x85,0xdd,0x8c,0xea,0x3e,0x0d,0xe4,0xa1,
|
||||
0x7d,0x59,0x9d,0xbe,0x59,0x92,0xa9,0xc1,0xd3,0xf3,0x25,0x2d,0x12,0x95,0xa8,0x93,
|
||||
0xc1,0x50,0x77,0xa0,0x72,0x01,0x04,0x90,0x2b,0xbb,0xf0,0xfc,0xde,0xae,0x35,0x3b,
|
||||
0x0d,0x46,0x8e,0x6a,0xe4,0xc8,0x4c,0xc3,0x65,0x01,0xab,0x35,0xd2,0xee,0x52,0x22,
|
||||
0xba,0xc2,0x7b,0x88,0x8f,0xad,0x5d,0x90,0x51,0xd2,0x0b,0x6b,0x51,0xe0,0x8e,0x13,
|
||||
0xc8,0x29,0x40,0x54,0x97,0xb9,0xce,0xd1,0x7d,0x14,0x7e,0xf9,0x9a,0xe4,0x19,0x46,
|
||||
0x19,0x77,0x89,0x6e,0x6d,0x57,0x0b,0x4d,0xbc,0x79,0x6f,0xcf,0x61,0x69,0x3d,0x6d,
|
||||
0x86,0x54,0xb7,0xdc,0x2b,0x73,0x90,0x12,0x85,0x36,0x86,0xcf,0x7e,0x49,0x3e,0xa2,
|
||||
0xd9,0xd2,0xcd,0x1b,0x8b,0x09,0xf4,0xd9,0x65,0x1b,0x14,0x32,0x34,0x3c,0x7b,0xee,
|
||||
0xaa,0x7b,0x75,0xfa,0x5e,0xbd,0x21,0xd7,0x0b,0xfe,0x3e,0xed,0xd6,0xe1,0x7c,0x90,
|
||||
0x92,0x99,0x0f,0x5d,0x2e,0xce,0xa5,0x52,0xe6,0x3a,0xb1,0xcb,0x92,0x1c,0x00,0x92,
|
||||
0x9f,0x31,0x7d,0x4e,0x24,0x29,0x4a,0x51,0x42,0xd0,0xa2,0xa3,0xd5,0xcd,0x6a,0x0a,
|
||||
0xcb,0xb5,0x5b,0x51,0x2e,0xfa,0xc7,0xa8,0xd9,0x36,0x6d,0x77,0x47,0xf4,0xeb,0xbc,
|
||||
0xc5,0xcb,0x79,0x0d,0xf2,0x50,0xc2,0x54,0x78,0x43,0x69,0x27,0xbf,0x4a,0x12,0x12,
|
||||
0x81,0xcf,0x7e,0x12,0x2b,0x11,0xac,0x9b,0x2f,0xa4,0x03,0xca,0xc6,0x3a,0xc5,0xc6,
|
||||
0xdc,0x2c,0x92,0xdb,0x87,0xb9,0x71,0xd3,0xbb,0xfe,0x4c,0x8e,0xb2,0x8b,0x55,0xc6,
|
||||
0x04,0x15,0x81,0xfb,0x3c,0x48,0x6e,0x52,0x81,0x3f,0x8f,0x31,0x87,0x1f,0x99,0xae,
|
||||
0x8a,0x4d,0xbe,0x4c,0x36,0x22,0x3c,0xfb,0x0e,0x32,0xd4,0xb6,0xcb,0xd1,0xd6,0xb4,
|
||||
0x90,0x1d,0x40,0x5a,0x90,0x54,0x93,0xee,0x3a,0x90,0xb4,0xf3,0xf5,0x49,0x1e,0xd5,
|
||||
0x28,0x74,0xff,0x00,0x4d,0x5e,0xff,0x00,0xe1,0xe1,0xaa,0xd9,0x83,0x8c,0xa9,0x28,
|
||||
0x7b,0x27,0xb6,0x21,0xa5,0x29,0x3c,0x75,0x25,0x82,0x1b,0xea,0x1f,0x51,0xd5,0x39,
|
||||
0x49,0xe7,0xea,0x08,0xf6,0xa9,0x39,0xb0,0xcd,0xbe,0x60,0x3b,0x8b,0xdb,0x36,0x2e,
|
||||
0xf6,0x6f,0x66,0x17,0x55,0xe2,0x99,0x24,0xff,0x00,0x85,0x48,0x70,0xa0,0x3a,0x85,
|
||||
0xa1,0x0b,0x2c,0xba,0x47,0x75,0x35,0xd6,0xe2,0x57,0xd2,0x08,0xf9,0x90,0x3d,0x8a,
|
||||
0x92,0xad,0x13,0x11,0xcd,0x50,0xe1,0x50,0xcf,0x57,0x33,0x4b,0xa3,0x8e,0x5e,0xcc,
|
||||
0xdb,0x91,0xfc,0xb0,0x76,0xff,0x00,0x23,0x6e,0x47,0x2a,0x46,0xc6,0x5c,0x40,0xf2,
|
||||
0x55,0xcd,0xa4,0x96,0xcf,0xb6,0xf5,0x57,0x0c,0xb7,0x71,0xd5,0xf1,0x77,0xa8,0x51,
|
||||
0xf8,0xfa,0xf5,0xbe,0x84,0xff,0x00,0xde,0xb7,0x27,0x88,0x76,0x1a,0xbc,0x33,0x77,
|
||||
0x59,0xdb,0x7e,0x52,0x9b,0x8d,0x72,0x75,0x8b,0xa3,0x0b,0x50,0xfe,0xb0,0x3c,0xca,
|
||||
0x14,0xb2,0x3f,0x0f,0x37,0xcd,0x4f,0xf6,0x4d,0x5d,0x76,0x3b,0x81,0x63,0x18,0x7c,
|
||||
0x66,0xe3,0xd8,0x71,0xcb,0x4d,0x92,0x3b,0x60,0x04,0x35,0x6e,0x82,0xd4,0x74,0xa4,
|
||||
0x0f,0x4e,0x02,0x12,0x38,0xaa,0xca,0xf1,0x87,0xc2,0xdc,0x85,0xa8,0xd8,0x06,0x58,
|
||||
0x13,0xcb,0x17,0x1b,0x5b,0xd6,0xd5,0x28,0x0f,0x45,0xc7,0x77,0xcc,0xee,0x7f,0x11,
|
||||
0x27,0xb7,0xfb,0xa7,0xe9,0x5a,0x36,0x03,0x9e,0x1b,0x98,0x73,0x24,0x31,0xb6,0x2e,
|
||||
0xcd,0xa5,0x8f,0x68,0xb9,0xbd,0xce,0xcf,0xbf,0x02,0xdb,0x33,0xcd,0x4c,0xf8,0xb4,
|
||||
0x46,0x56,0x82,0xd9,0x26,0xeb,0x67,0x6d,0x8f,0x53,0x9b,0x5c,0xc7,0x5c,0x7f,0x08,
|
||||
0xbc,0x2d,0x0c,0x5e,0xa1,0x24,0x75,0x74,0x27,0xd1,0x32,0x5b,0x1f,0xc6,0xdf,0x24,
|
||||
0xf1,0xfb,0xc9,0x2a,0x4f,0xaf,0x49,0x17,0x17,0xac,0x3a,0x51,0x8a,0xee,0x4f,0x49,
|
||||
0x66,0xe3,0x57,0x75,0x33,0x3a,0xcd,0x76,0x61,0x12,0x21,0x5c,0x63,0x10,0xe1,0x61,
|
||||
0xce,0x9e,0xa6,0x64,0xb2,0xa0,0x78,0x24,0x72,0x08,0x20,0xf0,0xa4,0x92,0x93,0xca,
|
||||
0x54,0x41,0xf3,0xfd,0x03,0x15,0xbc,0x5d,0x6c,0x17,0x5b,0xe4,0x3b,0x74,0x89,0x56,
|
||||
0x9b,0x52,0xd9,0x44,0xe9,0x6d,0x20,0xa9,0x11,0x8b,0xa5,0x41,0xa2,0xbe,0x3f,0x64,
|
||||
0x28,0xa0,0x80,0x4f,0x6e,0x78,0x1c,0xf2,0x40,0x36,0x77,0xe1,0x55,0xb9,0xb3,0x93,
|
||||
0x63,0x92,0x34,0x86,0xff,0x00,0x28,0xae,0xe7,0x68,0x6d,0x52,0xec,0x6e,0x39,0xea,
|
||||
0xec,0x4e,0x79,0x71,0x8e,0x7d,0xcb,0x6a,0x57,0x52,0x47,0xaf,0x42,0x88,0xf4,0x6e,
|
||||
0xa9,0xf1,0x13,0x01,0x3b,0x66,0x0c,0x34,0xda,0x68,0x48,0xd7,0xa7,0x9d,0xac,0x43,
|
||||
0xbd,0x5b,0xb5,0xff,0x00,0x09,0x07,0x80,0x90,0x3f,0xee,0x3b,0x82,0xa2,0x8e,0x96,
|
||||
0xea,0x16,0x7b,0xe1,0xbb,0xba,0x59,0x4c,0x5c,0x18,0x71,0xf6,0x22,0xb8,0x22,0x5d,
|
||||
0xed,0xe8,0x3c,0x33,0x77,0xb7,0xa8,0x85,0x25,0xc6,0xc9,0xed,0xcf,0x1c,0x2d,0x0a,
|
||||
0xf5,0x4a,0x81,0x4a,0xbf,0x7d,0x26,0xfa,0x30,0x3c,0xe6,0xc9,0xa9,0x98,0x6d,0x9f,
|
||||
0x2a,0xc6,0xe7,0xb5,0x74,0xb1,0x5d,0xa3,0x22,0x5c,0x49,0x4d,0x1e,0xcb,0x42,0x87,
|
||||
0xa1,0x1e,0xa9,0x50,0x3c,0x85,0x24,0xf7,0x49,0x04,0x10,0x08,0x22,0xa0,0xcf,0x88,
|
||||
0x86,0xd4,0xd1,0xaf,0xba,0x60,0xbc,0x8e,0xc3,0x0b,0xcc,0xce,0xf1,0xa6,0x56,0xf4,
|
||||
0x50,0xcb,0x7c,0xbb,0x3e,0x28,0xf9,0x9c,0x8a,0x78,0xee,0xa2,0x3b,0xad,0xb1,0xdf,
|
||||
0xe6,0xe5,0x20,0x7d,0xe1,0x35,0x1e,0xbc,0x23,0xb7,0x7a,0xbc,0x1b,0x32,0xff,0x00,
|
||||
0x33,0x19,0x54,0xf2,0x9c,0x7e,0xfa,0xf1,0x72,0xc2,0xf4,0x97,0x78,0x4c,0x39,0xe7,
|
||||
0xd6,0x38,0xea,0xf4,0x4b,0xfe,0xc0,0x1f,0xeb,0x40,0x00,0x12,0xe9,0x35,0xd0,0x72,
|
||||
0x8e,0x63,0x8f,0x32,0x61,0xc2,0x73,0xb4,0xad,0xd9,0xe3,0xa1,0xea,0x3c,0x9d,0xc8,
|
||||
0xf7,0x1e,0x0a,0x09,0x63,0xec,0xdd,0x6f,0x05,0x71,0x34,0xa5,0x2b,0x77,0x51,0x25,
|
||||
0x29,0x4a,0x22,0x52,0x94,0xa2,0x25,0x46,0x0f,0x10,0xbd,0xd2,0x0d,0xb0,0x68,0x24,
|
||||
0xe9,0x56,0xa9,0x48,0x67,0x35,0xbf,0xf5,0x5b,0x6c,0x68,0x3d,0xd4,0xda,0xc8,0xfb,
|
||||
0xd9,0x20,0x7f,0xb2,0x41,0xe4,0x1e,0xe3,0xad,0x4d,0x82,0x08,0x35,0x27,0xeb,0xcf,
|
||||
0x9f,0x88,0x76,0xe5,0x17,0xb9,0x1d,0xc5,0xde,0x26,0x40,0x96,0xe3,0xd8,0x95,0x80,
|
||||
0xaa,0xd1,0x65,0x6c,0xab,0xee,0xd4,0xda,0x14,0x43,0xb2,0x12,0x07,0x6f,0xbd,0x70,
|
||||
0x29,0x41,0x5e,0xa5,0x01,0xb0,0x7f,0x64,0x00,0x45,0xa1,0x30,0x1c,0x1e,0xf3,0xaa,
|
||||
0x39,0xc5,0x9b,0x16,0xb1,0xb0,0x65,0xde,0xaf,0x12,0xd1,0x16,0x3a,0x54,0x4f,0x1d,
|
||||
0x4a,0x3d,0xd4,0xb2,0x01,0xe1,0x29,0x1c,0xa9,0x4a,0xf6,0x00,0x9f,0x6a,0xbf,0x9d,
|
||||
0x06,0xd1,0x9b,0x2e,0x81,0x69,0x5d,0x8f,0x0a,0xb2,0x24,0x29,0x88,0x0d,0x73,0x22,
|
||||
0x57,0x4f,0x0b,0x97,0x21,0x5d,0xdd,0x79,0x5d,0xcf,0x75,0x2b,0x9e,0x07,0x3f,0x28,
|
||||
0xe9,0x48,0xec,0x91,0x50,0x97,0xc2,0x6f,0x6e,0x7f,0x66,0xda,0x2e,0x5a,0xc1,0x7a,
|
||||
0x8a,0xa1,0x26,0x77,0x5d,0xba,0xc2,0x97,0x12,0x38,0x4b,0x00,0xf0,0xfc,0x81,0xf8,
|
||||
0xa9,0x43,0xcb,0x07,0xb7,0x01,0x0e,0x7a,0x85,0x0a,0xb1,0x95,0xad,0x2d,0x21,0x4b,
|
||||
0x5a,0x82,0x10,0x90,0x4a,0x94,0xa3,0xc0,0x03,0xdc,0x9a,0xf9,0x4b,0xe2,0x5e,0x63,
|
||||
0x38,0x85,0x77,0xd9,0x54,0xee,0xfe,0x5c,0x27,0xbd,0xe6,0xff,0x00,0x1f,0xcb,0xc7,
|
||||
0xad,0xd6,0x46,0x06,0x69,0x1a,0x8f,0x8a,0xe8,0xb3,0xec,0x2e,0x06,0xa3,0xe1,0x77,
|
||||
0xac,0x5e,0xea,0xe4,0x96,0xad,0x97,0x78,0xab,0x87,0x28,0xc3,0x74,0xb4,0xe9,0x69,
|
||||
0x63,0x85,0x80,0xa1,0xe9,0xc8,0xe4,0x1f,0xc0,0x9a,0xd6,0xfa,0x57,0xb5,0xed,0x24,
|
||||
0xdb,0x5c,0x29,0x77,0x9c,0x67,0x16,0x62,0x14,0xc8,0xcc,0x38,0xf3,0xf7,0x89,0x01,
|
||||
0xc9,0xb3,0x42,0x02,0x0f,0x5f,0x42,0x95,0xd4,0xa4,0xf2,0x9e,0x41,0x43,0x40,0x75,
|
||||
0x7d,0x09,0xae,0xbf,0x6e,0xdb,0xc1,0xc3,0xb7,0x29,0x96,0x66,0xd6,0x2c,0x71,0x0e,
|
||||
0xb2,0xe6,0x3b,0x20,0x06,0x1e,0x7d,0x63,0x8b,0x94,0x52,0x7a,0x7e,0x25,0xb4,0xf6,
|
||||
0x29,0x4f,0x58,0x23,0x83,0xdc,0x05,0x36,0x4f,0x05,0x65,0x29,0xde,0xd5,0xcc,0x67,
|
||||
0x38,0x9e,0x11,0xaf,0x0d,0xa8,0x2f,0x8c,0x1b,0x17,0x32,0xe4,0x5e,0xe0,0x11,0x71,
|
||||
0xc1,0xdb,0xad,0xed,0xd2,0xea,0x71,0xa5,0xdd,0xe0,0xab,0x73,0x77,0x1e,0x28,0x96,
|
||||
0xd7,0x6c,0x93,0x71,0x4d,0x1a,0x7d,0xf9,0x13,0x24,0xa0,0xb5,0x23,0x2c,0x5b,0x6a,
|
||||
0x65,0x2c,0x20,0x8f,0x98,0x45,0x42,0xc0,0x59,0x5f,0x7e,0x3c,0xc5,0x04,0xf4,0xf0,
|
||||
0x4a,0x42,0x89,0x0a,0x4f,0x55,0xe1,0x05,0xa5,0x0b,0x99,0x78,0xcd,0x75,0x36,0x68,
|
||||
0x2a,0x4b,0x08,0x4d,0x8e,0x12,0x95,0xdf,0xa9,0xc5,0xf4,0xbd,0x21,0x47,0xe8,0x40,
|
||||
0x0c,0x80,0x7d,0xfc,0xc5,0x7d,0x2a,0x18,0xee,0x87,0x00,0x6b,0x4e,0x77,0x1b,0xa8,
|
||||
0x38,0xc4,0x06,0xba,0x62,0x45,0xbd,0x3f,0xf0,0x6c,0x36,0x3f,0x61,0x97,0x15,0xe6,
|
||||
0x34,0x80,0x3d,0xf8,0x42,0xd2,0x3f,0x4a,0xba,0x5d,0xa2,0xe8,0xea,0xb4,0x2b,0x6f,
|
||||
0x78,0x86,0x2b,0x26,0x32,0x63,0x5d,0xd1,0x1b,0xe3,0x2e,0x89,0x1c,0x15,0x7c,0x5b,
|
||||
0xc7,0xcc,0x74,0x28,0x8e,0xca,0x28,0xe4,0x37,0xcf,0xd1,0xb1,0x5d,0xc7,0x33,0x33,
|
||||
0x0d,0xcb,0x39,0x59,0x94,0xb8,0x58,0xb1,0xaa,0xd3,0xb9,0xdd,0xce,0x6d,0x83,0x89,
|
||||
0x27,0xd2,0xc2,0xc0,0x00,0x35,0x6c,0x37,0x56,0xb1,0xea,0x92,0x4b,0xbb,0xc1,0x44,
|
||||
0x6f,0x18,0x0d,0x57,0x10,0xec,0x18,0x5e,0x9c,0x44,0x96,0x03,0xd3,0x1e,0x5d,0xee,
|
||||
0xe0,0xc2,0x09,0x0a,0x0d,0x23,0xa9,0xa8,0xfd,0x5f,0x54,0xa9,0x4a,0x7c,0xf1,0xf5,
|
||||
0x68,0x1f,0x61,0x53,0xd7,0x18,0x74,0xe2,0xba,0x6d,0x68,0x72,0xe0,0xb5,0x28,0xdb,
|
||||
0x6d,0x0c,0xaa,0x42,0xdc,0x3f,0x31,0xf2,0xd9,0x1d,0x64,0x93,0xef,0xf2,0x9a,0xa4,
|
||||
0x0d,0xcf,0x6a,0x7a,0xf7,0x23,0xba,0x7b,0xdd,0xd6,0x17,0xf4,0x8b,0x7c,0xcb,0x9b,
|
||||
0x56,0x9b,0x4a,0x1b,0x57,0x50,0x5c,0x66,0xd4,0x19,0x69,0x49,0xff,0x00,0xc4,0xe0,
|
||||
0xb9,0xc7,0xd5,0xc3,0x57,0x3f,0xb8,0x5b,0x81,0xc7,0xf6,0xf7,0xa8,0xf2,0xd2,0xae,
|
||||
0x83,0x17,0x1a,0xb8,0x29,0x2a,0x1e,0xc4,0x46,0x5f,0x15,0xab,0xe6,0x6c,0x23,0xec,
|
||||
0xdc,0x2f,0x06,0xc2,0xdc,0x2c,0xf7,0x6a,0x73,0xba,0xea,0x79,0x67,0xed,0x7b,0x7b,
|
||||
0x29,0x23,0x7d,0xdc,0xe7,0x2a,0xaa,0xc6,0xb6,0x5f,0x97,0xeb,0xbe,0xd7,0x74,0xff,
|
||||
0x00,0x2f,0xc1,0xac,0xad,0xdd,0xb2,0x49,0x17,0x7b,0x9b,0x77,0x15,0x39,0x29,0x98,
|
||||
0xe5,0xc8,0xc5,0xc0,0x1b,0x59,0x53,0xab,0x48,0x21,0x0e,0x34,0xe8,0xe0,0x72,0x7e,
|
||||
0xf7,0xd3,0x81,0xdb,0xfb,0xb7,0xf8,0x54,0x6b,0xa4,0xc4,0xa4,0xbc,0xce,0x3b,0x00,
|
||||
0x9f,0x51,0x22,0xe9,0xc9,0x1f,0xe0,0x42,0xaa,0xca,0xb6,0x4f,0x88,0x7f,0x90,0xbb,
|
||||
0x50,0xd3,0x4b,0x62,0xb9,0x05,0x56,0x94,0xdc,0x17,0xd5,0xfb,0xa6,0x4a,0xd7,0x24,
|
||||
0x83,0xf9,0x17,0x88,0xfd,0x2b,0x76,0x25,0x41,0x69,0x0a,0x49,0x0a,0x49,0x1c,0x82,
|
||||
0x3d,0x08,0xa9,0xab,0xbe,0x23,0xe2,0xf4,0x35,0x75,0x14,0xd4,0x9a,0x0c,0x6d,0x91,
|
||||
0xfa,0x49,0x04,0x9b,0x6a,0x36,0xf1,0xb7,0xa6,0xdc,0x2a,0x08,0x1a,0x40,0x25,0x53,
|
||||
0x3d,0xdb,0xc2,0xaf,0x5d,0x6d,0xcc,0xa9,0x71,0xe2,0xe3,0xf7,0x55,0x01,0xc8,0x6e,
|
||||
0x25,0xd4,0x25,0x47,0xf0,0x1e,0x6a,0x50,0x3f,0xbc,0xd6,0x00,0xf6,0xc1,0x35,0xee,
|
||||
0x26,0x43,0x6d,0xb4,0x49,0xd3,0xbb,0x83,0x2e,0xce,0x7d,0x2c,0x26,0x52,0x1d,0x69,
|
||||
0xf8,0xac,0xf3,0xfb,0xee,0xba,0xd2,0xd6,0x96,0xd0,0x07,0x72,0xa5,0x1f,0xcb,0x93,
|
||||
0xc0,0xab,0xcc,0xba,0x5e,0x6d,0xf6,0x38,0xe9,0x7e,0xe5,0x3a,0x35,0xbd,0x85,0x28,
|
||||
0x20,0x3b,0x29,0xe4,0xb4,0x92,0xa3,0xe8,0x39,0x51,0x03,0x9e,0xc7,0xb5,0x75,0x12,
|
||||
0xf5,0x23,0x13,0x83,0x02,0x54,0xd7,0xf2,0x6b,0x4b,0x71,0x22,0xb4,0xa7,0x9e,0x77,
|
||||
0xe3,0x5b,0x21,0xb4,0x24,0x12,0xa5,0x1e,0x15,0xe8,0x00,0x27,0xf4,0xa5,0x3f,0xc5,
|
||||
0x0c,0x7e,0xdb,0xc2,0xc7,0xdf,0xf0,0xbb,0x9f,0x67,0x5b,0xf4,0x43,0x4e,0xc5,0x50,
|
||||
0x5b,0xc4,0xd2,0xcb,0x56,0x82,0xc1,0xc0,0x34,0x27,0x11,0x22,0xef,0x7e,0x7c,0x22,
|
||||
0xf3,0x90,0x4d,0x69,0x20,0xbd,0x72,0xb8,0xba,0x4b,0x31,0x9b,0xe3,0xb9,0x42,0x5b,
|
||||
0x4f,0x9b,0xd0,0xdf,0x3e,0x8f,0xf5,0x1e,0x4a,0x8a,0x8c,0x59,0xc9,0xb1,0xd9,0x58,
|
||||
0xb6,0x51,0x75,0xb0,0xca,0xe9,0x5c,0xdb,0x74,0xc7,0x60,0xbb,0xe5,0x72,0x52,0x5c,
|
||||
0x6d,0x65,0x0a,0xe9,0xfa,0x8e,0x41,0xe2,0xa6,0x16,0xda,0x10,0xf6,0xef,0xbc,0x42,
|
||||
0xe4,0x66,0xf3,0x1a,0x71,0x16,0xc8,0xb3,0xdd,0xc9,0x14,0xd3,0x87,0x95,0xb5,0x1e,
|
||||
0x39,0x4a,0x21,0xb6,0x4f,0xa1,0x29,0x57,0xc3,0x24,0xfd,0x42,0x55,0xc5,0x70,0xb4,
|
||||
0xc3,0x45,0x86,0xa4,0xf8,0x95,0xdf,0xec,0x12,0xa1,0x99,0x16,0x9b,0x56,0x5b,0x72,
|
||||
0xbb,0xce,0x41,0x48,0x28,0xf8,0x76,0x24,0x2d,0xc4,0x75,0x8f,0xe0,0x5a,0xfc,0x94,
|
||||
0x11,0xef,0xe6,0x71,0xef,0x5d,0x92,0x87,0x16,0xfb,0x22,0x37,0xd2,0xd6,0xbb,0x54,
|
||||
0x91,0x43,0xdb,0x4a,0x7c,0x4b,0x9c,0x49,0x23,0xdb,0x80,0x3a,0x69,0x03,0x6b,0x05,
|
||||
0x6c,0xe6,0xea,0xdc,0x78,0x9b,0x29,0x93,0xa8,0x3a,0x10,0xbd,0x3e,0xf0,0xc9,0xbc,
|
||||
0x60,0x6f,0xa0,0x19,0xd6,0xdc,0x6c,0x5c,0xa6,0xa5,0x3d,0xc0,0x92,0x87,0x93,0x35,
|
||||
0xe0,0x08,0xf5,0x09,0x5a,0x54,0x01,0xf7,0x09,0x15,0xd4,0xf8,0x46,0x3f,0xe6,0xed,
|
||||
0xb2,0xfa,0xdf,0xfa,0xbc,0x9a,0x40,0xfe,0xf8,0xd1,0x8f,0xfd,0xea,0x4f,0xee,0x12,
|
||||
0x0f,0xda,0x9a,0x09,0xa9,0x30,0xf8,0xea,0xf3,0xf1,0xbb,0x93,0x7c,0x7d,0x79,0x8a,
|
||||
0xe0,0xa8,0x9b,0xe0,0xfd,0x2c,0x2f,0x42,0x73,0x18,0xbf,0xbc,0xd6,0x48,0xa7,0x0f,
|
||||
0xe4,0xa8,0xac,0x0f,0xfd,0x86,0xb8,0x24,0x75,0x92,0xd7,0xe5,0x4c,0x42,0x49,0x4d,
|
||||
0xdc,0x67,0x6b,0xcf,0xab,0xf9,0xfd,0x95,0xd9,0x16,0x91,0xa0,0x74,0x53,0xc6,0xa1,
|
||||
0xcf,0x8a,0xa6,0x04,0xee,0x59,0xb6,0x05,0x5e,0x23,0xb6,0x16,0xee,0x37,0x76,0x8d,
|
||||
0x3d,0xc3,0xc7,0x2a,0xf2,0x57,0xd5,0x1d,0x5c,0x7f,0x69,0xe6,0xc9,0xfc,0x12,0x4f,
|
||||
0xb5,0x6b,0x1f,0x10,0xfd,0x6e,0xcc,0xb4,0x2b,0x73,0x9a,0x57,0x7d,0xb3,0x64,0x97,
|
||||
0x78,0x36,0x06,0xe0,0xb4,0xfc,0xcb,0x3c,0x79,0xae,0x26,0x1c,0xb0,0xdc,0xb7,0x3c,
|
||||
0xe0,0xe3,0x21,0x5d,0x0a,0x2b,0x6d,0x41,0x24,0x91,0xcf,0x01,0x3d,0xfe,0x51,0xc4,
|
||||
0xe1,0xd5,0x6c,0x32,0x36,0xb0,0x69,0x0e,0x51,0x8c,0xb3,0x21,0x95,0x33,0x90,0x5a,
|
||||
0x1f,0x8b,0x1e,0x57,0x3d,0x6d,0x85,0x3a,0xd1,0xf2,0x9c,0xe4,0x7a,0x80,0xa2,0x95,
|
||||
0x76,0xfa,0x56,0x22,0x8a,0x92,0x5c,0xb9,0x3e,0x19,0x8d,0x3d,0xc0,0xc7,0x21,0xd5,
|
||||
0xe8,0x1a,0xeb,0x38,0x1f,0x62,0xbd,0x92,0x1e,0x1c,0xc5,0x1b,0xfc,0x38,0xf4,0x47,
|
||||
0x05,0xb4,0xed,0x75,0xab,0xa4,0x50,0xde,0x4a,0xe6,0x6e,0xd2,0x95,0x7c,0x33,0xe3,
|
||||
0x8f,0x2d,0x5d,0x05,0x6d,0x18,0x65,0xa2,0x48,0x2d,0xb6,0x7c,0xd1,0xc9,0xee,0xbe,
|
||||
0xb2,0xae,0xc0,0xa5,0x29,0x8a,0x9b,0xa1,0xda,0x56,0x4f,0xb2,0xcd,0x49,0xb6,0x6a,
|
||||
0xfe,0x96,0x17,0xe4,0xe2,0x10,0x27,0x22,0x5a,0x01,0x2a,0x5b,0x96,0x85,0xf5,0x01,
|
||||
0xe4,0x3e,0x41,0xea,0x5c,0x77,0x3a,0x8a,0x02,0xc9,0xf4,0x51,0x42,0xcf,0x24,0x29,
|
||||
0x7b,0x93,0xc2,0x33,0x52,0x25,0x2b,0x1a,0xce,0xb4,0xce,0xe6,0x3c,0xa9,0x56,0x49,
|
||||
0x89,0xb9,0x46,0x69,0xc3,0xf7,0x89,0x4b,0x9f,0x76,0xfa,0x38,0xf6,0x08,0x5b,0x68,
|
||||
0x3f,0x9b,0xa7,0xf0,0xab,0x03,0xb8,0x5b,0xe2,0xdd,0xa0,0x49,0x83,0x3a,0x33,0x33,
|
||||
0x61,0x49,0x6d,0x4c,0xbf,0x1a,0x43,0x61,0xc6,0xdd,0x6d,0x43,0x85,0x21,0x49,0x3c,
|
||||
0x85,0x24,0x82,0x41,0x07,0xb1,0x06,0xb6,0x3c,0x47,0x1c,0xc4,0x32,0xc6,0x66,0xac,
|
||||
0xed,0x5d,0xda,0xc7,0x23,0xbb,0xcd,0x77,0x0f,0x63,0x87,0x77,0xc8,0x10,0xd2,0x00,
|
||||
0x20,0x6d,0xc5,0xad,0x70,0xa3,0x6b,0x1b,0x24,0x63,0xc1,0x62,0x9a,0x3b,0xaa,0x76,
|
||||
0x8d,0x6a,0xd3,0x3c,0x7f,0x35,0xb1,0xac,0x7c,0x05,0xda,0x32,0x5e,0xf2,0xba,0xfa,
|
||||
0x94,0xc3,0x83,0xe5,0x71,0x95,0x1e,0x07,0xcc,0x85,0x85,0x24,0xf6,0xef,0xd3,0xcf,
|
||||
0xa1,0xaa,0xa2,0xf1,0x1f,0xdb,0x83,0xba,0x0d,0xac,0x71,0xf3,0x8c,0x61,0xa5,0xdb,
|
||||
0xf1,0xac,0x95,0xf5,0x4c,0x8e,0xa8,0x61,0x4d,0x8b,0x7d,0xc1,0x24,0x29,0xc4,0x25,
|
||||
0x43,0xf6,0x3a,0x8f,0xde,0xa3,0x82,0x38,0xe5,0x61,0x20,0x06,0xea,0xc4,0xb4,0x53,
|
||||
0x43,0xe5,0x6d,0xa7,0x3d,0xbc,0xd9,0x71,0xa2,0xf4,0xbd,0x2c,0xc9,0x1d,0x54,0xe8,
|
||||
0xb0,0x55,0xf3,0xb9,0x61,0xb8,0x00,0x3a,0xd0,0x0f,0xaa,0xa3,0xba,0x80,0x38,0x51,
|
||||
0x27,0xa1,0x4d,0xa5,0x27,0xf6,0xfa,0x8e,0x59,0xb9,0x8d,0x11,0x83,0xb8,0x4d,0x18,
|
||||
0xc8,0xb0,0xc9,0x41,0x28,0x97,0x25,0x9f,0x3e,0xdd,0x25,0x5d,0xbe,0x1e,0x62,0x39,
|
||||
0x53,0x2b,0xe7,0xe9,0xd5,0xf2,0xab,0xea,0x95,0x28,0x76,0xe6,0xb1,0x78,0x0e,0x35,
|
||||
0x06,0x59,0xc7,0x84,0xf4,0xaf,0xbd,0x2c,0x9b,0x1e,0xba,0x0f,0x51,0xfd,0x4c,0x3c,
|
||||
0xf5,0xb1,0xb6,0xce,0xb9,0xf4,0xf6,0x19,0x19,0x63,0xca,0xee,0x36,0x27,0xb9,0xb6,
|
||||
0xf7,0x49,0xa0,0x56,0xac,0x82,0x5b,0xa9,0x39,0x4d,0xb4,0x8b,0x65,0xf5,0xa4,0xa4,
|
||||
0x27,0x99,0x48,0x48,0x3e,0x68,0x48,0xe0,0x04,0xba,0x92,0x95,0x8e,0x00,0x00,0xa9,
|
||||
0x49,0x1f,0xb3,0x52,0x1e,0xa8,0x67,0xc3,0x97,0x5e,0xe7,0x6d,0x77,0x74,0x88,0xc7,
|
||||
0xb2,0x4e,0xbb,0x5d,0x93,0x21,0x7c,0x63,0xb7,0xc8,0xd2,0xd5,0xe5,0x88,0x92,0x43,
|
||||
0x85,0x2c,0xba,0xb0,0x48,0x00,0xb6,0xe9,0x28,0x25,0x5d,0x92,0x87,0x1c,0x35,0x7c,
|
||||
0xd5,0xf6,0x50,0x21,0xc0,0x39,0xa6,0xe0,0xac,0x5a,0x52,0x94,0xaa,0xa2,0x52,0x94,
|
||||
0xa2,0x28,0xb1,0xe2,0x4b,0xb8,0x03,0xa0,0x7b,0x5f,0xbf,0x39,0x01,0xf7,0x18,0xc8,
|
||||
0xb2,0x52,0x6c,0x36,0xc5,0xb2,0xae,0x95,0xb4,0xa7,0x50,0xaf,0x35,0xd0,0x79,0x05,
|
||||
0x3d,0x0d,0x07,0x38,0x50,0xee,0x16,0x51,0xf5,0xe4,0x51,0x6e,0x90,0x69,0x9d,0xcf,
|
||||
0x58,0xf5,0x37,0x1b,0xc2,0xec,0xe8,0x26,0x75,0xe2,0x62,0x23,0x05,0xf1,0xc8,0x65,
|
||||
0xbf,0x57,0x1d,0x57,0xf2,0xa1,0x01,0x4b,0x3f,0x82,0x4d,0x4b,0x9f,0x17,0xad,0x6f,
|
||||
0x1a,0x91,0xb9,0x16,0x70,0xf8,0x32,0x54,0xed,0xa3,0x0a,0x88,0x21,0xa9,0x00,0x82,
|
||||
0x83,0x35,0xde,0x1c,0x90,0xa1,0xf9,0x27,0xc9,0x6c,0xf3,0xe8,0x5a,0x57,0xeb,0x9b,
|
||||
0x78,0x44,0x68,0x98,0x9b,0x76,0xca,0x35,0x4a,0xe3,0x13,0xa9,0xb8,0x43,0xec,0x6b,
|
||||
0x4b,0xab,0xe3,0x8f,0x35,0x40,0x2e,0x4a,0xd2,0x3d,0x79,0x4a,0x0b,0x68,0x07,0xd3,
|
||||
0x87,0x56,0x3e,0xbc,0x6b,0x19,0x97,0x17,0x6e,0x07,0x85,0x4f,0x5d,0xf7,0x9a,0x2c,
|
||||
0xdf,0x37,0x1d,0x9b,0xfa,0xee,0x7c,0x81,0x52,0x46,0xdd,0x6e,0x01,0x59,0x1e,0x15,
|
||||
0x87,0xda,0xf4,0xff,0x00,0x11,0xb3,0x63,0x36,0x48,0xe2,0x2d,0xa2,0xd3,0x11,0xa8,
|
||||
0x51,0x5a,0xe7,0x92,0x96,0xd0,0x90,0x91,0xc9,0xf7,0x27,0x8e,0x49,0x3d,0xc9,0x24,
|
||||
0x9f,0x5a,0x88,0x9e,0x27,0xfb,0x8e,0x3a,0x57,0xa4,0xad,0xe0,0xb6,0x69,0x41,0xbc,
|
||||
0x93,0x2f,0x6d,0x6d,0x3c,0x5b,0x73,0x87,0x23,0xdb,0xc7,0x67,0x54,0x40,0xee,0x3c,
|
||||
0xc3,0xf7,0x43,0x9e,0xc4,0x79,0xbc,0x77,0x4d,0x4d,0x37,0x1c,0x43,0x4d,0xa9,0x6e,
|
||||
0x29,0x28,0x42,0x41,0x52,0x94,0xa3,0xc0,0x48,0x1e,0xa4,0x9f,0x61,0x54,0x07,0xba,
|
||||
0xfd,0x6c,0x7f,0x5f,0xf5,0xdf,0x27,0xcb,0x0b,0xbd,0x76,0xc5,0x3e,0x62,0x5a,0xd0,
|
||||
0x39,0x01,0x10,0x9a,0x25,0x2d,0x70,0x0f,0x70,0x54,0x39,0x59,0xfe,0x65,0xab,0xd3,
|
||||
0xd2,0xbe,0x65,0xf8,0x7b,0x82,0x1c,0x73,0x19,0x35,0x55,0x3d,0xe6,0x43,0xdf,0x75,
|
||||
0xfc,0x5c,0x4f,0x74,0x1f,0x7b,0xb8,0xf5,0xb7,0x9a,0xbf,0x99,0xfa,0x1b,0x61,0xe2,
|
||||
0xb7,0x1f,0x85,0x65,0xd5,0xeb,0x76,0xec,0x22,0x47,0x6c,0x90,0x89,0xf6,0x69,0xb1,
|
||||
0x9d,0x03,0xdd,0x20,0x25,0xde,0xff,0x00,0xda,0x69,0x35,0x73,0x55,0x53,0x5e,0x11,
|
||||
0x9a,0x5d,0x3a,0xf5,0xab,0xd9,0x0e,0x76,0xe3,0x5d,0x36,0x8b,0x1d,0xb9,0x50,0x50,
|
||||
0xe9,0xf5,0x5c,0xa7,0xd4,0x9e,0x12,0x9f,0xaf,0x4b,0x68,0x70,0x9f,0xa7,0x52,0x3e,
|
||||
0xb5,0x63,0xfb,0x8a,0xd5,0x96,0x74,0x3f,0x45,0x72,0xcc,0xcd,0x7d,0x0a,0x93,0x6e,
|
||||
0x86,0xaf,0x82,0x69,0xcf,0x47,0x65,0x2f,0x84,0x30,0x8e,0x3d,0x48,0x2e,0x29,0x1c,
|
||||
0xf1,0xdf,0x8e,0x4f,0xb5,0x5d,0xfc,0x46,0x68,0xaf,0xcc,0xcd,0xa5,0xa6,0xdd,0xe5,
|
||||
0xac,0x65,0xbf,0x11,0x26,0xc3,0xe8,0x42,0xa4,0x1b,0x47,0x72,0xab,0xd7,0x46,0xb4,
|
||||
0xb1,0xbd,0xcf,0xf8,0x8c,0xea,0x06,0x59,0x2e,0x3a,0x65,0xe2,0x38,0xad,0xf1,0xd9,
|
||||
0xaf,0x38,0x4f,0xdd,0xbe,0xe3,0x0e,0x79,0x30,0xd1,0xf8,0x85,0x29,0xa0,0xe7,0x07,
|
||||
0xb1,0x4b,0x6a,0x07,0xd4,0x03,0x64,0x7a,0xb7,0x85,0xdc,0x75,0x1b,0x4d,0x32,0x4c,
|
||||
0x5e,0xd5,0x7d,0xff,0x00,0x26,0xa6,0xde,0x21,0x2e,0x12,0x6e,0xa2,0x31,0x90,0x63,
|
||||
0xa1,0x7f,0x2b,0x84,0x36,0x16,0x8e,0x54,0x50,0x54,0x01,0xea,0x1c,0x12,0x0f,0x7e,
|
||||
0x38,0x3a,0xc7,0x65,0x1a,0x06,0xad,0x01,0xd0,0xeb,0x65,0xbe,0xe4,0xd2,0x46,0x57,
|
||||
0x78,0x57,0xda,0xd7,0xc7,0x88,0xe5,0xc3,0x25,0xc0,0x08,0x69,0x47,0xfd,0x9a,0x7a,
|
||||
0x51,0xc0,0xed,0xd4,0x16,0x47,0xed,0x12,0x79,0x5a,0xa3,0xbd,0x7d,0x1c,0xd1,0xbc,
|
||||
0xc5,0xfc,0x5b,0x29,0xcb,0x93,0x0e,0xf9,0x1d,0x28,0x54,0x88,0xac,0x43,0x7e,0x47,
|
||||
0x91,0xd4,0x02,0x92,0x16,0xa6,0xd0,0xa0,0x0f,0x04,0x1e,0x9e,0x79,0xe0,0x8e,0xdd,
|
||||
0xc5,0x61,0x71,0xca,0xda,0xbc,0x6f,0x16,0x64,0x58,0x4b,0x1d,0x23,0x69,0x83,0x5b,
|
||||
0x18,0x6b,0x75,0x6c,0xcb,0x0d,0x56,0xb1,0x04,0x13,0xd4,0x5a,0xd6,0x05,0x7b,0x60,
|
||||
0x0c,0x6d,0xdd,0xe2,0xb4,0x66,0x8b,0x78,0x54,0x62,0x5a,0x5d,0x9c,0x58,0x32,0x9b,
|
||||
0xbe,0x6b,0x73,0xc9,0xa7,0x59,0x66,0xb5,0x70,0x8f,0x1d,0xb8,0x4d,0xc3,0x8e,0xb7,
|
||||
0x5a,0x58,0x5a,0x3a,0xd3,0xd4,0xe2,0x8a,0x42,0x80,0x3c,0x05,0x0e,0x78,0xef,0xdb,
|
||||
0xb5,0x6d,0x2f,0x11,0x4c,0xac,0xe2,0x9b,0x41,0xce,0xd4,0xdb,0xbe,0x5c,0x9b,0x82,
|
||||
0x23,0x5b,0x9a,0xe7,0xf7,0xbc,0xd9,0x0d,0x87,0x07,0xfe,0x50,0x72,0xb7,0x9e,0x07,
|
||||
0x9f,0xe3,0xba,0x9f,0x8b,0x42,0xc8,0xf1,0x5b,0xbc,0x6b,0xe5,0x92,0x62,0x4a,0x99,
|
||||
0x99,0x15,0x5c,0xa4,0xf0,0x78,0x29,0x20,0xf0,0x52,0xa0,0x7b,0x14,0xa8,0x02,0x0f,
|
||||
0x62,0x05,0x42,0x2f,0x18,0x0c,0xe9,0x8b,0x66,0x92,0x61,0x78,0x92,0x54,0x7e,0x32,
|
||||
0xef,0x77,0x5c,0xf3,0xc1,0xec,0x19,0x8c,0xd1,0x4a,0x81,0xfc,0xd5,0x21,0xbe,0x3f,
|
||||
0xdd,0x35,0x2e,0x15,0x57,0x8a,0x66,0x2c,0xcd,0x46,0xcc,0x51,0xe5,0xef,0x63,0xc6,
|
||||
0xc4,0x01,0x60,0xd3,0xa8,0x8b,0x00,0x00,0xe3,0x7d,0x95,0x1c,0x1a,0xc8,0xce,0x95,
|
||||
0x5a,0x79,0x46,0xb3,0xe7,0xb9,0xb5,0x92,0x35,0x9a,0xfd,0x99,0x5f,0x2e,0xd6,0x78,
|
||||
0xc8,0x43,0x6c,0xdb,0xa5,0xcf,0x75,0x71,0xd0,0x94,0x00,0x10,0x03,0x65,0x5d,0x3d,
|
||||
0x80,0x1c,0x76,0xab,0xda,0xdb,0x06,0x28,0xee,0x13,0xb7,0x5d,0x37,0xb2,0xbe,0x16,
|
||||
0x99,0x31,0xac,0x10,0xcb,0xe8,0x73,0xd5,0x0e,0xad,0xa4,0xad,0x69,0xfd,0x14,0xa5,
|
||||
0x0f,0xd2,0xa8,0x63,0x4c,0x70,0xc7,0xf5,0x17,0x51,0xf1,0x6c,0x56,0x31,0xe8,0x7e,
|
||||
0xf5,0x74,0x8d,0x6f,0x4a,0xf8,0xe4,0x23,0xcd,0x75,0x28,0xea,0x3f,0x80,0xea,0xe4,
|
||||
0xfe,0x02,0xbd,0x19,0x32,0xc2,0x23,0x32,0xdb,0x2d,0x27,0xa5,0xb6,0xd2,0x10,0x94,
|
||||
0x8f,0x60,0x3b,0x01,0x5b,0xf7,0xc5,0x79,0x62,0xa7,0x86,0x92,0x86,0x16,0x86,0x82,
|
||||
0x5c,0xf2,0x00,0xb7,0x40,0x0e,0xdd,0x6e,0x7e,0x8a,0x1a,0x70,0x4d,0xc9,0x55,0x27,
|
||||
0xe2,0xe7,0x9f,0x39,0x7b,0xd7,0x2c,0x7b,0x15,0x6a,0x61,0x76,0x15,0x8a,0xce,0x97,
|
||||
0x9c,0x8c,0x15,0xf2,0xb5,0x25,0xf5,0xa9,0x4a,0x24,0x7f,0x11,0x6d,0x0c,0x1f,0xcb,
|
||||
0x8f,0xad,0x41,0x4a,0xdc,0x5b,0xc3,0xcb,0xd7,0x9c,0xee,0x87,0x53,0x2e,0xcb,0x74,
|
||||
0x3e,0x3e,0xda,0x7e,0x1b,0x6e,0x03,0xc8,0x2d,0xc7,0x3f,0x0e,0xdf,0x07,0xdc,0x74,
|
||||
0x34,0x9a,0xfb,0xed,0x13,0x6f,0x12,0xf7,0x29,0xad,0x16,0xac,0x67,0x87,0x5a,0xb1,
|
||||
0x47,0xfe,0x9b,0x79,0x96,0xd8,0xfe,0xa6,0x22,0x08,0xea,0x48,0x3e,0xca,0x59,0x21,
|
||||
0xb4,0x9f,0x62,0xbe,0x78,0x21,0x26,0xba,0xd6,0x0a,0xd8,0x32,0xfe,0x5d,0x80,0xd4,
|
||||
0x1d,0x2d,0x8e,0x30,0xe7,0x7a,0x91,0xa9,0xdf,0xa9,0x36,0xf1,0x2a,0xd9,0xf7,0x7c,
|
||||
0x86,0xca,0xc6,0x3c,0x2b,0x74,0x31,0xcd,0x3c,0xd1,0x49,0x99,0xb5,0xca,0x3a,0x5b,
|
||||
0xbb,0x66,0x0e,0xa5,0xe6,0x39,0x07,0xad,0x10,0x5a,0xea,0x4b,0x5c,0xf2,0x3b,0x75,
|
||||
0xa8,0xb8,0xbe,0xdd,0x8a,0x4b,0x67,0xf0,0x19,0xd6,0xdf,0x74,0x87,0xec,0x0d,0xdc,
|
||||
0x6e,0x23,0x35,0x5b,0x48,0xf2,0x64,0x4d,0x81,0x6d,0x88,0xe8,0xf5,0xea,0x72,0x1b,
|
||||
0x12,0xe4,0x8f,0xcb,0x97,0x63,0xfe,0xa0,0xfd,0x2a,0x4b,0xdb,0xad,0xd1,0x6c,0xf6,
|
||||
0xf8,0xb0,0x20,0xc6,0x6a,0x1c,0x18,0xad,0x21,0x86,0x23,0x30,0x80,0x86,0xda,0x6d,
|
||||
0x20,0x25,0x28,0x4a,0x47,0x60,0x90,0x00,0x00,0x0f,0x40,0x2b,0xe5,0x06,0xd3,0x16,
|
||||
0xd9,0x2a,0xe7,0x29,0x94,0x04,0x39,0x3d,0xf1,0x2a,0x42,0xbf,0x89,0x61,0xa6,0xda,
|
||||
0x07,0xfc,0x0d,0x20,0x7e,0x95,0xf2,0x4d,0x76,0x62,0xa8,0xae,0xaa,0xae,0xa9,0x76,
|
||||
0xdf,0xc4,0x0d,0x36,0xe8,0x03,0xda,0x40,0xf6,0x6b,0x6c,0xb2,0x41,0x80,0x00,0x3a,
|
||||
0x2f,0x8e,0x51,0x69,0x17,0xec,0x66,0xef,0x6c,0x23,0xa8,0x4d,0x86,0xf4,0x62,0x0f,
|
||||
0xbf,0x5a,0x0a,0x7f,0xef,0x50,0x0b,0xc1,0xc2,0x6f,0x99,0x83,0xea,0x5c,0x3e,0x7f,
|
||||
0xaa,0xb8,0xc3,0x77,0x8f,0xf7,0xda,0x70,0x7f,0xfc,0xea,0xc4,0x90,0x78,0x5a,0x7f,
|
||||
0x3a,0xae,0x9f,0x09,0x3b,0x7f,0xd8,0x59,0x26,0xbc,0x59,0xf8,0x29,0x4c,0x19,0xf6,
|
||||
0xe6,0x52,0x93,0xed,0xd2,0xb9,0xc8,0x3f,0xf4,0x8a,0xc9,0xe0,0xce,0xd5,0x96,0x71,
|
||||
0x68,0xcf,0x87,0x60,0x47,0xe7,0x20,0xfe,0xe1,0x51,0xdf,0x3b,0x4f,0xaf,0xec,0xb1,
|
||||
0x9f,0x19,0x38,0x41,0x37,0xad,0x2c,0x96,0x13,0xf3,0x2e,0x3d,0xc5,0xa2,0xaf,0xa8,
|
||||
0x0a,0x8e,0x40,0xff,0x00,0xd4,0x7f,0xbe,0xa6,0x16,0xc5,0xb3,0x71,0x9f,0x6d,0x3f,
|
||||
0x4e,0x67,0x97,0x3a,0xde,0x89,0x6e,0x16,0xb7,0x41,0x57,0x2a,0x4a,0xa3,0x2d,0x4c,
|
||||
0x00,0x7f,0x12,0x96,0xd2,0xaf,0xc9,0x42,0xb9,0xbb,0x92,0xda,0x46,0x1b,0xba,0x6f,
|
||||
0xf2,0x6c,0x65,0xd3,0x6f,0x31,0x13,0x62,0x5b,0xea,0x8e,0x9b,0x43,0xed,0x35,0xe6,
|
||||
0xf9,0xbe,0x5f,0x50,0x70,0xad,0xa5,0x92,0x3e,0xe9,0x3c,0x74,0xf1,0xea,0x7f,0x0e,
|
||||
0x32,0x7d,0x09,0xd0,0x6c,0x63,0x6e,0x98,0x4b,0x98,0xae,0x25,0xf1,0xdf,0x65,0xae,
|
||||
0x5a,0xe6,0xab,0xed,0x09,0x1e,0x73,0x9e,0x62,0xd2,0x84,0xab,0x83,0xc0,0x00,0x70,
|
||||
0x84,0xf6,0x03,0xd7,0x93,0xef,0x52,0xd7,0xe3,0x74,0x15,0x79,0x56,0x93,0x0b,0xdf,
|
||||
0xb7,0x89,0xc4,0xf1,0xb5,0x89,0x7e,0xd7,0xbf,0x42,0x0f,0xb2,0xa0,0x61,0x12,0x17,
|
||||
0x78,0x15,0x5f,0x71,0x10,0x9d,0xac,0x78,0xa8,0x2d,0xa4,0xbc,0xe4,0x3c,0x7b,0x30,
|
||||
0x94,0x47,0x71,0xc2,0x56,0xdd,0xc3,0xe6,0x09,0x3f,0x44,0x26,0x60,0x00,0x7d,0x03,
|
||||
0x60,0x9f,0x43,0x56,0x91,0x55,0xf1,0xe2,0xdf,0xa6,0x12,0x1e,0xc5,0xb0,0xad,0x4f,
|
||||
0xb5,0xb3,0xd1,0x36,0xc5,0x2f,0xec,0xe9,0x92,0x5a,0x4f,0xde,0x25,0xa7,0x0f,0x5b,
|
||||
0x0b,0x51,0xf6,0x4a,0x1d,0x4a,0x80,0xfe,0x67,0xc7,0xd6,0xa6,0xb6,0x8e,0x6a,0x24,
|
||||
0x6d,0x5a,0xd2,0xac,0x4f,0x31,0x8a,0x12,0x86,0xef,0x56,0xd6,0x65,0xad,0xa4,0x9e,
|
||||
0x43,0x4e,0x29,0x03,0xcc,0x6f,0x9f,0x7e,0x95,0xf5,0x27,0xfb,0x35,0x26,0x66,0x77,
|
||||
0xda,0x78,0x56,0x1d,0x8c,0x0d,0xdd,0xa4,0xc4,0xff,0x00,0xee,0x8f,0x82,0x7c,0xdc,
|
||||
0x0d,0xfd,0x15,0x19,0xdd,0x73,0x9b,0xee,0xb3,0x1a,0x54,0x54,0xcb,0x77,0x90,0x8d,
|
||||
0x00,0xdc,0x4c,0x9d,0x39,0xd5,0x3e,0x96,0xb1,0xbb,0xba,0x53,0x70,0xb0,0x65,0x6d,
|
||||
0x36,0x10,0x96,0x59,0x75,0x44,0x79,0x12,0xd0,0x3b,0x00,0x87,0x12,0xe2,0x03,0xa9,
|
||||
0xfd,0xd0,0xd9,0x5a,0x7b,0xa9,0x62,0x54,0x30,0xfb,0x52,0x98,0x6d,0xf6,0x1c,0x43,
|
||||
0xcc,0xba,0x90,0xb6,0xdc,0x6d,0x41,0x49,0x5a,0x48,0xe4,0x10,0x47,0x62,0x08,0xef,
|
||||
0xcd,0x69,0x15,0xb8,0x65,0x55,0x03,0x63,0x92,0x66,0xf7,0x24,0x1a,0x9a,0xe1,0xc3,
|
||||
0x87,0x91,0xea,0x3c,0x41,0xdc,0x78,0x85,0x28,0x70,0x3c,0x2a,0x85,0xf1,0x52,0xd0,
|
||||
0x71,0xa7,0xda,0xc9,0x13,0x3b,0xb6,0x44,0x2d,0x59,0x72,0xe6,0xca,0xa4,0x29,0xb1,
|
||||
0xf2,0x37,0x70,0x6c,0x00,0xef,0xa0,0xf9,0x7c,0xc4,0x14,0x2f,0xbf,0x75,0x2b,0xcd,
|
||||
0x3e,0xc7,0x8b,0x3f,0xd8,0x0e,0xbf,0x2f,0x71,0x3b,0x63,0xc6,0x6f,0xb3,0x9e,0x4b,
|
||||
0xd9,0x0d,0xb0,0x1b,0x35,0xdc,0x85,0x12,0xa5,0x49,0x60,0x24,0x07,0x15,0xcf,0xef,
|
||||
0x38,0xd9,0x69,0xc3,0xed,0xcb,0x84,0x0f,0x4a,0xc2,0x37,0xaf,0xa2,0x23,0x5e,0x76,
|
||||
0xef,0x93,0x58,0xe3,0xc4,0x32,0xef,0xb0,0x9b,0xfb,0x56,0xd0,0x94,0x0e,0x57,0xf1,
|
||||
0x4c,0x82,0x42,0x12,0x3d,0xcb,0x88,0x2e,0x37,0xc1,0xed,0xf7,0x9c,0xfa,0x80,0x6a,
|
||||
0x0f,0x78,0x36,0xeb,0x59,0xc2,0xf5,0xe2,0xf1,0xa7,0xd2,0xd6,0x7e,0xcf,0xcc,0x61,
|
||||
0x15,0xc7,0x1c,0xfe,0xcc,0xc8,0xc9,0x5b,0x89,0xf7,0xec,0x14,0xd1,0x7f,0x9f,0x7e,
|
||||
0x52,0x8a,0xfa,0xcb,0xe1,0xd6,0x35,0xf6,0xb6,0x0c,0xd8,0x64,0x37,0x92,0x1e,0xe1,
|
||||
0xf4,0xfb,0xa7,0xe9,0xb7,0xab,0x4a,0xc7,0x4e,0xdd,0x2e,0xbf,0x55,0x74,0x94,0xa5,
|
||||
0x2b,0xa9,0x2b,0x74,0xae,0x8f,0x3a,0xcb,0xa1,0xe0,0x18,0x46,0x43,0x94,0x5c,0x39,
|
||||
0xf8,0x0b,0x25,0xba,0x45,0xca,0x47,0x07,0x8f,0xbb,0x65,0xb5,0x38,0xae,0xff,0x00,
|
||||
0x92,0x4d,0x77,0x95,0x0e,0x3c,0x58,0xf5,0x15,0x78,0x1e,0xce,0xaf,0x90,0x98,0x7d,
|
||||
0x51,0xe5,0x64,0xb7,0x08,0xb6,0x54,0x29,0xb3,0xc2,0xba,0x4a,0x8b,0xee,0x8f,0xc9,
|
||||
0x4d,0xb0,0xb4,0x9f,0xc1,0x44,0x7b,0xd1,0x15,0x1c,0x66,0x99,0x6d,0xcf,0x50,0xb3,
|
||||
0x2b,0xe6,0x4d,0x77,0x70,0x3f,0x77,0xbd,0x4e,0x7a,0xe1,0x29,0x68,0x4f,0x01,0x4e,
|
||||
0xba,0xb2,0xb5,0x70,0x3d,0x87,0x2a,0x3c,0x0f,0x61,0x57,0xdb,0xb5,0xed,0x23,0x6f,
|
||||
0x43,0x74,0x1b,0x0f,0xc4,0x02,0x14,0x99,0x91,0x21,0x25,0xe9,0xe5,0x5e,0xa6,0x5b,
|
||||
0xa4,0xb8,0xff,0x00,0xe8,0x16,0xb5,0x24,0x7f,0x2a,0x52,0x2a,0x9f,0x76,0x11,0xa4,
|
||||
0xeb,0xd5,0xcd,0xd0,0xe2,0x10,0xdc,0x60,0x3d,0x6c,0xb3,0xbd,0xf6,0xe4,0xfe,0xa0,
|
||||
0x0a,0x43,0x51,0xc8,0x52,0x02,0x81,0xf5,0x0a,0x77,0xca,0x41,0x1f,0xcf,0xf4,0xab,
|
||||
0xb1,0xc2,0xb5,0x23,0x17,0xd4,0x76,0xee,0xae,0x63,0x37,0xc8,0x77,0xb4,0xda,0xe6,
|
||||
0xb9,0x6e,0x9a,0x62,0x39,0xd7,0xe4,0x48,0x6c,0xf0,0xa4,0x2b,0xfe,0xc7,0xd0,0x8e,
|
||||
0xe0,0x91,0x5f,0x38,0xfc,0x57,0xc4,0x64,0x90,0xc3,0x87,0x44,0x09,0x6b,0x3b,0xef,
|
||||
0xb7,0x00,0x9b,0xb5,0x97,0xe9,0xf7,0xb9,0xe6,0xea,0xfa,0x9d,0xbc,0xb9,0x6b,0xad,
|
||||
0xe8,0xe5,0x4f,0xe1,0x9b,0x56,0xd4,0xcb,0x9c,0x64,0xa8,0xbf,0xf6,0x42,0xe2,0x24,
|
||||
0xa3,0xd5,0x3e,0x7a,0x92,0xc1,0x57,0xe8,0x1d,0x27,0xf4,0xaa,0x3a,0xd2,0xcd,0x2d,
|
||||
0xc8,0xf5,0x97,0x39,0xb6,0x62,0x78,0xad,0xbd,0x77,0x0b,0xbc,0xf7,0x3a,0x52,0x91,
|
||||
0xd9,0x0d,0x23,0xf7,0x9d,0x71,0x5f,0xba,0x84,0x8e,0xe5,0x47,0xfe,0x7c,0x0a,0xf4,
|
||||
0x3d,0x91,0x63,0xd6,0xdc,0xb6,0xc3,0x70,0xb2,0xde,0x61,0x33,0x72,0xb5,0x4f,0x61,
|
||||
0x71,0xa5,0x44,0x90,0x9e,0xa4,0x3a,0xda,0x87,0x0a,0x49,0x1f,0x88,0x35,0x87,0x69,
|
||||
0x1e,0xdf,0xf4,0xf3,0x42,0x20,0x48,0x89,0x82,0x62,0xd0,0xf1,0xf4,0xc9,0x3c,0xbe,
|
||||
0xf3,0x65,0x6f,0x48,0x77,0xbf,0x20,0x2d,0xe7,0x54,0xa7,0x14,0x90,0x7d,0x12,0x55,
|
||||
0xc0,0xf6,0x02,0xb4,0xcc,0xab,0x9d,0x21,0xcb,0x18,0x65,0x45,0x3b,0x21,0x2e,0x9d,
|
||||
0xee,0xbb,0x4e,0xda,0x78,0x03,0xbd,0xbd,0xf6,0x3b,0xd8,0x0d,0xef,0xc8,0x52,0xc9,
|
||||
0x17,0x68,0xe0,0x6f,0xb2,0xe3,0xed,0xdf,0x43,0x6c,0xdb,0x76,0xd2,0x7b,0x3e,0x17,
|
||||
0x67,0x21,0xff,0x00,0x86,0x05,0xe9,0xb3,0xbc,0xb0,0x85,0xcd,0x94,0xbe,0x3c,0xd7,
|
||||
0x94,0x07,0xd7,0x80,0x90,0x09,0x24,0x21,0x28,0x4f,0x27,0xa7,0x9a,0xd3,0xd9,0x1c,
|
||||
0xe6,0xb7,0x3d,0xba,0xcb,0x76,0x2b,0x19,0x49,0x93,0x80,0xe9,0x43,0xe8,0xbb,0xdd,
|
||||
0x9d,0x4a,0x7a,0x9b,0x99,0x7c,0x21,0x49,0x8f,0x1f,0x9f,0x4e,0x19,0x1d,0x6a,0x3c,
|
||||
0x73,0xf3,0x05,0xa4,0x8f,0x43,0x5c,0x5d,0xf8,0x6f,0x46,0x06,0xdd,0xf0,0xf9,0x38,
|
||||
0xde,0x39,0x31,0x99,0x3a,0x91,0x74,0x67,0xa2,0x3b,0x48,0x3d,0x5f,0x66,0x34,0xa1,
|
||||
0xc1,0x92,0xe0,0xf6,0x57,0x1f,0xd5,0xa4,0xfa,0x9e,0x14,0x41,0x48,0xe0,0xff,0x00,
|
||||
0x7e,0x18,0x62,0xd0,0xf6,0xd4,0xad,0x93,0x60,0xbc,0x64,0x5e,0x66,0xdd,0x67,0xbf,
|
||||
0x7c,0x79,0x6b,0x2b,0x71,0x73,0x0b,0xc4,0x02,0xb2,0x7b,0xf2,0x58,0x11,0xcf,0xeb,
|
||||
0xcf,0xa9,0x35,0x8e,0x8e,0x92,0xba,0x9b,0x0d,0x9b,0x33,0x56,0x02,0x5f,0x2b,0xb4,
|
||||
0x30,0x9e,0x6e,0xf0,0x75,0x49,0xe9,0x60,0x5a,0xdf,0xc4,0x6e,0x38,0x0b,0xd5,0xc1,
|
||||
0x70,0x60,0xf0,0x5b,0x97,0x71,0xfa,0xdd,0x6e,0xdb,0xd6,0x8f,0x5f,0xf3,0x59,0xe9,
|
||||
0x4b,0xef,0x44,0x6b,0xca,0x83,0x11,0x47,0xff,0x00,0x9a,0x96,0xbf,0x95,0x96,0xfd,
|
||||
0x47,0x6e,0xae,0xea,0x23,0xb8,0x4a,0x54,0x78,0x3c,0x71,0x54,0x07,0x93,0x64,0x97,
|
||||
0x3c,0xc7,0x21,0xb9,0x5f,0x6f,0x53,0x1c,0xb8,0x5d,0xae,0x52,0x1c,0x97,0x2e,0x53,
|
||||
0xbc,0x75,0x3a,0xea,0xd4,0x54,0xa5,0x1e,0x3b,0x0e,0x49,0x3d,0x80,0x00,0x7b,0x54,
|
||||
0xbe,0xf1,0x39,0xdc,0x90,0xd5,0xad,0x59,0x46,0x11,0x64,0x96,0x1d,0xc5,0xf1,0x15,
|
||||
0xad,0x97,0x14,0xd2,0xc9,0x44,0xab,0x81,0xec,0xf2,0xfe,0x84,0x37,0xc7,0x96,0x9e,
|
||||
0xdd,0x88,0x70,0x82,0x42,0xea,0x31,0xe8,0xb6,0x9b,0x48,0xd6,0x0d,0x58,0xc5,0x30,
|
||||
0xc8,0xca,0x71,0xb5,0x5e,0x6e,0x0d,0x45,0x71,0xd6,0x93,0xd4,0xa6,0x9a,0x2a,0xe5,
|
||||
0xd7,0x00,0xfe,0x44,0x05,0xab,0xfb,0x35,0xdd,0x72,0x0e,0x06,0xcc,0xbf,0x83,0xbb,
|
||||
0x10,0xab,0x1a,0x64,0x90,0x6b,0x71,0x3f,0x75,0x80,0x5c,0x0f,0xa7,0x78,0xfa,0xd8,
|
||||
0xf0,0xac,0xe6,0x7e,0xb7,0x69,0x0a,0xe6,0xfc,0x3e,0x30,0x09,0x5a,0x7b,0xb4,0xcc,
|
||||
0x22,0x34,0xe6,0xc3,0x53,0x6e,0x6d,0x3b,0x77,0x71,0x00,0xf3,0xc2,0x24,0x38,0xa7,
|
||||
0x1a,0xfd,0x4b,0x45,0xa2,0x47,0xb1,0x24,0x7b,0x55,0x7c,0x78,0xa9,0xea,0x40,0xcc,
|
||||
0xb7,0x30,0x6c,0x0c,0x15,0x7c,0x2e,0x2d,0x6d,0x62,0x09,0xef,0xca,0x54,0xfb,0x83,
|
||||
0xcf,0x71,0x43,0xf4,0x75,0xb4,0x1f,0xc5,0xb3,0x57,0x11,0x02,0x0c,0x3b,0x15,0xae,
|
||||
0x3c,0x38,0xad,0x22,0x24,0x08,0x6c,0xa5,0x96,0x9b,0x4f,0x64,0xb4,0xda,0x13,0xc2,
|
||||
0x40,0xfc,0x00,0x03,0xfb,0xab,0xcf,0x1e,0xb5,0x67,0xcb,0xd5,0x2d,0x5d,0xcc,0xb2,
|
||||
0xd5,0x85,0xa5,0x37,0x9b,0xb4,0x99,0x8d,0x21,0x67,0x92,0xdb,0x4a,0x70,0x96,0xd1,
|
||||
0xfd,0x94,0x74,0xa7,0xf4,0xad,0x13,0xe1,0xd3,0x1d,0x8c,0x66,0x1a,0xcc,0x62,0x41,
|
||||
0xc5,0xcf,0xa1,0x91,0xdb,0x7f,0xa8,0x70,0x53,0x4f,0xdd,0x60,0x6a,0xde,0x1e,0x1a,
|
||||
0x98,0x2b,0xd9,0xa6,0xed,0xb1,0x99,0x01,0xb0,0xe4,0x4b,0x0c,0x79,0x37,0x79,0x3c,
|
||||
0xfe,0xea,0x52,0xd9,0x6d,0xb2,0x3f,0xfc,0xaf,0x35,0x57,0x3f,0x98,0xe4,0x28,0xc4,
|
||||
0x71,0x1b,0xe5,0xf5,0xc0,0x0b,0x76,0xb8,0x2f,0xcd,0x50,0x3e,0x9c,0x36,0xda,0x96,
|
||||
0x7f,0xe9,0xaa,0xe1,0xf0,0x73,0xc2,0x1c,0x5d,0xc3,0x51,0xf3,0x07,0x59,0x29,0x69,
|
||||
0xb6,0xa2,0xda,0x63,0x3c,0x47,0x65,0x15,0x15,0x3a,0xf2,0x47,0xe5,0xd2,0xc1,0xfe,
|
||||
0xd0,0xa9,0xa1,0xbc,0xbc,0x88,0xe2,0xdb,0x56,0xd5,0x19,0xc9,0x07,0xa9,0x76,0x37,
|
||||
0xe1,0x82,0x3d,0x8b,0xe3,0xc8,0xe7,0xf4,0xf3,0x79,0xac,0x2e,0x7d,0x97,0xed,0x5c,
|
||||
0xd6,0xca,0x21,0xb8,0x6f,0x67,0x1f,0xe6,0x37,0x3f,0xf6,0xb2,0xf7,0x08,0xd3,0x1d,
|
||||
0xd5,0x07,0x49,0x92,0xec,0xc9,0x2e,0xc8,0x7d,0xc5,0x3a,0xfb,0xab,0x2e,0x38,0xe2,
|
||||
0xcf,0x2a,0x52,0x89,0xe4,0x92,0x7e,0xa4,0xd5,0xde,0xec,0x0b,0x6d,0x23,0x6f,0x3a,
|
||||
0x2b,0x19,0x77,0x48,0xa1,0xac,0xcb,0x23,0x08,0xb8,0x5d,0x89,0xfd,0xb6,0x07,0x1f,
|
||||
0x73,0x1b,0xd0,0x71,0xe5,0xa5,0x47,0xa8,0x7f,0x1a,0xdc,0xee,0x40,0x15,0x5f,0x5e,
|
||||
0x1a,0xdb,0x72,0xff,0x00,0x3c,0xda,0xd4,0x8c,0x96,0xed,0x18,0xb9,0x8b,0x62,0x0a,
|
||||
0x6e,0x6b,0xc1,0x68,0xe5,0x12,0x26,0x12,0x4c,0x76,0x7b,0xfa,0x80,0x52,0x5c,0x57,
|
||||
0xaf,0x66,0xc0,0x3f,0xb6,0x0d,0x59,0x4e,0xf6,0xb5,0xb0,0xe8,0x46,0xdd,0x32,0x6b,
|
||||
0xf4,0x57,0x92,0xcd,0xee,0x6a,0x05,0xaa,0xd4,0x54,0xae,0x0f,0xc4,0xbc,0x08,0x0b,
|
||||
0x4f,0xe2,0x84,0x07,0x1c,0x03,0xfd,0x9d,0x6d,0xff,0x00,0x11,0x31,0x59,0x71,0x1a,
|
||||
0xb8,0x32,0xc5,0x01,0xef,0x38,0xb7,0x5f,0xa9,0xf9,0x5a,0x7c,0x87,0xcc,0x7d,0xba,
|
||||
0x28,0xa0,0x68,0x68,0x32,0x39,0x64,0x5a,0x0d,0xaf,0x96,0x8d,0x79,0x19,0xbb,0xb6,
|
||||
0x72,0xd2,0xa2,0xe3,0xb9,0x0b,0xf6,0x56,0xde,0x69,0xc0,0xb4,0xc9,0x6d,0xb4,0x36,
|
||||
0x52,0xfa,0x48,0xed,0xd2,0xb2,0xa5,0xf0,0x47,0xa8,0x4f,0x35,0xa3,0xfc,0x4d,0xb5,
|
||||
0xd2,0x4e,0x95,0xe8,0xd5,0xb3,0x1a,0xb5,0x3c,0xa8,0xf7,0x8c,0xbe,0x6f,0xc2,0x97,
|
||||
0x50,0xa2,0x95,0x37,0x0d,0xa2,0x85,0xc8,0x29,0x23,0xdd,0x45,0x4d,0x36,0x47,0xa1,
|
||||
0x4b,0x8b,0xfc,0x2a,0x2c,0x78,0x47,0x6a,0x91,0xc7,0x35,0x93,0x21,0xc1,0xe4,0xc8,
|
||||
0x42,0x22,0x64,0xb6,0xff,0x00,0x88,0x8e,0xda,0xcf,0x75,0x4a,0x8d,0xca,0x80,0x4f,
|
||||
0xe6,0xd2,0xdf,0x27,0xeb,0xe5,0x8f,0xa5,0x61,0xbe,0x25,0x5a,0x94,0x9d,0x42,0xdd,
|
||||
0xa4,0x8b,0x4c,0x69,0x3f,0x11,0x6f,0xc6,0x58,0x8d,0x67,0x40,0x42,0xf9,0x6c,0x3d,
|
||||
0xcf,0x9a,0xff,0x00,0x03,0xd9,0x41,0x6e,0x96,0xd5,0xef,0xcb,0x5c,0x7b,0x0a,0xc2,
|
||||
0xe1,0xf9,0x3a,0x3a,0x4c,0xe4,0x28,0xf4,0xde,0x18,0x9a,0x24,0x17,0xf1,0x00,0x00,
|
||||
0x3f,0xdf,0xeb,0x62,0xbd,0xba,0x4b,0xc5,0x7f,0x15,0x73,0x2c,0x38,0x5d,0x65,0xb5,
|
||||
0x9f,0x55,0x24,0x2b,0xfe,0x15,0x01,0x7c,0x3a,0xd2,0x9b,0x7e,0xe5,0x37,0x3b,0x01,
|
||||
0x09,0xe9,0x42,0x6f,0x9f,0x28,0xe3,0xd0,0x26,0x64,0xd0,0x3f,0xea,0xa9,0xf4,0xca,
|
||||
0x3c,0xb6,0x50,0x8f,0xe1,0x48,0x15,0x5f,0xdb,0x0d,0x7d,0x2c,0x6f,0x3f,0x72,0xb0,
|
||||
0xca,0x90,0x16,0xe5,0xca,0x4b,0xa1,0x1c,0xfc,0xc4,0x26,0x7b,0xc0,0x90,0x3e,0x83,
|
||||
0xac,0x73,0xf9,0x8a,0xd0,0x70,0x21,0xab,0x07,0xc5,0x9a,0x3f,0xa2,0x33,0xf4,0x90,
|
||||
0x29,0x5f,0xf3,0x35,0x6d,0x0f,0x13,0xe9,0xb7,0xcb,0x66,0xd6,0x65,0xcd,0xb1,0xdd,
|
||||
0x66,0xda,0x94,0xc5,0xda,0x21,0x96,0xb8,0x4f,0xa9,0x95,0x3a,0xc2,0xba,0xd0,0x5b,
|
||||
0x51,0x49,0x04,0xa4,0xad,0x6d,0x92,0x3d,0x39,0x48,0xa8,0xdb,0xe1,0x3d,0xaf,0x17,
|
||||
0xf9,0x7a,0x8d,0x7e,0xd3,0xcb,0xe5,0xf2,0x5d,0xca,0xd7,0x32,0xda,0x67,0x5b,0x99,
|
||||
0x9f,0x25,0x6e,0xf9,0x0f,0x32,0xb1,0xd6,0x86,0x42,0x89,0xe9,0x0a,0x43,0x8a,0x52,
|
||||
0x80,0xff,0x00,0x54,0x0f,0xb1,0xa9,0x99,0xbe,0xfc,0x49,0xcc,0xcf,0x69,0x1a,0x93,
|
||||
0x09,0xa1,0xcb,0xb1,0xad,0xc2,0xe4,0x0f,0x1e,0x82,0x33,0xa8,0x90,0xbf,0xfd,0x0d,
|
||||
0x2b,0xfb,0xea,0x9f,0xf6,0x81,0x9b,0x2b,0x4f,0x77,0x39,0xa6,0xd7,0xa0,0xf2,0x63,
|
||||
0xb6,0x9b,0xcb,0x31,0x1e,0x75,0x67,0x84,0xa5,0x99,0x1c,0xb0,0xe1,0x27,0xd8,0x74,
|
||||
0x3a,0xaa,0xe8,0xf9,0x4a,0x8a,0x1c,0x63,0x26,0xd7,0x51,0x96,0x82,0xf6,0x97,0x11,
|
||||
0xb6,0xf7,0x0d,0x6b,0x9b,0xfa,0x82,0x3d,0x14,0x32,0x12,0xd9,0x5a,0x55,0xdf,0xeb,
|
||||
0xae,0x96,0xc4,0xd6,0xad,0x21,0xca,0xf0,0xa9,0x9c,0x25,0x37,0x78,0x2b,0x65,0x97,
|
||||
0x4f,0xff,0x00,0x49,0xf1,0xf3,0x32,0xe7,0xf6,0x5c,0x4a,0x15,0xc7,0xbf,0x1c,0x7b,
|
||||
0xd4,0x65,0xf0,0xad,0xce,0xe7,0xdc,0x74,0x5b,0x21,0xc0,0x6f,0x08,0x53,0x17,0x6c,
|
||||
0x26,0xf0,0xe4,0x53,0x15,0xd4,0xf4,0xb8,0xc3,0x2f,0x15,0x2c,0x21,0x60,0xf7,0xe4,
|
||||
0x3c,0x99,0x23,0xbf,0xd0,0x0f,0x6a,0x9a,0xde,0x95,0x0b,0xe0,0xd8,0x9b,0xd0,0x1f,
|
||||
0x11,0xdf,0x31,0x89,0x21,0x8c,0x7b,0x56,0xec,0xef,0xb9,0xf0,0xfc,0x84,0x36,0x8b,
|
||||
0x93,0x1c,0x2d,0x7c,0x8f,0x72,0xae,0x85,0x28,0x13,0xea,0xa9,0x2a,0x15,0xcc,0xf0,
|
||||
0x79,0xbf,0x8c,0xc2,0xab,0x70,0x97,0xf3,0x6e,0xd9,0x9f,0xdd,0x1f,0xcf,0x6f,0x33,
|
||||
0x1d,0xff,0x00,0x2a,0x9d,0xc2,0xce,0x0e,0xf6,0x5d,0x5f,0x8b,0x46,0x95,0x2b,0x2c,
|
||||
0xd0,0xcb,0x46,0x67,0x15,0x94,0xae,0x5e,0x29,0x70,0x01,0xf5,0x7a,0x11,0x12,0x4f,
|
||||
0x4b,0x6b,0x23,0xeb,0xc3,0xa2,0x3f,0x6f,0xa1,0x51,0xa8,0xff,0x00,0xe1,0xd7,0xbe,
|
||||
0x37,0x34,0xea,0xeb,0x03,0x4b,0xf3,0xcb,0x81,0x38,0x94,0xc7,0x03,0x36,0x8b,0x9c,
|
||||
0x85,0x73,0xf6,0x63,0xca,0x3d,0x9a,0x59,0xff,0x00,0x52,0xb5,0x1e,0x01,0x3d,0x9b,
|
||||
0x51,0xe4,0xf0,0x92,0x4a,0x6c,0x2f,0x75,0x91,0xf1,0xcb,0x86,0xdd,0xf3,0xeb,0x76,
|
||||
0x51,0x78,0x81,0x62,0xb6,0xce,0xb4,0xc8,0x8e,0xdc,0xdb,0x8b,0xa1,0xb6,0x91,0x20,
|
||||
0xa0,0x96,0x0f,0x7f,0xda,0x3e,0x60,0x41,0x09,0x1d,0xc9,0x1c,0x0e,0xf5,0xe7,0xf6,
|
||||
0xba,0xe6,0x45,0xa4,0x83,0x32,0xe5,0xa9,0xb0,0x9a,0xe6,0xdd,0xac,0x71,0xd2,0x6d,
|
||||
0xf2,0xdc,0x5c,0x16,0x9e,0xa1,0xd7,0xf6,0x36,0x3b,0x1d,0xed,0xa6,0x26,0x37,0x87,
|
||||
0x05,0xe9,0x6f,0xd2,0xa9,0x23,0x73,0x38,0xbc,0xcd,0xa0,0x6f,0x71,0x77,0x9b,0x0a,
|
||||
0x5c,0x8d,0x16,0x2d,0xd6,0x3e,0x53,0x68,0x00,0x74,0x82,0xca,0xdd,0xf3,0x14,0xd0,
|
||||
0xe3,0xd5,0xb0,0xe2,0x5e,0x67,0x8f,0x74,0xa3,0x83,0xea,0x6a,0x6c,0x78,0x67,0xee,
|
||||
0xc5,0xdd,0x5d,0xc2,0x1d,0xd3,0xdc,0x9e,0x61,0x7b,0x2d,0xc6,0xe3,0xa5,0x51,0x24,
|
||||
0xbb,0xfb,0x53,0xad,0xe3,0x84,0x82,0xa3,0xcf,0x75,0xb4,0x4a,0x50,0xa2,0x78,0xe5,
|
||||
0x2a,0x6c,0xfc,0xc7,0xac,0xd6,0x15,0xe2,0xb1,0x89,0x59,0x75,0x23,0x4c,0x2c,0x3a,
|
||||
0x85,0x8c,0xdd,0x2d,0xb7,0xa7,0xb1,0x5b,0x8a,0xad,0x37,0x45,0xdb,0x64,0x36,0xf9,
|
||||
0x65,0xa7,0xf8,0xe9,0x0e,0x29,0x0a,0x3d,0x25,0x0e,0xa1,0x29,0xe9,0x3d,0xf9,0x78,
|
||||
0xfa,0x77,0xad,0x77,0x27,0x36,0xaf,0x2a,0x66,0x87,0xe1,0x75,0x63,0xba,0xfe,0xe1,
|
||||
0x3e,0x06,0xfb,0xb1,0xde,0xfc,0x0f,0xee,0x23,0x90,0xbd,0xcb,0x69,0x23,0xd4,0x15,
|
||||
0xa8,0x63,0x99,0x04,0x0c,0xb3,0x1e,0xb5,0xdf,0x2d,0x52,0x51,0x32,0xd7,0x73,0x8a,
|
||||
0xd4,0xd8,0x92,0x5b,0x3c,0xa5,0xd6,0x5c,0x40,0x5a,0x16,0x3f,0x02,0x95,0x03,0xfa,
|
||||
0xd7,0x63,0x51,0x47,0xc3,0x03,0x53,0x9b,0xd4,0xad,0x9c,0x61,0xc8,0x2f,0x17,0xa7,
|
||||
0xe3,0xaa,0x7a,0xc1,0x2c,0x1f,0xdc,0x2c,0xab,0xa9,0x94,0x8f,0xc3,0xc8,0x71,0x8f,
|
||||
0xf8,0xfd,0x2a,0x57,0x57,0xd4,0xcb,0x1e,0x95,0x53,0xde,0x38,0x39,0x8a,0x9c,0xbc,
|
||||
0xe9,0x5e,0x28,0xdb,0xe4,0x25,0x98,0xf3,0x6e,0x8f,0xb0,0x0f,0x62,0x56,0xa6,0x9b,
|
||||
0x69,0x44,0x7e,0x1e,0x5b,0xa0,0x7e,0x66,0xad,0x86,0xb4,0x06,0x7f,0xb3,0x2c,0x1b,
|
||||
0x58,0x37,0x00,0xce,0xa8,0x67,0xf1,0x1b,0xca,0x15,0x6d,0xb5,0xb1,0x6a,0xb4,0xd8,
|
||||
0xa5,0x36,0x0c,0x26,0x52,0x85,0xba,0xe2,0x9d,0x79,0x07,0xb3,0xcb,0x2a,0x79,0x40,
|
||||
0x25,0x43,0xa4,0x00,0x09,0x0a,0x3c,0x74,0x91,0x52,0x06,0xdf,0x62,0xeb,0x85,0xaa,
|
||||
0x36,0x41,0x2f,0x49,0x71,0x9c,0x96,0x70,0xbe,0x40,0x5d,0xa2,0x5d,0xca,0xc7,0x67,
|
||||
0x7a,0x4a,0x92,0xca,0x96,0x92,0xb4,0xb6,0xf2,0x50,0x7c,0xb5,0x72,0x90,0x3a,0x81,
|
||||
0x04,0x7b,0x10,0x78,0x23,0xbc,0xc2,0xf4,0xfb,0x72,0xdb,0x5f,0xbe,0xaf,0x28,0xb1,
|
||||
0x61,0x59,0xc6,0x26,0xf3,0x6d,0x7f,0x48,0x93,0xf6,0x2b,0xeb,0x8a,0xe3,0x5e,0xa5,
|
||||
0x2f,0x02,0x82,0xda,0xd2,0x3d,0x78,0x57,0x3c,0x11,0xcf,0x62,0x39,0xaf,0x43,0x90,
|
||||
0xe1,0xc7,0xb7,0x44,0x62,0x24,0x46,0x1b,0x8b,0x15,0x84,0x25,0xa6,0x98,0x65,0x01,
|
||||
0x08,0x6d,0x09,0x1c,0x25,0x29,0x48,0xec,0x00,0x00,0x00,0x07,0xa5,0x7d,0xaa,0xce,
|
||||
0x4a,0x2a,0x69,0x44,0x82,0x48,0xda,0x7b,0x4f,0x9a,0xe0,0x1d,0x56,0xd8,0x5f,0xad,
|
||||
0xbc,0xd5,0x6e,0x47,0x8a,0xa5,0xcb,0x1f,0x8c,0x46,0x69,0x1a,0xdc,0x86,0xee,0xf8,
|
||||
0x05,0x8e,0xe1,0x38,0x0e,0x0c,0x88,0x92,0xde,0x8c,0x85,0x1f,0xaf,0x42,0xba,0xff,
|
||||
0x00,0xea,0xac,0x1f,0x51,0xfc,0x56,0x35,0x8b,0x32,0x80,0xe4,0x2b,0x1b,0x16,0x5c,
|
||||
0x2d,0x95,0xff,0x00,0xf7,0x36,0xd8,0xea,0x7a,0x57,0x1e,0xe3,0xad,0xe5,0x29,0x23,
|
||||
0xf3,0x4a,0x01,0x1f,0x5a,0xb0,0xfd,0xf0,0x78,0x75,0x62,0x3b,0x8d,0xc7,0x6e,0x99,
|
||||
0x1e,0x29,0x6d,0x8b,0x8e,0xea,0x7b,0x48,0x5c,0x86,0x65,0xc5,0x4a,0x59,0x66,0xea,
|
||||
0xe7,0xed,0x16,0xa5,0x0e,0xc0,0xa9,0x5d,0xc0,0x77,0xb2,0x81,0x20,0xa8,0xa9,0x23,
|
||||
0x8a,0xa2,0xdb,0xad,0xa6,0x6d,0x8e,0xeb,0x32,0xd9,0x70,0x8a,0xec,0x3b,0x84,0x37,
|
||||
0x97,0x1e,0x44,0x57,0x90,0x52,0xe3,0x4e,0xa1,0x45,0x2a,0x42,0x81,0xee,0x08,0x20,
|
||||
0x82,0x3f,0x0a,0xd5,0x62,0xc9,0x59,0x7a,0x09,0x7b,0x56,0x51,0xb6,0xfe,0x77,0x23,
|
||||
0xe8,0x49,0x1f,0xa2,0x93,0xb5,0x79,0xf1,0x4b,0xb5,0xda,0x75,0xfa,0xe7,0x2a,0xe3,
|
||||
0x73,0x9b,0x22,0xe3,0x70,0x94,0xe2,0x9e,0x91,0x2e,0x5b,0xaa,0x75,0xd7,0x96,0xa3,
|
||||
0xca,0x94,0xb5,0xa8,0x92,0xa5,0x13,0xdc,0x92,0x79,0xac,0xff,0x00,0x49,0xb7,0x1d,
|
||||
0xa8,0xfa,0x1b,0x6f,0xbc,0xc1,0xc1,0xf2,0x99,0x56,0x18,0x97,0x74,0x74,0x4b,0x65,
|
||||
0xa4,0x36,0xe2,0x49,0xe0,0xa4,0x2d,0x1d,0x69,0x57,0x96,0xe0,0x07,0x8e,0xb4,0x70,
|
||||
0xaf,0x4e,0xfd,0x85,0x62,0xb2,0xf4,0xfb,0x29,0xb7,0xda,0x45,0xd6,0x56,0x35,0x78,
|
||||
0x8d,0x6c,0x23,0x91,0x35,0xe8,0x0e,0xa1,0x92,0x3e,0xbd,0x65,0x3d,0x3e,0xe3,0xde,
|
||||
0xba,0x0a,0xdb,0x27,0xa5,0xa7,0xa9,0x8b,0xb0,0x9e,0x30,0xe6,0x6d,0xb1,0x00,0x8d,
|
||||
0xb8,0xd8,0xed,0xb7,0x82,0x8c,0x12,0x0d,0xc2,0xfd,0x5a,0xd4,0xe2,0xd4,0xa5,0x28,
|
||||
0xa9,0x4a,0x3c,0x95,0x13,0xc9,0x26,0xac,0x0b,0xc2,0x23,0x48,0xd5,0x7b,0xd4,0x5c,
|
||||
0x9f,0x51,0x25,0xb0,0x95,0x44,0xb1,0x45,0x16,0xd8,0x2b,0x5a,0x79,0x3f,0x14,0xff,
|
||||
0x00,0x75,0xa9,0x07,0xd8,0xa5,0xa4,0x94,0x9f,0xc1,0xf1,0xf8,0xd5,0x7e,0x54,0xd4,
|
||||
0xda,0xc7,0x88,0x55,0x9b,0x6b,0xda,0x57,0x03,0x0e,0x85,0xa7,0x0f,0x5f,0x1f,0x72,
|
||||
0x5b,0xb3,0xae,0x97,0x45,0x5e,0x44,0x72,0xf3,0xcb,0x57,0x48,0xe8,0x6b,0xc8,0x5f,
|
||||
0x01,0x2d,0x21,0xa4,0xf7,0x57,0x72,0x92,0x7b,0x73,0x5a,0x96,0x72,0xa7,0xc4,0x6b,
|
||||
0x30,0x69,0x69,0x30,0xc8,0xf5,0xc9,0x25,0x9b,0xc8,0x16,0x6f,0x2e,0xdd,0xc4,0x0d,
|
||||
0xc0,0xb7,0x5d,0xd4,0xb1,0x16,0x87,0x5d,0xc5,0x59,0xb6,0xe8,0x73,0xbf,0xf3,0x69,
|
||||
0xb7,0x7d,0x43,0xc8,0x92,0xe9,0x66,0x44,0x5b,0x34,0x84,0x46,0x70,0x7e,0xec,0x87,
|
||||
0x13,0xe5,0x32,0x7f,0xf3,0x16,0x8a,0xf3,0xeb,0x56,0x8b,0xbc,0x9d,0xe1,0xe1,0xba,
|
||||
0xe7,0xb2,0x09,0x53,0x71,0x39,0x0b,0x44,0x9b,0xbd,0xea,0x1d,0xa6,0x7d,0xaa,0x59,
|
||||
0x4a,0x65,0xc0,0x50,0x2b,0x93,0xca,0xd2,0x09,0xe5,0x2a,0xf8,0x6f,0x95,0x60,0x90,
|
||||
0x41,0xf6,0x21,0x40,0x55,0xd5,0x6a,0x9f,0x0c,0xb0,0xa9,0xb0,0xdc,0x3e,0xa0,0xd5,
|
||||
0x30,0xb2,0x43,0x21,0x04,0x1e,0x6c,0xd0,0x2d,0xfa,0x93,0xff,0x00,0x8a,0x49,0xdc,
|
||||
0x1c,0x45,0x95,0x9a,0xed,0x97,0x5d,0xec,0x1b,0x32,0xd8,0x8d,0xa7,0x26,0xbb,0x32,
|
||||
0x2e,0x19,0x06,0x5b,0x74,0x9d,0x36,0xd3,0x65,0x4a,0xfa,0x1c,0x94,0xb4,0x28,0x47,
|
||||
0xeb,0x51,0xe0,0xf4,0xb6,0x90,0xc2,0x49,0x57,0x1e,0x8a,0x48,0x1c,0x95,0x0a,0x84,
|
||||
0xda,0xcf,0xba,0xdd,0x50,0xd7,0x99,0xd3,0x17,0x94,0xe5,0x73,0x55,0x6c,0x90,0xa2,
|
||||
0x45,0x8e,0x0b,0xaa,0x8f,0x6f,0x6d,0x3d,0x5c,0xa5,0x21,0x94,0x9e,0x15,0xd3,0xdb,
|
||||
0x85,0x2f,0xa9,0x5d,0x87,0x2a,0x27,0xbd,0x61,0x19,0xd6,0x7f,0x72,0xcf,0xa4,0x59,
|
||||
0xd5,0x3d,0x49,0x44,0x6b,0x3d,0xae,0x35,0x9e,0x04,0x66,0xc7,0x08,0x62,0x3b,0x28,
|
||||
0xe0,0x01,0xf8,0xa9,0x45,0x6e,0x28,0xfb,0xad,0xc5,0x1e,0xdc,0xf0,0x31,0xaa,0xdb,
|
||||
0xf0,0xac,0xb5,0x4b,0x47,0x53,0x36,0x25,0x3b,0x03,0xaa,0x25,0x71,0x71,0x27,0x7d,
|
||||
0x20,0x9d,0x9a,0xde,0x96,0x16,0x04,0x8d,0xc9,0xf2,0xb0,0x11,0x3a,0x42,0x40,0x68,
|
||||
0xe1,0x5d,0xd7,0x86,0xbe,0x27,0x69,0xc6,0xf6,0x8b,0x89,0x4c,0xb6,0xa5,0x2a,0x7e,
|
||||
0xf2,0xec,0xbb,0x84,0xe7,0x81,0xfe,0xb1,0xff,0x00,0x88,0x5b,0x3f,0xa7,0x4a,0x19,
|
||||
0x42,0x38,0xfe,0x42,0x7d,0xcd,0x42,0x9f,0x15,0xed,0x6b,0xff,0x00,0x2d,0x75,0x96,
|
||||
0xdd,0x81,0x41,0x70,0x2a,0xd9,0x89,0x31,0xcc,0x82,0x85,0x73,0xd7,0x35,0xf4,0xa5,
|
||||
0x6b,0xe7,0xbf,0x1f,0x23,0x61,0xb4,0x8f,0x70,0xa2,0xe0,0xae,0x9b,0x65,0x9e,0x20,
|
||||
0x49,0xdb,0x36,0x09,0x7d,0xc4,0xb2,0x1b,0x1c,0xbc,0x86,0xd4,0x56,0xb9,0xd6,0x8f,
|
||||
0x83,0x75,0x29,0x5b,0x12,0x14,0x9e,0x14,0xd2,0xfa,0x8f,0x01,0xa5,0x10,0x95,0x72,
|
||||
0x9e,0xe9,0x3d,0x67,0xa5,0x7d,0x5d,0xa2,0x36,0x4b,0x90,0xce,0xcb,0xb2,0x3b,0xad,
|
||||
0xf6,0xe8,0xf1,0x93,0x73,0xba,0x4b,0x76,0x6c,0xa7,0x8f,0xab,0x8e,0xb8,0xb2,0xb5,
|
||||
0xab,0xf5,0x52,0x89,0xad,0x2f,0x01,0xca,0x75,0x54,0xf9,0xa6,0xb3,0x16,0xae,0x17,
|
||||
0x68,0x2e,0x31,0x9e,0xba,0xef,0xbf,0xf8,0xb7,0xbb,0xbf,0x5d,0xb8,0x52,0xbe,0x40,
|
||||
0x63,0x0d,0x0b,0x97,0x81,0xe6,0xf7,0x7d,0x36,0xcc,0xac,0xd9,0x4d,0x86,0x4f,0xc2,
|
||||
0x5e,0x2d,0x32,0x91,0x2e,0x33,0xbc,0x72,0x02,0xd2,0x79,0xe1,0x43,0xdd,0x27,0xb8,
|
||||
0x23,0xdc,0x12,0x3d,0xeb,0x97,0x02,0xed,0x37,0x39,0xd4,0xf8,0xd7,0x3b,0xb4,0x83,
|
||||
0x2a,0xe3,0x78,0xbc,0x26,0x44,0xb7,0xd4,0x38,0xf3,0x1d,0x75,0xe0,0xa5,0xa8,0x81,
|
||||
0xc7,0xa9,0x51,0x3d,0xab,0x17,0xae,0xdf,0x0e,0x94,0x98,0x39,0x7d,0x8e,0x4a,0xfb,
|
||||
0xa1,0x99,0xcc,0x38,0x7f,0x20,0xe2,0x4f,0xfd,0xab,0xae,0x4b,0x13,0x3b,0xf3,0x35,
|
||||
0xa3,0x5e,0x9b,0x5f,0xc6,0xdb,0x9b,0x5f,0xa5,0xd5,0xb0,0xe8,0xbd,0x22,0x1f,0x53,
|
||||
0x5e,0x7e,0x77,0x01,0x7f,0xb8,0x59,0x77,0x35,0xa9,0x77,0x1b,0x54,0xf9,0x36,0xe9,
|
||||
0xad,0xe4,0xf7,0x22,0xdc,0xa8,0x6f,0x29,0xa7,0x10,0x7e,0x25,0xc1,0xd9,0x49,0x20,
|
||||
0x8a,0x9f,0xbb,0x85,0xf1,0x58,0x6b,0x4e,0xf5,0x42,0x6e,0x33,0x83,0x63,0x30,0x32,
|
||||
0x6b,0x65,0xa6,0x42,0xa3,0xce,0xba,0xcc,0x94,0xb4,0xa6,0x4b,0x89,0x3c,0x2d,0x11,
|
||||
0xfa,0x07,0x01,0x29,0x20,0x8f,0x30,0xf5,0x05,0x1e,0x78,0x4f,0x1c,0x15,0x56,0x46,
|
||||
0x73,0x94,0x39,0x9c,0x66,0xd9,0x06,0x46,0xf3,0x3f,0x0e,0xf5,0xe2,0xe1,0x22,0xe0,
|
||||
0xb6,0x82,0xba,0xba,0x14,0xeb,0x8a,0x70,0xa7,0x9e,0x07,0x3c,0x15,0x71,0xcf,0x02,
|
||||
0xb8,0x87,0xc3,0x6c,0xb9,0x88,0x61,0x6e,0x96,0xaa,0xba,0x2d,0x2c,0x95,0x82,0xd7,
|
||||
0x22,0xfc,0xdf,0x71,0xc8,0xdb,0xaa,0xbb,0x9d,0xed,0x76,0xc0,0xa9,0x3b,0xa4,0xfe,
|
||||
0x21,0xf9,0x95,0x93,0x00,0xcb,0x70,0x5d,0x45,0x91,0x3b,0x39,0xc7,0xef,0x56,0x69,
|
||||
0x96,0xf6,0x26,0xc9,0x74,0x39,0x3e,0x1b,0x8e,0xb0,0xe2,0x12,0x4b,0x8b,0x3c,0xba,
|
||||
0x82,0xa5,0x00,0xa0,0xb2,0x54,0x07,0x74,0x9e,0xdd,0x2a,0x89,0x08,0x5a,0x9a,0x5a,
|
||||
0x56,0x85,0x14,0x2d,0x27,0x90,0xa4,0x9e,0x08,0x3f,0x51,0x5f,0x94,0xae,0xcb,0x47,
|
||||
0x85,0x51,0xe1,0xf2,0x4b,0x25,0x24,0x61,0x86,0x42,0x0b,0x80,0xd8,0x12,0x3c,0x6d,
|
||||
0xc0,0x3d,0x6d,0xcf,0xaa,0xb5,0x2e,0x2e,0xe5,0x5e,0x86,0xb0,0x6e,0xc6,0x36,0x93,
|
||||
0xed,0x32,0xcd,0xaa,0xc5,0x96,0x27,0xdd,0x6f,0x76,0xd8,0x2a,0xb6,0x43,0x75,0x45,
|
||||
0x2d,0xbf,0x32,0x4b,0x21,0xc0,0x15,0xc7,0x7e,0x94,0x0f,0x31,0x6a,0x03,0x82,0x43,
|
||||
0x64,0x72,0x09,0xe6,0xaa,0x06,0xe1,0xb9,0x1c,0xe7,0x28,0xd6,0x7c,0x7f,0x52,0xb2,
|
||||
0x9b,0xd4,0x9c,0x86,0xf9,0x67,0x9f,0x1e,0x6b,0x01,0xf5,0xf4,0x36,0xda,0x5a,0x74,
|
||||
0x38,0x1a,0x6d,0x09,0x01,0x2d,0xa0,0x90,0x7b,0x24,0x01,0xca,0x89,0xf5,0x24,0xd6,
|
||||
0x57,0xaa,0x1a,0xd2,0xc6,0x67,0xb4,0xcd,0x1c,0xc2,0x13,0x70,0x2f,0xdc,0xb1,0xcb,
|
||||
0x85,0xd9,0x13,0x22,0xa9,0x44,0xa9,0x2d,0x95,0xb6,0xb8,0xcb,0x23,0xe9,0xd2,0xf3,
|
||||
0x88,0x4f,0xfe,0x1a,0x87,0xb5,0x6a,0x16,0x74,0xf7,0x29,0x91,0x66,0x37,0x76,0xb1,
|
||||
0xab,0xc3,0xb6,0x90,0x9e,0xa3,0x3d,0x10,0x1d,0x2c,0x01,0xf5,0xf3,0x3a,0x7a,0x78,
|
||||
0xfd,0x6b,0x46,0xca,0x39,0x52,0x97,0x08,0x82,0x77,0x4b,0x18,0x32,0x3d,0xf2,0x36,
|
||||
0xe4,0x6f,0xa0,0x38,0xb4,0x01,0xd0,0x10,0x2f,0xb7,0x37,0xf2,0x0a,0x69,0x64,0x2e,
|
||||
0x22,0xcb,0x67,0xee,0xff,0x00,0x70,0xf7,0x3d,0xc5,0x6b,0x3d,0xf2,0xf2,0xbb,0x8b,
|
||||
0xb2,0x31,0x98,0x92,0x1c,0x8b,0x62,0x89,0xf3,0x25,0xa6,0x62,0x25,0x5d,0x29,0x58,
|
||||
0x41,0xf4,0x5b,0x80,0x05,0xa8,0x9e,0xfc,0xab,0x8e,0xc1,0x29,0x03,0x48,0x80,0x49,
|
||||
0x00,0x0e,0x49,0xf6,0x15,0xd8,0x63,0xd8,0xf5,0xcb,0x2c,0xc8,0x2d,0xb6,0x3b,0x3c,
|
||||
0x27,0x6e,0x17,0x6b,0x8c,0x96,0xe2,0x44,0x86,0xc2,0x79,0x71,0xe7,0x96,0xa0,0x94,
|
||||
0x21,0x23,0xea,0x49,0x03,0xf5,0xab,0xe1,0xd9,0x67,0x87,0xb6,0x17,0xb6,0x3c,0x72,
|
||||
0xdf,0x77,0xbd,0x41,0x87,0x93,0x6a,0x5b,0x88,0x4b,0xd2,0xaf,0x32,0x1a,0x0e,0x22,
|
||||
0x0b,0x9c,0x7f,0x57,0x10,0x28,0x7c,0x81,0x3c,0xf1,0xe6,0x76,0x5a,0xcf,0x27,0xb0,
|
||||
0x21,0x29,0xe8,0x34,0x54,0x70,0xe1,0xf4,0xd1,0xd2,0xd3,0xb6,0xcc,0x60,0x00,0x0f,
|
||||
0x4f,0xfd,0xeb,0xd4,0xa8,0x09,0x2e,0x37,0x2a,0x9b,0x70,0xdd,0xb4,0xeb,0xac,0xde,
|
||||
0x2e,0x58,0xd6,0x9b,0x67,0x29,0x0e,0xb0,0xeb,0x62,0x6c,0x3b,0x44,0xa6,0x92,0xb6,
|
||||
0x9c,0x6d,0x48,0x71,0x21,0xce,0x90,0x0a,0x56,0x85,0x29,0x24,0x73,0xf3,0x05,0x11,
|
||||
0xdc,0x1a,0xc7,0x32,0xbd,0x30,0xd4,0xdd,0x24,0xb7,0xcb,0x6f,0x23,0xc5,0x72,0xac,
|
||||
0x3e,0x05,0xc1,0x29,0x8f,0x24,0x5c,0x60,0x49,0x86,0xcc,0x94,0x85,0x85,0xa5,0x0b,
|
||||
0xea,0x4a,0x52,0xb1,0xd4,0x84,0xa8,0x03,0xcf,0x74,0x83,0xec,0x2b,0xd3,0x65,0x71,
|
||||
0xae,0x76,0xc8,0x77,0xab,0x7c,0x98,0x17,0x08,0x8c,0x4f,0x83,0x25,0xb2,0xd3,0xf1,
|
||||
0x64,0xb6,0x1c,0x69,0xd4,0x11,0xc1,0x4a,0x92,0xa0,0x42,0x81,0x1e,0xa0,0xd5,0xd1,
|
||||
0x63,0x49,0xb9,0x1f,0xfc,0x38,0xfa,0x2a,0x2a,0xc4,0xf0,0x3f,0xcd,0xc3,0xd8,0xf6,
|
||||
0xa9,0x61,0xee,0xba,0x94,0x98,0xd2,0xa1,0xdd,0xa3,0xb6,0x4f,0x75,0x79,0x88,0x71,
|
||||
0xa7,0x48,0x1f,0x87,0x94,0xcf,0xf8,0x85,0x5a,0x25,0x68,0x0d,0x2e,0xd9,0x86,0x0b,
|
||||
0xa2,0x1a,0xf1,0x74,0xd4,0x8c,0x09,0x93,0x8e,0x33,0x78,0xb5,0x3d,0x6d,0xb8,0xe3,
|
||||
0xac,0x27,0xfa,0x12,0x96,0xa7,0x59,0x75,0x0f,0x32,0x39,0xfb,0xa2,0x0b,0x4a,0x05,
|
||||
0x03,0x94,0x9e,0xb1,0xd2,0x11,0xc1,0x0a,0xdf,0xf5,0xed,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0xb5,0xde,0x33,0xb7,0xad,0x38,0xc3,0xf5,0x03,0x21,0xce,0x2d,0x38,
|
||||
0x7d,0xae,0x36,0x5b,0x7e,0x91,0xf1,0x53,0xae,0xc5,0x80,0xb7,0xd4,0xe7,0x48,0x04,
|
||||
0xa1,0x4a,0xe7,0xcb,0x0a,0x23,0xa9,0x41,0x1d,0x3d,0x4a,0x25,0x4a,0xe4,0xf7,0xad,
|
||||
0x89,0x4a,0x22,0xfc,0x23,0x91,0x51,0xc3,0x72,0x9b,0x06,0xd2,0x6d,0xca,0x5a,0xa5,
|
||||
0xae,0xe3,0x62,0x8f,0x8e,0xe5,0x4a,0x6d,0x42,0x3e,0x49,0x66,0x65,0x2c,0xc8,0x43,
|
||||
0x9d,0xb8,0x2e,0xa5,0x3c,0x25,0xf4,0xf6,0x00,0x85,0x82,0x78,0xe4,0x25,0x48,0x27,
|
||||
0x9a,0x92,0x14,0xa2,0x2f,0x34,0xfb,0x8d,0xdb,0xbe,0x57,0xb6,0x3d,0x4d,0x9d,0x86,
|
||||
0x65,0x6c,0x0f,0x39,0xb1,0xe7,0x43,0x9e,0xc8,0x3e,0x44,0xf8,0xe4,0x90,0x87,0x9b,
|
||||
0x27,0xd8,0xf0,0x41,0x1e,0xa9,0x50,0x20,0xfa,0x56,0x35,0xa7,0x1a,0x53,0x98,0xea,
|
||||
0xfe,0x40,0xdd,0x93,0x0b,0xc6,0xae,0x59,0x35,0xcd,0x45,0x20,0xb1,0x6e,0x8e,0xa7,
|
||||
0x3c,0xb0,0x4f,0x01,0x4e,0x28,0x7c,0xad,0xa7,0xf9,0x94,0x42,0x47,0xb9,0xaf,0x40,
|
||||
0xbb,0xad,0xd9,0xe6,0x1d,0xbb,0x9b,0x5e,0x2f,0x0f,0x29,0x7e,0x55,0xbd,0x56,0x2b,
|
||||
0x87,0xc5,0x22,0x65,0xbf,0xa4,0x48,0x71,0x85,0x20,0x87,0x63,0x05,0x28,0x10,0x94,
|
||||
0xac,0x86,0xd4,0x55,0xc1,0x20,0xb6,0x38,0xf5,0x35,0xb3,0x74,0xcf,0x4a,0xb1,0x1d,
|
||||
0x1a,0xc5,0x23,0xe3,0x78,0x4e,0x3f,0x0b,0x1c,0xb2,0xb0,0x7a,0x84,0x58,0x4d,0xf1,
|
||||
0xd6,0xae,0x00,0x2b,0x71,0x47,0x95,0x38,0xb2,0x00,0xe5,0x6b,0x25,0x47,0x81,0xc9,
|
||||
0x34,0x45,0x4e,0x58,0x17,0x83,0x9e,0xb9,0xe4,0xb1,0x52,0xe5,0xf6,0x7e,0x37,0x87,
|
||||
0x30,0xa5,0x02,0xe4,0x69,0x93,0xd7,0x25,0xfe,0x40,0x3c,0x1e,0x96,0x10,0xb6,0xcf,
|
||||
0x1c,0x91,0xdd,0xc1,0xeb,0x59,0xbd,0xdb,0xc1,0x0f,0x3a,0x66,0x12,0x95,0x6c,0xd4,
|
||||
0x9c,0x7a,0x64,0xbe,0x3e,0x56,0xa5,0xc3,0x7d,0x86,0xc9,0xfc,0x56,0x9e,0xb2,0x3f,
|
||||
0xc3,0x57,0x03,0x4a,0x22,0xf3,0xf1,0xac,0x3e,0x1a,0xda,0xf7,0xa3,0x50,0x64,0xdc,
|
||||
0x65,0xe2,0x43,0x26,0xb4,0x47,0x3f,0x79,0x3f,0x18,0x7b,0xe3,0x40,0x1f,0xc5,0xe4,
|
||||
0x80,0x1e,0x09,0x1d,0xc9,0x51,0x6f,0x80,0x07,0x72,0x2a,0x2f,0xad,0x0a,0x6d,0x6a,
|
||||
0x42,0xd2,0x52,0xb4,0x9e,0x0a,0x54,0x38,0x20,0xfd,0x2b,0xd5,0x3d,0x44,0x3d,0xe5,
|
||||
0x78,0x73,0xe0,0xfb,0x9e,0xb7,0xce,0xbe,0x59,0x9a,0x8d,0x88,0x6a,0x3f,0x4a,0x9c,
|
||||
0x6a,0xf3,0x1d,0xae,0x19,0x9e,0xe7,0x1d,0x91,0x31,0x09,0x1f,0x30,0x3c,0x71,0xe6,
|
||||
0x8f,0x9d,0x3d,0x8f,0xce,0x07,0x41,0x22,0xa1,0x3a,0x56,0x4b,0xa9,0x1a,0x71,0x91,
|
||||
0xe9,0x1e,0x6f,0x76,0xc4,0x72,0xdb,0x5b,0xd6,0x6c,0x82,0xd6,0xf7,0x93,0x26,0x23,
|
||||
0xdc,0x12,0x93,0xc0,0x29,0x52,0x48,0xec,0xa4,0xa9,0x24,0x29,0x2a,0x04,0x85,0x24,
|
||||
0x82,0x09,0x06,0xb9,0x3a,0x51,0xa5,0x39,0x3e,0xb6,0x67,0xb6,0xac,0x3b,0x10,0xb6,
|
||||
0xae,0xe9,0x7c,0xb9,0x39,0xd0,0xd3,0x49,0xec,0x94,0x24,0x77,0x53,0x8e,0x2b,0xd1,
|
||||
0x28,0x48,0xe4,0x95,0x1f,0x40,0x28,0x8b,0x14,0x65,0x97,0x24,0xbc,0x86,0x9a,0x42,
|
||||
0x9d,0x75,0xc5,0x04,0xa1,0x08,0x1c,0xa9,0x44,0xf6,0x00,0x01,0xea,0x6a,0x53,0xe9,
|
||||
0x07,0x86,0x56,0xbf,0x6a,0xec,0x18,0xb7,0x16,0x71,0x66,0xf1,0x3b,0x5c,0x8e,0xed,
|
||||
0xcc,0xca,0x1f,0xf8,0x23,0xc7,0xf1,0x16,0x42,0x54,0xf8,0x1e,0xe0,0xf9,0x7c,0x11,
|
||||
0xdc,0x72,0x2a,0xd4,0xf6,0x75,0xe1,0xf1,0x81,0xed,0x6a,0xd5,0x0e,0xeb,0x2a,0x34,
|
||||
0x7c,0xa7,0x51,0x14,0x80,0xa9,0x19,0x04,0xa6,0x82,0x84,0x55,0x94,0xf0,0xa4,0x44,
|
||||
0x4a,0x87,0xdd,0x24,0x72,0xa1,0xd7,0xfb,0x6a,0x04,0xf2,0x40,0x21,0x29,0x95,0x74,
|
||||
0x45,0x50,0x16,0xef,0x04,0x3c,0xe1,0xd8,0x69,0x5c,0xfd,0x4b,0xc7,0xe3,0x4c,0x23,
|
||||
0x95,0x35,0x1e,0x13,0xef,0x36,0x0f,0xfb,0xe7,0xa0,0x9f,0xf0,0xd6,0xbe,0xcf,0x7c,
|
||||
0x1d,0x75,0xd7,0x16,0x69,0x6f,0x58,0xde,0xc6,0xf3,0x26,0xc1,0x3d,0x2c,0xdb,0xee,
|
||||
0x06,0x3b,0xe4,0x7d,0x4a,0x64,0x21,0xb4,0x0f,0xd1,0x66,0xaf,0x02,0x94,0x45,0xe5,
|
||||
0xf3,0x3f,0xd3,0x4c,0xb3,0x4a,0xef,0xee,0xd9,0x33,0x0c,0x72,0xe7,0x8d,0x5d,0x5b,
|
||||
0x27,0x98,0xd7,0x38,0xcb,0x65,0x4a,0x00,0xf1,0xd4,0x9e,0xa1,0xc2,0xd2,0x7d,0x94,
|
||||
0x9e,0x41,0xf5,0x04,0x8a,0xce,0x76,0xbd,0xb6,0x4c,0xaf,0x75,0x5a,0x9b,0x1b,0x12,
|
||||
0xc6,0x52,0x98,0xcc,0x36,0x91,0x22,0xe7,0x76,0x7d,0x3c,0xb3,0x6f,0x8d,0xd4,0x02,
|
||||
0x9c,0x50,0xe4,0x75,0x28,0xf3,0xc2,0x50,0x0f,0x2a,0x3f,0x40,0x14,0xa4,0xfa,0x18,
|
||||
0xd5,0x6d,0x1d,0xc3,0x35,0xc3,0x13,0x7f,0x1b,0xce,0x71,0xe8,0x59,0x15,0xa5,0xce,
|
||||
0x4a,0x5a,0x94,0x8f,0x9d,0x95,0xf0,0x47,0x98,0xd3,0x83,0x85,0x36,0xb0,0x09,0x01,
|
||||
0x68,0x20,0xf7,0x3d,0xfb,0xd6,0xbf,0xda,0x6e,0xd2,0x31,0x6d,0xa2,0xe2,0x17,0xbb,
|
||||
0x16,0x37,0x2e,0x4d,0xd1,0x57,0x5b,0x92,0xe7,0x3d,0x70,0x9e,0x84,0x09,0x05,0xbe,
|
||||
0x3a,0x59,0x65,0x4a,0x48,0x01,0x41,0xb4,0xf3,0xdf,0x81,0xca,0x96,0xb5,0x00,0x9e,
|
||||
0xae,0x01,0x17,0x5d,0xb7,0x2d,0x8b,0xe9,0x36,0xda,0xed,0x71,0xfe,0xc3,0xc7,0x63,
|
||||
0xdd,0xf2,0x30,0x84,0x89,0x19,0x1d,0xe1,0xa4,0xbf,0x31,0xc5,0x8e,0x79,0x28,0x2a,
|
||||
0x1c,0x32,0x93,0xcf,0xec,0xb6,0x13,0xc8,0x03,0xa8,0xa8,0x8e,0x6a,0x41,0xd2,0x94,
|
||||
0x45,0xae,0xef,0x1b,0x7b,0xd3,0xab,0xee,0xa5,0xd8,0x75,0x0a,0x56,0x23,0x6d,0x19,
|
||||
0x9d,0x91,0xc7,0x1c,0x89,0x78,0x65,0x90,0xd3,0xc4,0xad,0xb5,0x36,0x7c,0xc2,0x9e,
|
||||
0x03,0xbc,0x05,0x12,0x9e,0xbe,0xae,0x93,0xdd,0x3c,0x1a,0xd8,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x14,0x2e,
|
||||
0xf1,0x31,0xd9,0xbb,0x3b,0x8c,0xd2,0xc7,0x72,0xcc,0x76,0x08,0x5e,0xa2,0x62,0xf1,
|
||||
0xd6,0xf4,0x5f,0x21,0xa2,0xa7,0x6e,0x51,0x07,0x2a,0x72,0x21,0xe3,0xba,0x95,0xea,
|
||||
0xb6,0xfb,0x13,0xd5,0xca,0x40,0x1e,0x61,0x23,0xb8,0xf0,0xe7,0xd9,0xd4,0x5d,0xb0,
|
||||
0xe9,0x2b,0x17,0x6b,0xd4,0x44,0x1d,0x45,0xc9,0x18,0x6e,0x45,0xd5,0xe5,0x77,0x54,
|
||||
0x36,0x8f,0xcc,0xdc,0x34,0x9e,0x3b,0x74,0x72,0x0a,0xf8,0xf5,0x73,0x9e,0xea,0x4a,
|
||||
0x51,0xc4,0xb9,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,
|
||||
0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,
|
||||
0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,
|
||||
0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x7f,0xff,0xd9};
|
|
@ -0,0 +1,318 @@
|
|||
//
|
||||
// ncc1701
|
||||
// Data size = 4912 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 77, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t ncc1701[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x48,
|
||||
0x00,0x48,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0x4d,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1d,0x00,0x00,0x01,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x06,0x07,0x08,0x09,0x04,0x03,0x02,0x0a,
|
||||
0xff,0xc4,0x00,0x40,0x10,0x00,0x01,0x03,0x03,0x02,0x03,0x06,0x03,0x05,0x04,0x09,
|
||||
0x05,0x01,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x11,0x06,0x07,0x12,0x21,
|
||||
0x31,0x08,0x13,0x41,0x51,0x61,0x71,0x09,0x22,0x81,0x14,0x32,0x91,0xa1,0xb1,0x15,
|
||||
0x42,0x52,0x62,0x16,0x23,0x24,0x53,0x63,0x72,0x73,0x82,0xb2,0x17,0x33,0x92,0xa2,
|
||||
0xd1,0xf0,0xff,0xc4,0x00,0x1a,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0xff,0xc4,
|
||||
0x00,0x23,0x11,0x00,0x02,0x02,0x01,0x05,0x01,0x00,0x02,0x03,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x02,0x11,0x12,0x03,0x21,0x31,0x41,0x51,0x04,0x05,0x13,
|
||||
0x22,0x32,0x61,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,0x3f,
|
||||
0x00,0xd5,0x3a,0x2b,0x2c,0xb5,0xcf,0x6f,0x7d,0xd3,0xb4,0x6f,0x56,0xa3,0x65,0x1a,
|
||||
0xa2,0xd5,0x67,0xb0,0x5b,0xae,0x92,0x21,0x26,0xcf,0x22,0x02,0x56,0xa8,0xe1,0xb5,
|
||||
0x94,0x29,0x0e,0x2f,0xf7,0xd4,0x38,0x4e,0x4e,0x71,0x9e,0x94,0xa9,0x74,0xed,0xfb,
|
||||
0x3e,0xee,0xdb,0xc1,0x1a,0xd1,0x49,0xe2,0xf9,0x55,0xf6,0x76,0x92,0xd8,0x48,0xf4,
|
||||
0xc5,0x5a,0x8d,0x91,0x97,0xf8,0x69,0xc1,0x21,0x23,0x24,0xe0,0x79,0x9a,0x4e,0xb8,
|
||||
0x6a,0x5b,0x4d,0xa5,0x95,0x3b,0x36,0xe7,0x12,0x2b,0x69,0xea,0xa7,0x9f,0x4a,0x40,
|
||||
0xe7,0x8f,0x13,0x59,0x3d,0x74,0xed,0x71,0x2a,0xf8,0x15,0x19,0x7a,0xaa,0xe1,0x29,
|
||||
0xb0,0x4a,0x80,0x0f,0x9c,0x67,0xd8,0x54,0x69,0x72,0xdc,0xa9,0xbb,0x85,0xaa,0x58,
|
||||
0xb6,0x37,0x71,0x90,0xa8,0xe9,0x52,0x78,0xbb,0xd7,0x4f,0xcd,0x9c,0xa9,0xc5,0x7b,
|
||||
0xf0,0x80,0x91,0xea,0xb2,0x7c,0x05,0x0e,0x2a,0x2a,0xdb,0x1c,0x5c,0xa5,0x25,0x14,
|
||||
0xb7,0x66,0xd0,0x23,0x5d,0x58,0x1e,0x68,0xba,0xcd,0xd2,0x3c,0x96,0x87,0x55,0xb0,
|
||||
0xae,0xf0,0x0f,0x72,0x33,0x4a,0xb0,0x6e,0x71,0x2e,0x6d,0x97,0x22,0x49,0x6a,0x4a,
|
||||
0x07,0x52,0xd2,0xc2,0xb1,0xef,0xe5,0x59,0x85,0x62,0xd7,0x57,0x6d,0x31,0x6f,0x61,
|
||||
0x88,0xb3,0x1c,0x8c,0xd0,0x48,0x09,0x6a,0x2b,0x9c,0x28,0x23,0xa6,0x08,0x14,0xbb,
|
||||
0xa1,0xb7,0x73,0x50,0x6d,0xfe,0xa9,0x62,0xfb,0x0e,0x5a,0xd6,0x90,0xa1,0xf6,0xa8,
|
||||
0xae,0x2f,0xfa,0xb9,0x0d,0xe7,0xe6,0x0a,0xf5,0xc7,0x43,0xd4,0x57,0x04,0x3e,0x87,
|
||||
0x39,0xe3,0x8e,0xde,0x9e,0xcc,0xff,0x00,0x1e,0xe3,0x06,0xf2,0xdd,0x75,0x46,0x94,
|
||||
0xd4,0x4d,0xbe,0x1d,0xa7,0x74,0x46,0xc1,0x47,0x57,0xf4,0x8e,0x54,0x97,0xe7,0xf7,
|
||||
0x1f,0x69,0x16,0xeb,0x7b,0x05,0xe7,0xcb,0x5c,0x5c,0x3c,0x64,0x0e,0x41,0x39,0xe5,
|
||||
0x92,0x6a,0x4e,0xb4,0x5c,0x9b,0xbc,0xda,0xa1,0x4f,0x64,0x29,0x2c,0xca,0x61,0x0f,
|
||||
0xa0,0x2f,0xa8,0x4a,0x92,0x14,0x33,0xeb,0x83,0x55,0xb3,0xb6,0x8f,0x64,0x16,0xfb,
|
||||
0x43,0x69,0xe5,0x5d,0x74,0xf3,0xa9,0xb6,0xeb,0x78,0xcd,0xa1,0x94,0x48,0x2e,0x14,
|
||||
0x22,0x5c,0x74,0x92,0xae,0xe1,0x67,0xa0,0xe6,0x72,0x0e,0x3a,0xfa,0x1a,0xed,0x47,
|
||||
0x8e,0xef,0xa2,0x3c,0x87,0xf1,0x5d,0xd0,0x37,0x1b,0xdc,0x78,0x4c,0x69,0x2d,0x42,
|
||||
0x86,0x1d,0x59,0x4f,0xda,0x5f,0x4b,0x48,0x03,0xc8,0xf0,0xf1,0x13,0x52,0x2a,0x7b,
|
||||
0x76,0xe8,0x76,0x16,0x15,0x36,0xf1,0x62,0x8a,0xc9,0x03,0x90,0xb8,0x95,0x2c,0x79,
|
||||
0xe4,0x70,0x01,0xf9,0xd6,0x7c,0x5c,0x3e,0x17,0xbb,0xbd,0x76,0x9a,0xa9,0x32,0x74,
|
||||
0xeb,0xfc,0x44,0xf3,0x4a,0x2e,0xd1,0x42,0x4f,0xfe,0xf5,0xf2,0x9f,0x85,0x8e,0xe7,
|
||||
0x05,0x64,0xe8,0xf5,0xaf,0x3f,0xc5,0x79,0x8c,0x3f,0x45,0xd5,0xac,0x48,0xdc,0xbe,
|
||||
0x37,0x0f,0x88,0xee,0xd5,0x5b,0xd4,0xb4,0x1d,0x49,0x09,0xf5,0x85,0x72,0xee,0x3e,
|
||||
0x6e,0x5e,0x5f,0x7b,0xf3,0xa6,0xfb,0x7f,0x12,0x8d,0x03,0x32,0x52,0x1a,0x8d,0x70,
|
||||
0x95,0x21,0xd5,0xa4,0x84,0xa1,0xa6,0x40,0x41,0xc7,0x89,0x51,0x49,0xc7,0xe3,0x55,
|
||||
0x1d,0x9f,0x87,0x06,0xf3,0x45,0x42,0x5a,0x6b,0x4b,0x0e,0xe9,0x09,0x09,0x40,0xfd,
|
||||
0xb1,0x1c,0x60,0x0f,0xf7,0xd3,0x23,0x78,0x3b,0x2d,0xee,0x3e,0xc8,0x59,0x61,0xcf,
|
||||
0xd4,0x56,0x25,0x43,0x8f,0x31,0xd3,0x1d,0x90,0xdd,0xd1,0x32,0x14,0x55,0x8e,0x25,
|
||||
0x7c,0x89,0x59,0xe5,0x81,0xcc,0xe3,0x1d,0x3c,0xc5,0x52,0x51,0x25,0xe4,0x5e,0xb9,
|
||||
0x5d,0xbe,0x6c,0xf7,0x04,0xb4,0x44,0x47,0xca,0x51,0xf3,0x25,0x62,0x62,0x9b,0xe2,
|
||||
0xf7,0xe0,0xc6,0x7e,0xb5,0x0e,0xeb,0x8e,0xda,0x2b,0xd7,0x9b,0x8b,0x21,0xa4,0x5b,
|
||||
0xdb,0x72,0xdf,0x67,0x8a,0xca,0x61,0x43,0x7d,0xe5,0x29,0x0f,0x4e,0x7d,0x44,0x77,
|
||||
0xce,0xf5,0xe2,0x4b,0x68,0x4f,0xca,0x8e,0x9c,0x4a,0xc9,0x04,0xa4,0x62,0xb3,0xed,
|
||||
0xa7,0x67,0xdd,0xd2,0xde,0x0d,0x38,0xab,0xc6,0x8d,0xd2,0x53,0x6f,0x36,0xa6,0x9e,
|
||||
0x54,0x55,0x4b,0x44,0x86,0x5b,0x47,0x7a,0x8f,0xbc,0x91,0xc6,0xe2,0x49,0xc6,0x7c,
|
||||
0x05,0x3a,0xae,0x7d,0x8d,0x77,0x77,0x44,0xc0,0x73,0x53,0x5c,0xf4,0xa3,0x36,0x70,
|
||||
0x90,0x95,0x2c,0x4a,0xbc,0xc6,0xef,0x57,0xc1,0x92,0x02,0x51,0xde,0x7c,0xca,0xeb,
|
||||
0x80,0x32,0x4d,0x14,0xba,0x1a,0x6d,0x34,0xe4,0x4d,0x32,0x37,0x09,0xf9,0x17,0x98,
|
||||
0xd3,0xad,0x89,0x5d,0xa2,0x60,0x56,0x59,0x76,0x1b,0x84,0x38,0x95,0x79,0xf1,0x0e,
|
||||
0x64,0x9f,0x1f,0x3a,0xb8,0x9b,0x5f,0xda,0x21,0x2e,0x6d,0x4a,0xae,0x5a,0xb0,0x3d,
|
||||
0xfb,0x7e,0x0a,0x9c,0x60,0xb2,0xdc,0x65,0x87,0x26,0xf0,0xa4,0x14,0x2d,0x29,0xc7,
|
||||
0xef,0x03,0x83,0xe1,0x90,0x6b,0x3d,0xf4,0x9e,0xe0,0xea,0x7d,0x1f,0x2a,0x35,0xd2,
|
||||
0x26,0x9c,0x96,0xd4,0xb0,0x8e,0x5c,0x6c,0xa5,0x4a,0x46,0x7a,0x8c,0x78,0x7e,0x19,
|
||||
0xa5,0xbd,0x6b,0xda,0xf3,0x77,0xae,0x31,0x5e,0x8f,0x06,0xcf,0x2d,0xb0,0xe8,0x21,
|
||||
0x45,0x0c,0x84,0xf5,0xf5,0x3e,0xc2,0xb0,0xd3,0xd0,0x92,0x79,0x49,0xf3,0xd1,0xea,
|
||||
0x7d,0x9f,0x6e,0x9e,0xb2,0x5a,0x70,0x82,0x55,0xd9,0xe1,0xda,0xb3,0xb5,0xe6,0xe5,
|
||||
0x6b,0x2b,0xf1,0x6f,0x4d,0xdb,0xee,0x96,0x48,0x2c,0x8e,0x14,0xa2,0x52,0xd2,0x86,
|
||||
0xc1,0x1e,0x21,0x23,0x1f,0x89,0xc9,0xa8,0x0b,0x47,0x76,0xbb,0xdf,0xad,0xb3,0xd4,
|
||||
0x0c,0x5c,0xe2,0x6b,0x34,0x84,0x21,0xde,0xf1,0xdb,0x6c,0xb7,0x9b,0x5c,0x47,0xc7,
|
||||
0x8a,0x56,0xdf,0xaf,0x98,0xc1,0xf5,0xa6,0xce,0xb0,0xb5,0xee,0x7e,0xb8,0x94,0xeb,
|
||||
0xb3,0xad,0xf2,0xd6,0x56,0x4a,0x88,0x53,0xcd,0xa0,0x7f,0xca,0x9a,0xe7,0x63,0xf5,
|
||||
0x8c,0x97,0x56,0xa7,0x2d,0xcc,0x45,0x49,0x51,0x20,0x3d,0x2d,0x2a,0xe1,0x19,0xe4,
|
||||
0x39,0x12,0x6b,0xa1,0xa5,0xc2,0x3c,0xa4,0xfd,0x35,0xbb,0x63,0xbe,0x27,0xdb,0x69,
|
||||
0xb8,0x8c,0xd9,0xad,0x9a,0xad,0xd3,0xa4,0xb5,0x34,0xc2,0x86,0x1c,0x4a,0xb2,0xe4,
|
||||
0x12,0xe9,0x38,0xf9,0x5e,0xc0,0xc2,0x49,0xfe,0x20,0x31,0x9a,0xb9,0x48,0x5a,0x5d,
|
||||
0x42,0x56,0x85,0x05,0xa1,0x43,0x21,0x49,0x39,0x04,0x79,0x8a,0xfc,0xe9,0x7f,0xd0,
|
||||
0x8b,0xe1,0x6b,0x8a,0x7d,0xce,0x04,0x56,0x5b,0x19,0x21,0x2b,0x5b,0x9c,0x3f,0x4e,
|
||||
0x11,0xe7,0x56,0xf7,0x6a,0x7b,0x6d,0xee,0x26,0xd6,0xe8,0x4b,0x46,0x91,0x6f,0x53,
|
||||
0x37,0xa8,0x51,0x6d,0x68,0x47,0x8d,0x21,0x56,0xd0,0xe3,0x81,0xb1,0xf7,0x52,0xa5,
|
||||
0xa8,0x92,0xae,0x11,0xcb,0x9f,0x30,0x00,0x15,0x38,0x37,0xc1,0x59,0xa3,0x5c,0xa8,
|
||||
0xac,0xd7,0x8b,0xf1,0x26,0xdc,0x88,0x6e,0x23,0xbc,0xd3,0x16,0x8b,0x82,0x70,0x12,
|
||||
0x43,0xa5,0x4d,0x0c,0xff,0x00,0x17,0x25,0x79,0x53,0xd2,0xd5,0xf1,0x34,0xb8,0x96,
|
||||
0x12,0x2e,0x1b,0x7f,0x1c,0xba,0x4f,0x35,0x47,0xba,0x10,0x91,0xf4,0x2d,0x9f,0xd6,
|
||||
0xa7,0x09,0x0f,0x34,0x5f,0x4a,0x2a,0x87,0x5c,0xbe,0x23,0xd7,0x79,0x89,0x79,0x36,
|
||||
0xcd,0x2f,0x02,0x0a,0xd4,0x9c,0x36,0x66,0x3a,0xb7,0x78,0x4f,0x99,0xe1,0x23,0x3f,
|
||||
0x80,0xaf,0x58,0x3f,0x11,0xab,0x83,0xa9,0xee,0x9c,0xb3,0x59,0x97,0x25,0xbc,0x25,
|
||||
0xd0,0x97,0xdc,0x4f,0xcd,0xec,0x7a,0x51,0x84,0xbc,0x1e,0x51,0xf4,0xbd,0x94,0x55,
|
||||
0x2a,0x8f,0xdb,0xf6,0xed,0x24,0x9e,0x0d,0x39,0x6b,0x5e,0x3a,0xf0,0xc9,0x59,0xae,
|
||||
0x94,0xf6,0xf0,0xbc,0xf1,0x27,0x3a,0x6a,0xdf,0x8f,0x1c,0x3c,0xba,0x7f,0xae,0x5e,
|
||||
0x13,0x9c,0x4b,0x99,0x45,0x54,0xf8,0xbd,0xb9,0xdc,0x9a,0xf2,0x1a,0x6b,0x48,0x27,
|
||||
0x8d,0x47,0x1f,0x3d,0xc5,0x28,0x1f,0x8a,0x92,0x00,0xfa,0xd2,0xa0,0xed,0xc7,0x69,
|
||||
0x8f,0x29,0x6c,0xcc,0xd2,0xd2,0xd8,0xe1,0x1f,0x79,0x99,0x8d,0xbb,0xcf,0xcb,0x90,
|
||||
0x03,0x1e,0xa0,0xd2,0xc2,0x5e,0x0f,0x38,0x96,0x72,0x8a,0x80,0xed,0xbd,0xb4,0xf6,
|
||||
0xfe,0x67,0x00,0x92,0xdd,0xd6,0x02,0x8e,0x02,0x8b,0xb1,0x92,0xa4,0x8c,0xf5,0xe6,
|
||||
0x95,0x13,0x81,0xed,0x52,0x86,0x90,0xdd,0x7d,0x21,0xaf,0x55,0xc1,0x61,0xbf,0xc3,
|
||||
0xb8,0x3d,0x8c,0xf7,0x09,0x5f,0x03,0xb8,0xff,0x00,0x22,0xb0,0xaf,0xca,0x93,0x8b,
|
||||
0x5c,0xa2,0x93,0x4f,0x82,0xa9,0xf6,0x87,0xf8,0x68,0xe9,0xfd,0xd4,0xd6,0x37,0x3d,
|
||||
0x53,0xa5,0xee,0x31,0xec,0x57,0x0b,0xa3,0xcb,0x95,0x36,0x14,0xd6,0x4b,0xac,0x38,
|
||||
0xfa,0xce,0x56,0xea,0x54,0x0e,0x50,0x54,0x79,0x90,0x01,0x19,0xe7,0xca,0xab,0xad,
|
||||
0xfb,0xe1,0x55,0xb8,0x36,0xe0,0xe7,0xd9,0x53,0x62,0xbd,0x80,0x0f,0x09,0x62,0x62,
|
||||
0x9b,0x51,0xc7,0x41,0xfd,0x60,0x4e,0x0f,0xd6,0xb5,0x8a,0x8a,0x2f,0xa1,0xa6,0xd3,
|
||||
0x4e,0x2d,0xa6,0x8c,0x4d,0xba,0x76,0x16,0xdd,0x1d,0x21,0x24,0xba,0x8d,0xbd,0xba,
|
||||
0x2d,0x64,0x60,0x2e,0x08,0xfb,0x42,0x79,0xf2,0xe7,0xc2,0xa3,0x8a,0x61,0xc4,0xd2,
|
||||
0x3a,0xa3,0x6e,0x35,0x93,0x73,0x2f,0x7a,0x76,0xe1,0x6b,0x0c,0xab,0x81,0xc6,0xe6,
|
||||
0xc6,0x5b,0x7c,0xf0,0x46,0x32,0x46,0x39,0xa4,0x9f,0xc0,0x56,0xf7,0x57,0x2d,0xc2,
|
||||
0xd7,0x0e,0xec,0xc8,0x66,0x74,0x46,0x26,0x34,0x0e,0x7b,0xb9,0x0d,0xa5,0x69,0xcf,
|
||||
0xb1,0x14,0x95,0x25,0x55,0xb0,0xdc,0xa7,0x29,0x29,0xb9,0x36,0xd7,0xbb,0x99,0x3f,
|
||||
0x66,0xb8,0xc2,0xd4,0x76,0xc6,0x54,0xc3,0x8c,0x92,0x47,0xca,0x19,0x1c,0xc7,0xf9,
|
||||
0xbc,0xa9,0xd5,0xa4,0x34,0x74,0x9d,0x6f,0xa9,0xed,0xda,0x66,0xd6,0xeb,0x6e,0xdc,
|
||||
0xa7,0x28,0xf0,0x24,0x91,0xf2,0xb6,0x92,0x38,0xdc,0x50,0xeb,0xc2,0x07,0x3a,0x92,
|
||||
0x3b,0x54,0xfc,0x3b,0xd7,0x74,0x5c,0xfd,0x55,0xb4,0x6f,0xae,0xcf,0x70,0x73,0x89,
|
||||
0xe9,0x56,0x16,0x5d,0x2d,0xb6,0xe9,0xea,0x54,0xc1,0xe8,0x95,0x1f,0xe0,0x3c,0x8f,
|
||||
0x86,0x2a,0x95,0xec,0x47,0x66,0x6d,0xe6,0xbc,0xeb,0xbf,0xdb,0xf6,0x19,0x57,0x2d,
|
||||
0x33,0x78,0xb5,0xc8,0x52,0x11,0x7e,0xbb,0x3c,0xb6,0x92,0xca,0x81,0xc2,0x90,0x94,
|
||||
0x9f,0x9d,0x44,0x10,0x41,0x00,0x11,0xe0,0x48,0xae,0x58,0xfc,0xdf,0xca,0xd3,0xb5,
|
||||
0xe1,0xef,0x4b,0xf3,0x2f,0xf5,0xe2,0xe0,0x94,0xaa,0xac,0xdc,0x0b,0x3d,0xb5,0x16,
|
||||
0x6b,0x44,0x1b,0x7b,0x6a,0x2b,0x6e,0x2b,0x08,0x61,0x2a,0x57,0x52,0x12,0x90,0x90,
|
||||
0x7f,0x2a,0xeb,0x52,0x82,0x41,0x24,0x80,0x07,0x52,0x6a,0x09,0xb5,0x6a,0x5d,0x64,
|
||||
0x34,0x75,0xae,0xd9,0x7a,0xd4,0x31,0x9d,0xbb,0x30,0xc2,0x1b,0x99,0x73,0xb7,0xb1,
|
||||
0xdd,0x2a,0x4a,0xc0,0xe6,0xac,0x12,0x78,0x73,0xe9,0x49,0x93,0xe3,0x5c,0xae,0x4b,
|
||||
0xef,0x24,0xce,0x97,0x2d,0x58,0xe1,0x0b,0x5b,0xe5,0x39,0x1e,0xc2,0xbb,0xd6,0x93,
|
||||
0x7c,0x9f,0x36,0xf5,0x11,0x36,0xdd,0x75,0xd6,0x9e,0xb2,0x8c,0xcd,0xbc,0x43,0x63,
|
||||
0xd0,0xba,0x09,0xfc,0x05,0x34,0x6e,0x5d,0xa1,0x34,0x8c,0x0e,0x30,0xd3,0xf2,0xa6,
|
||||
0xad,0x3d,0x03,0x11,0xd5,0x85,0x7b,0x28,0xe0,0x54,0x50,0xe5,0x85,0xb6,0x1c,0x19,
|
||||
0x86,0xda,0x41,0xf1,0x48,0xfd,0x4d,0x76,0x31,0xa7,0xe1,0x05,0x25,0x6f,0xa5,0xa0,
|
||||
0x8f,0xe1,0x51,0xe5,0x8f,0xa5,0x68,0xb4,0x57,0x6c,0x87,0xa8,0xfa,0x16,0xa7,0x76,
|
||||
0xa5,0xef,0x90,0xeb,0x76,0xbd,0x33,0x29,0xd9,0x05,0x24,0x37,0xdf,0x38,0x30,0x15,
|
||||
0xfb,0xa4,0x84,0xe7,0x97,0xa6,0x6a,0xad,0xee,0x26,0xc5,0x6b,0x0d,0xfa,0xd4,0xcd,
|
||||
0xdd,0xf5,0x6d,0xd5,0x57,0x15,0xb4,0xf2,0xdd,0x8a,0xc4,0xf6,0xdd,0xee,0xa2,0x71,
|
||||
0x63,0x21,0x96,0x92,0xe8,0x08,0x18,0x03,0xdf,0x1c,0xce,0x6a,0xd1,0x31,0x36,0xc7,
|
||||
0x68,0xc0,0x8e,0xdb,0x09,0x23,0xc7,0x19,0x35,0xe8,0xf6,0xb6,0xb4,0x32,0x14,0xa2,
|
||||
0xf2,0x42,0xfc,0xea,0xd4,0x12,0xe1,0x12,0xe6,0xd9,0x18,0xed,0x46,0xd6,0xcd,0xd9,
|
||||
0x2d,0x22,0x2c,0x76,0x1b,0xc4,0xcb,0x45,0xb5,0x4a,0x5b,0xce,0xc5,0x8e,0xea,0x92,
|
||||
0xd2,0x9d,0x51,0xca,0xd6,0x02,0x8a,0x94,0x92,0x7d,0x15,0x49,0x1a,0xa6,0xd9,0x1d,
|
||||
0xc7,0x9c,0x71,0xf5,0xb9,0x31,0xf5,0x73,0x5b,0xaf,0x2c,0xa8,0x9f,0x52,0x4d,0x3c,
|
||||
0xf5,0x16,0xbb,0x87,0x27,0x88,0x21,0xf4,0x91,0x51,0xd5,0xe6,0xf4,0xdc,0xc2,0xae,
|
||||
0xed,0xc0,0xa1,0xe7,0x4d,0x40,0x97,0x21,0x87,0x7c,0x8e,0xc3,0x3c,0x5c,0x08,0x09,
|
||||
0x1e,0x43,0xa5,0x31,0xee,0x6f,0x36,0xd8,0x21,0x29,0x19,0xf1,0xe5,0x4f,0x6b,0xcb,
|
||||
0x0e,0x49,0x51,0x3c,0x49,0x03,0xde,0x9a,0x33,0xac,0xea,0x71,0x44,0x95,0xa7,0x1e,
|
||||
0xf4,0xe8,0x56,0x32,0x2e,0xb3,0x9c,0x42,0x95,0xc0,0x9e,0x25,0x63,0x09,0x40,0x20,
|
||||
0x64,0xf9,0x53,0x26,0xe1,0x71,0xbb,0xcd,0x9c,0x88,0xd8,0x10,0xf8,0x82,0xb0,0x09,
|
||||
0x07,0x8b,0xeb,0xed,0xfc,0x39,0xa7,0x3e,0xbe,0xdb,0x39,0xba,0x9e,0xf5,0x64,0x53,
|
||||
0x72,0x12,0xd5,0xba,0x3a,0xdc,0x54,0xa2,0x97,0x8b,0x6b,0xc1,0x03,0x87,0x87,0x1d,
|
||||
0x4e,0x45,0x23,0xbb,0xb5,0x37,0x5f,0xe9,0x55,0x9e,0x7b,0x97,0xa6,0xa7,0x43,0xb7,
|
||||
0x95,0xe0,0xba,0xde,0x1f,0x29,0x50,0xfb,0xa4,0x8e,0x4a,0xe9,0xd7,0x95,0x4d,0x31,
|
||||
0xec,0x21,0xbd,0x6e,0x6a,0xc7,0x0d,0x72,0xa6,0x4a,0x71,0xb6,0x9a,0x1c,0x4e,0x2b,
|
||||
0xbd,0x52,0x5b,0x03,0xa6,0x4f,0x32,0x6b,0x88,0xdf,0x2d,0xe5,0x02,0x42,0x1c,0x52,
|
||||
0x9a,0x73,0x07,0xbf,0x43,0x2a,0x29,0x20,0xf4,0xca,0xb1,0x52,0xc4,0xab,0x03,0x0e,
|
||||
0xa1,0x6d,0x38,0xd2,0x56,0xda,0xc7,0x09,0x0b,0x19,0x04,0x79,0x1a,0x6e,0x5b,0x74,
|
||||
0x13,0x36,0x10,0xf3,0x10,0x6e,0x12,0x23,0xc5,0x5a,0xb8,0x93,0x14,0x84,0xb8,0x86,
|
||||
0xfd,0x11,0xc4,0x09,0x03,0xd2,0x96,0x3b,0x8d,0x31,0xb5,0x3d,0x52,0xe1,0xc2,0x5b,
|
||||
0xcc,0xc4,0x5c,0xe5,0x80,0x08,0x65,0xb2,0x02,0x95,0xed,0x9e,0x54,0x8d,0x6d,0xd4,
|
||||
0x12,0x6e,0x0f,0x04,0x2a,0x13,0x71,0x95,0x9c,0x29,0xb7,0x1f,0xe1,0x75,0x1e,0xe9,
|
||||
0x20,0x7e,0x44,0xd4,0x93,0x6f,0xb0,0x45,0xb5,0xf7,0xc3,0xbe,0x93,0x20,0xba,0xae,
|
||||
0x35,0x17,0xd6,0x55,0x83,0xfc,0xa3,0xc0,0x7a,0x57,0xa4,0x88,0xf6,0xd7,0x14,0x92,
|
||||
0xf4,0x56,0xde,0x52,0x7a,0x17,0x10,0x0e,0x3d,0xa8,0x61,0x63,0x37,0xbc,0x4d,0xd1,
|
||||
0x2e,0xc5,0x85,0x21,0x0e,0x4c,0x68,0x82,0xb4,0x21,0xdc,0x60,0x7a,0x9c,0x1f,0xd2,
|
||||
0x95,0x2d,0x5a,0x14,0x45,0x8e,0x1a,0x69,0xa8,0xe9,0x6c,0xfc,0xca,0x41,0x6b,0x04,
|
||||
0xa8,0xf5,0xf9,0x93,0x8f,0xd2,0x9c,0x91,0xdc,0x84,0xc8,0xc3,0x30,0xd9,0x68,0xff,
|
||||
0x00,0x2a,0x42,0x6b,0xb1,0x2f,0x36,0xae,0x7c,0x21,0x20,0x78,0xf1,0x60,0x53,0xb1,
|
||||
0x1c,0x10,0x34,0xb3,0x4d,0xa9,0xb5,0xc8,0xc3,0x65,0xa5,0x85,0xa5,0x0d,0xa8,0x29,
|
||||
0x3c,0xbd,0x70,0x0d,0x3a,0x59,0x9e,0xdb,0x43,0x09,0xe2,0x5f,0xb8,0xe5,0x4d,0xb9,
|
||||
0x7a,0xae,0xcb,0x6e,0x04,0x49,0xba,0xc3,0x60,0x8e,0xa8,0x5b,0xe9,0xe2,0xfc,0x33,
|
||||
0x9a,0x48,0x97,0xbc,0xda,0x62,0x08,0xf9,0x25,0x3b,0x2d,0x63,0xf7,0x63,0xc7,0x51,
|
||||
0xfc,0xd5,0x81,0xf9,0xd5,0x58,0x89,0x05,0x13,0x14,0x47,0xdd,0x56,0x3d,0xab,0xec,
|
||||
0xc8,0x56,0x32,0x52,0xa3,0xee,0x2a,0x1a,0xb9,0xf6,0x89,0x4b,0x43,0x86,0x05,0x99,
|
||||
0xd5,0xf9,0x2e,0x4b,0xa1,0x03,0xff,0x00,0x14,0xe7,0xf5,0xa6,0x8d,0xd3,0x7d,0x35,
|
||||
0x75,0xcd,0xc0,0xdc,0x47,0x58,0x82,0x5c,0x3c,0x09,0x6e,0x33,0x3c,0x4a,0x24,0xf4,
|
||||
0x00,0xab,0x27,0x3e,0xd4,0xc2,0x8b,0x11,0x32,0xe0,0xcc,0x46,0x94,0xe4,0x82,0x19,
|
||||
0x6c,0x75,0x5b,0x98,0x4a,0x7f,0x13,0x5c,0x7b,0x75,0xaa,0xae,0x3a,0xff,0x00,0x72,
|
||||
0x6d,0x5a,0x6f,0x6e,0xa3,0x3d,0x7b,0xd4,0xaa,0x79,0x2b,0x0f,0xc6,0x25,0x2c,0x42,
|
||||
0x4a,0x48,0x2a,0x79,0xd7,0x47,0x24,0xa5,0x3e,0x9c,0xc9,0xe4,0x3a,0xd4,0x17,0xa2,
|
||||
0xf6,0x77,0x72,0xb7,0xff,0x00,0x51,0xa2,0xd1,0x69,0x6a,0x5d,0xf6,0xe4,0xb5,0x61,
|
||||
0xc4,0x38,0xe9,0x53,0x71,0xd3,0xc7,0xc2,0x56,0xea,0x87,0xca,0xda,0x41,0x0a,0xeb,
|
||||
0xcc,0xf0,0xf2,0x07,0x23,0x3a,0xf5,0xd8,0xfb,0xb2,0x9d,0xab,0xb2,0xde,0xdf,0x2a,
|
||||
0xdc,0x97,0x5b,0xb9,0x6a,0x5b,0x82,0x83,0xd7,0x4b,0x9a,0x51,0x8e,0xf1,0x5e,0x0d,
|
||||
0xa3,0xc4,0x36,0x9f,0x0f,0x3e,0xa6,0xb3,0x9c,0xf1,0x5b,0x1a,0x46,0x17,0xc9,0x3e,
|
||||
0x51,0x45,0x15,0xc6,0x74,0x85,0x14,0x51,0x40,0x05,0x55,0xfe,0xd0,0xba,0xf9,0xce,
|
||||
0xcf,0x97,0x01,0x7c,0xbc,0x69,0x89,0xd7,0xbd,0x1d,0x35,0xc2,0x57,0x76,0xb5,0x94,
|
||||
0x95,0xc2,0x75,0x47,0xee,0x3c,0xd9,0xc7,0xca,0x7c,0x16,0x0f,0x3e,0x98,0xcf,0x5b,
|
||||
0x41,0x5c,0x37,0xcb,0x24,0x0d,0x4b,0x68,0x97,0x6b,0xba,0x44,0x6a,0x7d,0xba,0x5b,
|
||||
0x6a,0x65,0xf8,0xcf,0xa4,0x29,0x0e,0x20,0x8c,0x10,0x41,0xaa,0x8c,0xb1,0x76,0x4c,
|
||||
0x96,0x48,0xa5,0x56,0xee,0xd9,0x3b,0x59,0xa9,0xec,0xb2,0x58,0x6f,0x50,0x0d,0x2d,
|
||||
0x74,0x79,0xa5,0xa1,0xa7,0x2e,0x30,0x96,0x52,0xc2,0x88,0x21,0x0b,0x3c,0x40,0x05,
|
||||
0x63,0x92,0xb1,0x9c,0x78,0x52,0x96,0xda,0x6e,0x76,0x90,0xb6,0xda,0xdd,0x8d,0x2b,
|
||||
0x77,0xad,0x5a,0xad,0xe7,0x5c,0xef,0x10,0xfc,0x97,0x1b,0x65,0x4d,0x8e,0x10,0x0a,
|
||||
0x40,0x07,0x98,0xc8,0x27,0x9f,0x4c,0xe3,0xa5,0x32,0x77,0xa7,0xe1,0x76,0x65,0x4b,
|
||||
0x95,0x73,0xdb,0x6b,0xf2,0x18,0x4a,0xfe,0x64,0xd9,0x6f,0x0a,0x51,0x4a,0x7f,0x95,
|
||||
0x0f,0x0c,0x90,0x3c,0x82,0x81,0xf7,0xaa,0x21,0xaa,0xf6,0xf2,0xf9,0xa4,0x2e,0x37,
|
||||
0x08,0x17,0x6b,0x7f,0x03,0xb0,0x5e,0x5c,0x77,0xd4,0x82,0x1c,0x42,0x56,0x95,0x70,
|
||||
0xab,0x98,0xf0,0xc8,0xeb,0x5d,0x29,0xa9,0x3b,0x39,0x9c,0x69,0xee,0x6a,0x45,0xcf,
|
||||
0x77,0xf4,0x4c,0x56,0xcf,0x1e,0xad,0xb4,0xab,0x87,0xf8,0x25,0x20,0x9f,0xc8,0xd3,
|
||||
0x06,0xe7,0xda,0x0f,0x44,0x7d,0xa1,0x48,0x4d,0xcd,0x0e,0x0c,0xff,0x00,0xdc,0x4f,
|
||||
0x43,0xf5,0xac,0xcc,0x30,0x1b,0xea,0x1b,0x4e,0x09,0xea,0x12,0x2b,0xe5,0x71,0x50,
|
||||
0x79,0x84,0x0e,0x5e,0x95,0xa5,0x3e,0x84,0x69,0x2a,0xf7,0xcf,0x44,0xbc,0x33,0xfb,
|
||||
0x4e,0x3a,0x4f,0xf3,0xba,0x69,0x12,0xe5,0xbc,0xfa,0x31,0xc2,0x4a,0x6e,0x70,0xb0,
|
||||
0x7a,0x9e,0xfb,0x15,0x9f,0x08,0x8e,0x85,0x27,0x9a,0x46,0x7d,0x2b,0xe7,0xec,0x8d,
|
||||
0x92,0x07,0x00,0x3f,0x4a,0x6a,0xc5,0x45,0xf3,0x7f,0x72,0xf4,0xb4,0xb1,0xf2,0x5d,
|
||||
0xe0,0xe0,0xf9,0xc8,0x02,0x93,0xe4,0xeb,0xab,0x09,0x4f,0xcb,0x78,0x82,0x07,0xa4,
|
||||
0x94,0xff,0x00,0xf6,0xa8,0xda,0xa1,0x35,0xfd,0xd2,0x4f,0xfb,0x6b,0xc9,0x70,0x9a,
|
||||
0x07,0x3d,0xca,0x39,0x7f,0x28,0xa7,0xb8,0x51,0x73,0x26,0xee,0x16,0x9b,0x64,0x10,
|
||||
0xe5,0xee,0x02,0x47,0x8f,0xf6,0x81,0xff,0x00,0xda,0x6d,0xcf,0xdc,0xed,0x1a,0xa5,
|
||||
0x80,0xe6,0xa0,0x82,0x02,0x7f,0x75,0x2e,0xe6,0xaa,0xc3,0x30,0x92,0xe8,0x77,0x87,
|
||||
0xba,0x6f,0xbb,0x47,0x1f,0xce,0x40,0xe2,0xe6,0x06,0x07,0x99,0xe7,0xf9,0x1a,0xf7,
|
||||
0xb4,0xbf,0x1a,0x04,0xf4,0xbd,0x32,0x02,0x2e,0x4c,0x00,0x41,0x8e,0xb5,0xa9,0x00,
|
||||
0x9f,0x03,0x94,0xf3,0xe5,0x49,0x95,0x45,0x96,0x67,0x7b,0xf4,0x55,0xac,0xb9,0xc3,
|
||||
0x32,0x24,0xd2,0xac,0x60,0xa9,0x95,0xb9,0xc3,0xec,0x07,0x2f,0xc7,0x35,0xc7,0x73,
|
||||
0xed,0x1f,0xa6,0x9f,0x8e,0xa6,0x12,0x94,0x94,0x1f,0x06,0x2d,0x49,0x42,0xbe,0x8b,
|
||||
0xe0,0x07,0xf3,0xa8,0x16,0x05,0xfe,0x1d,0xbe,0xe1,0x36,0x48,0xd3,0xd6,0xf9,0x2c,
|
||||
0xbe,0x41,0x6e,0x3c,0x9e,0x35,0xa1,0x8c,0x67,0x92,0x79,0xe4,0xf5,0xf1,0xf2,0xae,
|
||||
0x58,0x17,0x75,0x5b,0x98,0x98,0xd2,0x21,0xc3,0x73,0xed,0x23,0x05,0x6f,0x34,0x16,
|
||||
0xa6,0xc7,0xf2,0x13,0xf7,0x69,0x6f,0xe0,0x52,0x25,0xd9,0x9b,0xfb,0x64,0x57,0x10,
|
||||
0x6a,0xdd,0x39,0xe3,0xfe,0x54,0x27,0xf5,0x55,0x23,0x48,0xde,0xe5,0x38,0x4f,0xd9,
|
||||
0xac,0xc4,0x8f,0xf1,0xdf,0x03,0xf4,0x06,0x9b,0x36,0xd6,0xf5,0x36,0xa2,0xb3,0x47,
|
||||
0xb5,0xb3,0x66,0x99,0x3a,0xd4,0xd2,0xd2,0x95,0x18,0x16,0xe2,0xb7,0x3a,0xe7,0x1c,
|
||||
0x69,0x49,0x39,0xf7,0xa7,0x23,0x1d,0x9c,0x37,0x2e,0xf2,0xf8,0xfd,0x8d,0xb6,0xba,
|
||||
0xc1,0x4c,0x72,0x41,0xfb,0x5d,0xb1,0xd4,0x9e,0x23,0xea,0x50,0x90,0x07,0xff,0x00,
|
||||
0xb3,0x45,0xfa,0x15,0xe0,0x9d,0x3b,0x77,0x6f,0x0a,0x51,0x42,0x2d,0xd0,0xe3,0x2b,
|
||||
0xc7,0x8c,0xad,0x64,0x7f,0xc6,0x92,0x9f,0xdc,0x4d,0x41,0x27,0xac,0xa8,0xec,0x7f,
|
||||
0xa1,0x1c,0x0f,0xf9,0x15,0x54,0xb3,0x66,0xec,0x25,0xbe,0xd7,0xe7,0x12,0xb5,0x68,
|
||||
0x59,0x11,0x92,0xb5,0xf0,0x97,0x27,0x4d,0x8e,0xde,0x3d,0x48,0x2e,0x71,0x63,0xe8,
|
||||
0x6a,0x43,0xb1,0x7c,0x2f,0xf7,0x6e,0xe8,0xd2,0x1c,0x9f,0x37,0x4e,0xd9,0xc1,0x23,
|
||||
0x2d,0xbb,0x2d,0xc7,0x56,0x91,0xe3,0xf7,0x5b,0xc6,0x7d,0x33,0xf5,0xa9,0xb8,0x2e,
|
||||
0x58,0xd4,0x59,0x53,0x65,0x6a,0x1b,0xc4,0xac,0xf7,0xb7,0x69,0x58,0xff,0x00,0x0d,
|
||||
0x61,0xbf,0xf8,0x01,0x49,0x52,0x0a,0xe5,0x1c,0x3e,0xf3,0xd2,0x3f,0xd6,0x75,0x4b,
|
||||
0xfd,0x49,0xad,0x12,0xd3,0xff,0x00,0x09,0x77,0x16,0x84,0x1b,0xf6,0xe1,0xe0,0x92,
|
||||
0x0a,0xdb,0xb6,0xdb,0xf1,0x81,0xe2,0x02,0x96,0xa3,0x9f,0x7c,0x54,0xa7,0xa5,0xfe,
|
||||
0x17,0x7b,0x49,0x66,0x09,0x55,0xd2,0x4d,0xf2,0xfe,0xe0,0xe6,0x7b,0xf9,0x9d,0xca,
|
||||
0x49,0xf6,0x6c,0x0e,0x55,0x2f,0x52,0x0b,0x82,0xb0,0x66,0x4a,0x70,0x36,0xdf,0x2c,
|
||||
0x25,0x23,0xa7,0x95,0x38,0x74,0xbe,0xdb,0xea,0xbd,0x6f,0x25,0x2c,0x69,0xfd,0x35,
|
||||
0x74,0xbc,0x3a,0xa3,0x84,0x88,0x71,0x16,0xbc,0x9f,0x70,0x31,0x5b,0x61,0xa4,0xbb,
|
||||
0x26,0x6d,0x0e,0x89,0x71,0xa7,0x6d,0x5a,0x06,0xcc,0x87,0xdb,0xe6,0x97,0xdf,0x60,
|
||||
0x3c,0xbc,0xf9,0x92,0xbc,0xd4,0xa7,0x06,0xdb,0x12,0xd6,0xc7,0x73,0x0a,0x2b,0x31,
|
||||
0x19,0xfe,0xed,0x86,0xc2,0x13,0xf8,0x01,0x52,0xf5,0xbc,0x45,0x2d,0x3f,0x59,0x8f,
|
||||
0x9b,0x73,0xf0,0xda,0xde,0x2d,0x7e,0x94,0x48,0xb8,0xc1,0x87,0xa3,0xe1,0xab,0x18,
|
||||
0x37,0x97,0x48,0x77,0x1f,0xe9,0xa0,0x29,0x40,0xfb,0x81,0x56,0xa7,0x68,0xfe,0x15,
|
||||
0x3a,0x13,0x4b,0x38,0xd4,0xdd,0x71,0x78,0x99,0xab,0xe6,0xa0,0x85,0x08,0x91,0xc9,
|
||||
0x87,0x10,0x7a,0x1e,0x13,0xde,0x2b,0xdf,0x89,0x3e,0xd5,0x78,0xe8,0xac,0x9e,0xa4,
|
||||
0x99,0x6a,0x09,0x08,0x9a,0x47,0x44,0xe9,0xfd,0x03,0x67,0x6a,0xd5,0xa6,0xec,0xb0,
|
||||
0x6c,0x76,0xe6,0xc7,0xcb,0x1a,0x03,0x09,0x69,0x1e,0xe4,0x24,0x73,0x3e,0xa7,0x9d,
|
||||
0x2d,0xd1,0x45,0x66,0x58,0x51,0x45,0x14,0x00,0x51,0x45,0x14,0x00,0x51,0x45,0x14,
|
||||
0x00,0x56,0x4f,0xf6,0xd5,0xec,0xeb,0xaf,0xb6,0xd3,0x57,0xea,0x7d,0x4c,0xd2,0x15,
|
||||
0x77,0xd0,0xf7,0x99,0x8f,0xc9,0x12,0x98,0x1c,0x46,0x27,0x7c,0xa2,0xa2,0xdb,0xc3,
|
||||
0x19,0x00,0x15,0x10,0x15,0xd0,0xfe,0x55,0xac,0x15,0xcd,0x71,0xb7,0x45,0xbb,0xc1,
|
||||
0x7e,0x14,0xd8,0xed,0x4b,0x88,0xfa,0x0b,0x6e,0xb0,0xf2,0x02,0x90,0xb4,0x9e,0xa0,
|
||||
0x83,0xc8,0x8a,0x69,0xd1,0x2d,0x59,0x83,0xfb,0x7b,0x7f,0x46,0x95,0xb7,0x2e,0x23,
|
||||
0xe8,0x6f,0x84,0xba,0xa3,0xc0,0xac,0x12,0x72,0x07,0x3c,0x53,0xe0,0xdd,0x2c,0xb2,
|
||||
0x59,0x43,0xaf,0x42,0x85,0x21,0x2a,0xe6,0x4f,0x74,0x9c,0x8e,0x59,0xc1,0xe5,0xd7,
|
||||
0xad,0x5c,0x9e,0xd1,0x7f,0x0d,0x6b,0x56,0xa6,0x6a,0x75,0xe3,0x6c,0xe4,0x22,0xcd,
|
||||
0x71,0x70,0x97,0x15,0x63,0x94,0xaf,0xec,0x6e,0x9f,0x10,0xda,0xba,0xb6,0x7f,0x11,
|
||||
0xed,0x59,0xe7,0xb8,0x3a,0x23,0x59,0xed,0x05,0xe9,0xcb,0x15,0xde,0xcf,0x2e,0xd3,
|
||||
0x73,0x8e,0x38,0x97,0x12,0x6a,0x72,0x1c,0x18,0xe6,0xa6,0xd6,0x39,0x29,0x27,0x00,
|
||||
0xe4,0x12,0x3a,0xd6,0xb9,0x78,0x65,0x85,0xbd,0xc7,0x55,0xcd,0x16,0x37,0x50,0x54,
|
||||
0xdd,0xba,0x33,0x5c,0xce,0x0a,0x46,0x29,0x8b,0xaa,0xef,0x56,0xbb,0x0c,0x17,0x1c,
|
||||
0x10,0xdb,0x53,0xbd,0x10,0x90,0x4f,0x33,0xf8,0xd3,0x73,0xfa,0x7c,0xb4,0xa9,0x09,
|
||||
0x9c,0xc2,0xd8,0x56,0x70,0x49,0x1c,0x89,0xf4,0x22,0x91,0xf5,0x5b,0x12,0x75,0x0b,
|
||||
0x46,0x6b,0x2e,0xb0,0x22,0x36,0x33,0xfd,0x63,0xc1,0x27,0x1e,0x60,0x78,0xd2,0x53,
|
||||
0xbe,0x19,0x52,0xd2,0x94,0x3f,0xb2,0x17,0x74,0x74,0x88,0x97,0x16,0x1c,0x76,0xf5,
|
||||
0x71,0x54,0x75,0xac,0x15,0x21,0x09,0x01,0x28,0x6c,0x7b,0xe3,0x34,0xc0,0xd5,0x5a,
|
||||
0xd5,0xe8,0x17,0x75,0x33,0x6d,0x9a,0xf4,0x98,0xe9,0x56,0x12,0xa5,0x21,0x23,0x8c,
|
||||
0x67,0xc0,0x63,0x3c,0xeb,0xc3,0x58,0x4e,0x0c,0xd9,0x22,0x77,0x04,0x84,0xb8,0x03,
|
||||
0x79,0x1d,0x30,0x2b,0xc7,0x4c,0x14,0xaa,0x0f,0xda,0xcb,0x48,0x32,0x16,0x4b,0x69,
|
||||
0x59,0x4f,0x34,0x24,0x63,0x24,0x7a,0x9c,0xe3,0x3e,0x94,0xa5,0x27,0xc2,0x2a,0x31,
|
||||
0x4f,0x73,0x58,0xfb,0x1c,0x5d,0xbb,0x29,0xf6,0x83,0xb5,0xc4,0xb3,0x44,0xd0,0xb0,
|
||||
0xed,0x3a,0xd9,0x2c,0x20,0xc9,0xb4,0xdf,0x54,0xea,0xdd,0x7d,0x69,0x4f,0xce,0xb6,
|
||||
0x14,0xb5,0x90,0xb1,0xc8,0x9c,0x27,0x04,0x78,0x8a,0xb6,0x96,0xee,0xca,0x3b,0x3b,
|
||||
0x6a,0x5a,0xd4,0xc6,0xdb,0x69,0xc5,0x95,0x8c,0x11,0x22,0x02,0x1e,0x1f,0x40,0xb0,
|
||||
0x40,0xfa,0x56,0x1e,0x6d,0x3e,0xb3,0xb9,0xed,0x3e,0xe0,0xe9,0x9d,0x55,0x09,0xb7,
|
||||
0x13,0x3a,0xd7,0x31,0xb9,0x8d,0x26,0x40,0xe4,0xb0,0x0f,0x3e,0xbe,0x0a,0x49,0x52,
|
||||
0x7e,0xb5,0xfa,0x18,0x42,0xb8,0xd0,0x95,0x74,0xc8,0xcd,0x4d,0xbf,0x4a,0xa4,0x30,
|
||||
0xad,0xfd,0x9f,0x76,0xc2,0xd4,0xea,0x9d,0x87,0xb7,0x7a,0x56,0x3b,0x8a,0x1c,0x25,
|
||||
0x4d,0xd9,0xa3,0x82,0x47,0x97,0xdc,0xa7,0x0c,0x0d,0x05,0xa6,0x2d,0x51,0xc4,0x78,
|
||||
0x5a,0x72,0xd3,0x0d,0x80,0x4a,0x83,0x4c,0x41,0x69,0x09,0x04,0xf5,0x38,0x09,0xc5,
|
||||
0x2f,0x51,0x4a,0xc6,0x7c,0xa1,0xb4,0x34,0x90,0x94,0x24,0x21,0x20,0x60,0x04,0x8c,
|
||||
0x01,0x5f,0x54,0x51,0x48,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x9a,0xbb,0x8d,0xb5,0xba,0x57,
|
||||
0x76,0xb4,0xfb,0x96,0x6d,0x59,0x64,0x8b,0x79,0x82,0xa0,0x78,0x43,0xe8,0xf9,0xda,
|
||||
0x51,0x18,0xe2,0x6d,0x63,0xe6,0x42,0xbd,0x52,0x45,0x3a,0xa8,0xa0,0x0c,0xbf,0xed,
|
||||
0x0d,0xf0,0xca,0xbd,0xe9,0x61,0x2a,0xef,0xb7,0x4f,0x2f,0x52,0xd9,0xf9,0xad,0x56,
|
||||
0x99,0x18,0x13,0x19,0x1e,0x49,0x3d,0x1d,0xfc,0x8f,0xa1,0xaa,0x3d,0xaa,0xb4,0xd4,
|
||||
0xbb,0x0b,0x13,0x2d,0xb3,0x60,0x3b,0x0a,0x4b,0x20,0xb6,0xb8,0xef,0x34,0x5b,0x71,
|
||||
0x18,0xe5,0x8c,0x1f,0x2a,0xfd,0x10,0xd4,0x7d,0xb9,0x7b,0x05,0xa0,0x37,0x79,0xa2,
|
||||
0x35,0x56,0x98,0x83,0x73,0x7b,0x84,0xa5,0x32,0x8b,0x7c,0x0f,0xa7,0x3e,0x4b,0x4e,
|
||||
0x0d,0x5a,0x95,0x72,0x43,0x8f,0x87,0xe7,0x93,0x54,0x58,0xbe,0xd3,0xa3,0xa3,0xbb,
|
||||
0x1c,0x97,0x97,0x19,0x5c,0x4b,0x09,0x1d,0x12,0x7a,0xfe,0x1c,0xa9,0x17,0x4a,0x4b,
|
||||
0x47,0xd8,0x8b,0x7c,0x40,0x38,0xda,0x8e,0x53,0x9e,0x7c,0x27,0x9e,0x47,0xd6,0xb6,
|
||||
0x3f,0x5b,0x7c,0x27,0x36,0xce,0x7f,0xda,0xa5,0xd8,0xb5,0x1e,0xa2,0xd3,0x8a,0x21,
|
||||
0x4a,0x0c,0xb4,0xea,0x1f,0x6f,0xd8,0x85,0xa7,0x24,0x7d,0x6a,0x06,0xec,0xd9,0xf0,
|
||||
0xea,0xd2,0xba,0x87,0x7b,0xae,0x0a,0xbf,0xde,0xd5,0x73,0xb6,0x69,0xa9,0x8d,0xa9,
|
||||
0x56,0xf4,0x40,0x0d,0x26,0x69,0x1f,0x36,0x16,0x7b,0xc5,0x61,0x27,0x1c,0xc0,0x1c,
|
||||
0xfc,0xe8,0x74,0xf7,0x43,0x8d,0xad,0x99,0x07,0xf6,0x3c,0xec,0xfd,0xa9,0x7b,0x47,
|
||||
0xee,0x15,0x9e,0xdc,0x96,0x26,0x23,0x46,0xc0,0x90,0x89,0x57,0x49,0xef,0xa5,0x45,
|
||||
0x80,0xda,0x54,0x09,0x6d,0x24,0xf2,0x2b,0x5e,0x38,0x40,0x1e,0x79,0x3d,0x2b,0x73,
|
||||
0xc0,0x09,0x00,0x0e,0x40,0x57,0x15,0x96,0xc5,0x6d,0xd3,0x76,0xe6,0xa0,0x5a,0x60,
|
||||
0x46,0xb6,0x41,0x6b,0x92,0x23,0x44,0x65,0x2d,0x36,0x9f,0x64,0xa4,0x01,0x5d,0xd5,
|
||||
0x05,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,
|
||||
0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x1f,0xff,0xd9};
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,61 @@
|
|||
// JPEGDEC example for Adafruit GFX displays
|
||||
|
||||
#include "JPEGDEC.h"
|
||||
// Sample image (truncated) containing a 320x240 Exif thumbnail
|
||||
// if an image doesn't display, it may have been created using progressive, open gimp, export as a jpg, remove progressive.
|
||||
|
||||
#include "thumb_test.h"
|
||||
//#include "ncc1701.h" //http://clipart-library.com/clip-art/uss-enterprise-silhouette-11.htm
|
||||
//#include "batman.h" //http://clipart-library.com/clipart/batman-clip-art_19.htm
|
||||
|
||||
#include <M5Stack.h>
|
||||
|
||||
#define DISPLAY_WIDTH 320
|
||||
#define DISPLAY_HEIGHT 240
|
||||
|
||||
|
||||
JPEGDEC jpeg;
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
|
||||
M5.Lcd.drawBitmap((int16_t)pDraw->x, (int16_t)pDraw->y, (int16_t)pDraw->iWidth, (int16_t)pDraw->iHeight, pDraw->pPixels);
|
||||
return 1;
|
||||
} /* JPEGDraw() */
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
|
||||
Serial.println("Starting...");
|
||||
|
||||
M5.Lcd.begin();
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
} /* setup() */
|
||||
|
||||
void loop() {
|
||||
int i;
|
||||
long lTime;
|
||||
int iOption[4] = {0, JPEG_SCALE_HALF, JPEG_SCALE_QUARTER, JPEG_SCALE_EIGHTH};
|
||||
int iCenterX[4] = {0,80,120,140};
|
||||
int iCenterY[4] = {0,60,90,105};
|
||||
|
||||
for (i=0; i<4; i++)
|
||||
{
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
M5.Lcd.startWrite(); // Not sharing TFT bus on PyPortal, just CS once and leave it
|
||||
if (jpeg.openFLASH((uint8_t *)thumb_test, sizeof(thumb_test), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)ncc1701, sizeof(ncc1701), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)batman, sizeof(batman), JPEGDraw))
|
||||
|
||||
{
|
||||
lTime = micros();
|
||||
if (jpeg.hasThumb()) {jpeg.decode(iCenterX[i],iCenterY[i],JPEG_EXIF_THUMBNAIL | iOption[i]); } else { jpeg.decode(iCenterX[i],iCenterY[i], iOption[i]); }
|
||||
{
|
||||
lTime = micros() - lTime;
|
||||
Serial.printf("%d x %d image, decode time = %d us\n", jpeg.getWidth() >> i, jpeg.getHeight() >> i, (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
delay(2000); // pause between images
|
||||
} // for i
|
||||
} /* loop() */
|
|
@ -0,0 +1,845 @@
|
|||
//
|
||||
// batman-5
|
||||
// Data size = 13342 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 240, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t batman[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x47,
|
||||
0x00,0x47,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0xf0,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1e,0x00,0x01,0x00,0x02,0x02,0x03,0x01,0x01,0x01,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x09,0x06,0x07,0x04,0x05,0x0a,0x03,0x01,
|
||||
0x02,0xff,0xc4,0x00,0x49,0x10,0x00,0x01,0x03,0x03,0x03,0x02,0x04,0x03,0x05,0x04,
|
||||
0x05,0x0a,0x04,0x07,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x06,0x07,0x08,0x11,
|
||||
0x12,0x21,0x09,0x13,0x31,0x41,0x14,0x22,0x51,0x15,0x23,0x61,0x71,0x81,0x32,0x42,
|
||||
0x52,0x62,0x24,0x33,0x82,0x91,0x92,0x16,0x17,0x18,0x53,0x63,0x72,0xa1,0xb1,0xb2,
|
||||
0xc1,0x73,0x93,0xa2,0xc2,0x19,0x34,0x43,0x44,0x83,0x84,0xc3,0xff,0xc4,0x00,0x1c,
|
||||
0x01,0x01,0x00,0x01,0x05,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x03,0x01,0x04,0x05,0x06,0x07,0x02,0x08,0xff,0xc4,0x00,0x38,0x11,0x00,
|
||||
0x01,0x03,0x02,0x05,0x01,0x06,0x03,0x06,0x06,0x03,0x01,0x00,0x00,0x00,0x00,0x01,
|
||||
0x00,0x02,0x03,0x04,0x11,0x05,0x06,0x12,0x21,0x31,0x51,0x13,0x22,0x41,0x61,0x71,
|
||||
0x81,0x07,0x32,0x91,0x15,0x42,0x62,0x92,0xa1,0xb1,0x14,0x23,0x52,0x72,0x82,0xa2,
|
||||
0x33,0xb2,0xc1,0xf0,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,
|
||||
0x3f,0x00,0xb5,0x3a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,
|
||||
0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,
|
||||
0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,
|
||||
0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,
|
||||
0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0xa2,0xae,0xf8,
|
||||
0x37,0xe7,0x8d,0x6d,0x27,0x1e,0x36,0xd8,0x69,0x66,0xff,0x00,0xa8,0xd3,0xd8,0x2b,
|
||||
0xb7,0xd9,0x4a,0x8f,0x97,0x1d,0x27,0x90,0x24,0x49,0x20,0x82,0x96,0xc1,0x1d,0x92,
|
||||
0x08,0x52,0xc8,0xe0,0x70,0x3a,0x94,0x92,0x29,0x55,0x4a,0xf3,0xf3,0xa5,0x5e,0x23,
|
||||
0xba,0xd3,0xa6,0xda,0xbb,0x71,0xce,0x66,0xe4,0x6f,0xe5,0x48,0xbb,0xbc,0x17,0x75,
|
||||
0xb2,0x5d,0x1c,0x26,0x1c,0x84,0x03,0xd9,0x2d,0x20,0x76,0x8e,0x52,0x3b,0x25,0x4d,
|
||||
0x81,0xc7,0x60,0x42,0x87,0x29,0x37,0x13,0xb5,0xfd,0xec,0xe9,0xa6,0xea,0xad,0x4d,
|
||||
0x8c,0x6e,0xe8,0x2d,0xb9,0x3a,0x1a,0x2e,0x4b,0xc6,0x6e,0x4a,0x4a,0x26,0xb3,0xc1,
|
||||
0xe1,0x4a,0x48,0xe7,0x87,0x5b,0xf4,0x3d,0x68,0x27,0x80,0xa1,0xd4,0x12,0x4f,0x48,
|
||||
0x22,0xdf,0xb4,0xa5,0x28,0x89,0x4a,0x56,0xa2,0xdc,0xd6,0xe0,0xa0,0xed,0xab,0x0a,
|
||||
0xb2,0xe5,0xd7,0x68,0xe1,0xfb,0x23,0xb7,0xc8,0x96,0xdb,0x82,0x81,0x3d,0x4c,0xb0,
|
||||
0xf7,0x52,0x54,0xf2,0x78,0xe7,0x92,0x8e,0x02,0xf8,0xe3,0xe6,0x09,0x29,0xec,0x48,
|
||||
0x20,0x8b,0x6e,0xd2,0xb5,0xde,0x79,0xb8,0x9d,0x2f,0xd3,0x06,0x63,0x39,0x95,0xea,
|
||||
0x06,0x39,0x62,0x32,0x99,0x4c,0x88,0xed,0x4b,0xb9,0x34,0x97,0x5f,0x69,0x43,0x94,
|
||||
0xb8,0xdb,0x7d,0x5d,0x4b,0x49,0x1f,0xbc,0x90,0x47,0x7a,0xc5,0xac,0x7b,0xdb,0xd0,
|
||||
0x4c,0x86,0x40,0x62,0x26,0xad,0xe2,0x69,0x70,0x9e,0x00,0x97,0x72,0x6e,0x30,0x27,
|
||||
0xe8,0x0b,0xa5,0x22,0x88,0xb7,0x6d,0x2b,0x52,0xe8,0xc6,0xe2,0xf1,0xfd,0x72,0xcd,
|
||||
0x75,0x22,0xcb,0x8e,0x2d,0xb9,0x50,0xf0,0xdb,0x83,0x36,0xc5,0xcf,0x69,0xd0,0xe2,
|
||||
0x25,0x3a,0xa6,0xca,0x96,0xb4,0x11,0xdb,0xa5,0x2b,0x0a,0x6c,0x7a,0xf2,0x5b,0x51,
|
||||
0xe7,0x82,0x2b,0x6d,0x51,0x12,0x94,0xa5,0x11,0x29,0x51,0xd3,0x74,0xdb,0xec,0xd3,
|
||||
0x3d,0xab,0x5b,0xdf,0x8f,0x79,0xb8,0x0b,0xee,0x5f,0xd0,0x15,0x1f,0x17,0xb6,0x38,
|
||||
0x15,0x29,0x44,0x8e,0x52,0x5e,0x3d,0xc3,0x08,0x3c,0x83,0xd4,0xbe,0xe4,0x77,0x4a,
|
||||
0x55,0xe9,0x55,0x05,0x9d,0x78,0x8f,0xeb,0x7e,0x67,0xac,0xb0,0x35,0x05,0x8c,0x9d,
|
||||
0xcb,0x12,0xed,0xab,0xe2,0x05,0x86,0xde,0xa5,0x26,0xda,0xd3,0x24,0x82,0xa6,0x9c,
|
||||
0x68,0x9f,0xbe,0xeb,0xe3,0xe6,0x52,0xf9,0x51,0xed,0xc1,0x48,0x4a,0x42,0x48,0xbd,
|
||||
0x04,0x52,0xa3,0x3e,0xca,0xf7,0xc7,0x8a,0x6e,0xef,0x15,0x2d,0x37,0xe5,0x58,0xf3,
|
||||
0xdb,0x73,0x21,0x77,0x5c,0x79,0x4b,0xe4,0xf4,0x8e,0x01,0x91,0x1c,0x9f,0xdb,0x64,
|
||||
0xa9,0x40,0x7f,0x12,0x09,0x01,0x5e,0xa9,0x52,0xe4,0xc5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xad,
|
||||
0x05,0xbc,0xed,0xd9,0xd9,0x36,0x91,0xa5,0x0e,0xdf,0xa5,0xa5,0xa9,0xf9,0x35,0xc7,
|
||||
0xae,0x35,0x8a,0xd0,0xb5,0x11,0xf1,0x52,0x00,0x1c,0xad,0x5c,0x77,0x0d,0x36,0x14,
|
||||
0x95,0x2c,0xf6,0xf5,0x4a,0x41,0x05,0x69,0xa2,0x2c,0x1b,0x7f,0x1b,0xec,0xb4,0xed,
|
||||
0x3f,0x11,0xfb,0x22,0xcc,0xa6,0x2e,0x9a,0x95,0x76,0x60,0x9b,0x7d,0xbd,0x47,0xa9,
|
||||
0x10,0x9b,0x3c,0x8f,0x8a,0x7c,0x7f,0x08,0x23,0xe5,0x41,0xee,0xb2,0x0f,0xb0,0x51,
|
||||
0x14,0xdb,0x61,0xd1,0xad,0x69,0xdc,0xee,0x55,0x3b,0x22,0x83,0x8c,0x5f,0xf2,0xeb,
|
||||
0x9d,0xdd,0xe5,0x4a,0x93,0x7b,0x90,0xc9,0x6d,0x87,0x5c,0x57,0x72,0x4c,0x87,0x3a,
|
||||
0x5a,0x1f,0x82,0x7a,0x87,0x00,0x70,0x07,0x02,0xb9,0x38,0x46,0xb8,0x67,0x39,0x56,
|
||||
0xb3,0x4f,0xc8,0x95,0x61,0xb3,0xea,0x26,0xa4,0x65,0x33,0x1b,0x6e,0x34,0xbc,0x82,
|
||||
0x07,0xc6,0xb8,0xd4,0x85,0x2b,0x84,0x79,0x0c,0xa9,0x41,0x94,0x9f,0xd8,0x4a,0x7a,
|
||||
0x90,0x42,0x12,0x84,0x84,0xf4,0x00,0x79,0xbc,0x7d,0x2d,0xb4,0xe5,0x36,0x4d,0x3f,
|
||||
0xb2,0x43,0xcd,0xaf,0x8d,0xe4,0x59,0x5a,0x18,0xea,0xb8,0xdc,0x19,0x61,0xb6,0x1a,
|
||||
0x5b,0xca,0x25,0x45,0x28,0x42,0x12,0x91,0xd0,0x8e,0x7a,0x01,0xe9,0x04,0x84,0x82,
|
||||
0x7b,0x93,0x5c,0xb7,0x39,0xe6,0xfa,0x8c,0xb2,0xd6,0x36,0x18,0x9a,0xe7,0x3f,0x8d,
|
||||
0x4e,0x37,0xf3,0x3a,0x40,0xe0,0x71,0x72,0xe0,0x6f,0xc0,0x22,0xe4,0x5c,0x45,0x10,
|
||||
0x93,0x92,0xa9,0xd1,0xdf,0x0c,0xcd,0xc1,0x37,0x13,0xce,0x18,0x8c,0x47,0x17,0xc7,
|
||||
0x3e,0x42,0x6f,0x11,0x3a,0xff,0x00,0xe2,0xe0,0x1f,0xf1,0xad,0x0b,0x95,0xe1,0x99,
|
||||
0x9e,0x8b,0x65,0xe9,0x83,0x7d,0xb6,0x5d,0x71,0x1c,0x8a,0x12,0xc3,0xad,0x79,0xc9,
|
||||
0x5c,0x77,0x90,0x41,0xec,0xe3,0x4b,0x1c,0x72,0x39,0x1d,0x96,0x82,0x41,0xf6,0x35,
|
||||
0xe8,0xbe,0xa3,0xbe,0xfd,0x34,0x72,0xc9,0xab,0x5b,0x6d,0xcb,0x9e,0xb8,0x45,0x42,
|
||||
0xae,0xb8,0xe4,0x07,0xef,0x56,0xc9,0xc1,0x3f,0x7b,0x1d,0xc6,0x51,0xe6,0x38,0x90,
|
||||
0x7f,0x85,0xc4,0x20,0xa5,0x43,0xd0,0xf6,0x3c,0x72,0x94,0x91,0xcf,0xb0,0x3f,0x8a,
|
||||
0x35,0xb3,0xd7,0x47,0x4f,0x89,0x44,0xcd,0x0f,0x20,0x5d,0xa0,0x82,0xdb,0x9b,0x5f,
|
||||
0x72,0x6e,0x3a,0xf0,0x7f,0x65,0x33,0xe9,0xc0,0x17,0x69,0x50,0x8f,0x6f,0x3e,0x2f,
|
||||
0x7a,0x9d,0xa6,0x2c,0x47,0xb5,0x67,0xf0,0xda,0xd4,0x9b,0x2b,0x69,0x4b,0x68,0x94,
|
||||
0xfb,0xa2,0x35,0xc9,0xa4,0x8e,0x07,0x77,0x82,0x48,0x77,0xb0,0x3f,0xd6,0x24,0xa9,
|
||||
0x47,0xd5,0x75,0x62,0xda,0x35,0xe2,0x3d,0xa0,0xda,0xd2,0xa6,0x63,0x43,0xcc,0x5a,
|
||||
0xc6,0x2e,0xce,0x27,0xab,0xec,0xcc,0xa1,0x22,0x03,0x80,0xf3,0xc7,0x48,0x71,0x44,
|
||||
0xb2,0xa5,0x7f,0x2a,0x1c,0x51,0x3f,0x4a,0xa0,0xf9,0x98,0x65,0xd2,0x0e,0x15,0x6a,
|
||||
0xca,0x9e,0x64,0x26,0xd1,0x72,0x9d,0x2a,0xdf,0x1d,0xce,0x7b,0x97,0x63,0xa1,0x85,
|
||||
0xb9,0xc8,0xfa,0x71,0x25,0xbe,0x0f,0xb9,0x0a,0xfa,0x57,0x47,0x5f,0x48,0x31,0xed,
|
||||
0x90,0x5d,0x86,0xfc,0x8f,0x70,0x6c,0x7e,0x85,0x58,0xaf,0x54,0x51,0x25,0xb1,0x3e,
|
||||
0x33,0x72,0x23,0x3c,0xdc,0x98,0xee,0x0e,0xa4,0x3a,0xd2,0xc2,0x90,0xa1,0xf5,0x04,
|
||||
0x76,0x22,0xa0,0xc7,0x8c,0xac,0xaf,0x87,0xda,0x4c,0x06,0xf9,0xe3,0xcf,0xca,0x21,
|
||||
0xb7,0xf9,0xfd,0xcc,0x95,0x7f,0xed,0xaa,0x78,0xd3,0xdd,0x6b,0xcf,0xf4,0x99,0x6e,
|
||||
0x1c,0x33,0x34,0xbf,0x62,0xe9,0x75,0x41,0x6e,0xb5,0x6a,0xb8,0x3a,0xc3,0x6e,0x91,
|
||||
0xe8,0x56,0x84,0xa8,0x25,0x5f,0xa8,0x35,0x98,0xea,0xc6,0xf0,0xb5,0x77,0x5c,0xf0,
|
||||
0x48,0x98,0x7e,0x77,0x98,0x3b,0x91,0xd8,0xa2,0x4d,0x6e,0xe0,0xc3,0x52,0x22,0x47,
|
||||
0x43,0x89,0x79,0x08,0x71,0x01,0x45,0xd4,0x36,0x95,0xab,0xe5,0x75,0x7d,0x94,0x48,
|
||||
0xf4,0xfa,0x57,0xb4,0x5a,0x6d,0x4b,0x52,0xcf,0x2a,0x25,0x47,0x80,0x39,0x27,0xd8,
|
||||
0x76,0x15,0xf9,0x5d,0xd5,0xa3,0x09,0xc8,0x2f,0xf6,0x1b,0xb5,0xee,0xd9,0x64,0xb8,
|
||||
0x5c,0x6d,0x16,0x8f,0x2f,0xed,0x19,0xd1,0x23,0x2d,0xd6,0x61,0xf9,0x9d,0x5e,0x59,
|
||||
0x79,0x49,0x04,0x36,0x15,0xd0,0xbe,0x0a,0xb8,0x07,0xa4,0xfd,0x2b,0x8f,0x8e,0xe3,
|
||||
0x37,0x8c,0xc2,0xf1,0x1e,0xd3,0x61,0xb5,0x4d,0xbd,0xdd,0x24,0x1e,0x96,0x60,0xdb,
|
||||
0xa3,0xae,0x43,0xee,0x1f,0xa2,0x50,0x80,0x54,0x7f,0x41,0x44,0x56,0x51,0xe0,0x7b,
|
||||
0x95,0xb7,0x17,0x33,0xd5,0x5c,0x65,0x47,0x97,0x67,0x5b,0xe0,0xdc,0x5b,0x04,0xfa,
|
||||
0x06,0x1c,0x75,0xb5,0xf0,0x3f,0xfd,0x94,0x73,0xf9,0x0a,0xb6,0x79,0xd3,0xa3,0x5b,
|
||||
0x22,0x3b,0x2a,0x64,0x86,0xa2,0x45,0x69,0x3d,0x4e,0x3e,0xfa,0xc2,0x10,0x81,0xf5,
|
||||
0x2a,0x3d,0x80,0xaf,0x35,0x18,0x7e,0xa1,0x6a,0x66,0xd6,0x33,0xab,0xdb,0x76,0x1b,
|
||||
0x8c,0xfc,0x1b,0x2b,0xf8,0x75,0x5a,0xee,0x28,0x0d,0x20,0x48,0x6d,0xb5,0x29,0x0e,
|
||||
0x29,0xa5,0x05,0xa4,0xf4,0x2b,0xa9,0x08,0x27,0x8e,0x14,0x08,0xe3,0xb7,0x71,0x5d,
|
||||
0x26,0xa0,0x6b,0x0e,0x75,0xaa,0xef,0xb4,0xee,0x67,0x98,0xdf,0x32,0x95,0x34,0x4a,
|
||||
0x9a,0x17,0x6b,0x83,0xb2,0x12,0xd1,0xfe,0x44,0xad,0x44,0x23,0xfb,0x20,0x51,0x15,
|
||||
0xea,0x6b,0x3f,0x89,0x5e,0x83,0x68,0xd2,0xa4,0xc5,0x73,0x2c,0x4e,0x5d,0x78,0x65,
|
||||
0x3c,0xfd,0x9d,0x8b,0x24,0x4d,0x24,0xff,0x00,0x09,0x78,0x10,0xca,0x48,0x3e,0xa0,
|
||||
0xb9,0xc8,0xfa,0x7b,0x55,0x72,0xee,0x1f,0xc5,0xc3,0x55,0x35,0x61,0x99,0x16,0xac,
|
||||
0x25,0x96,0xf4,0xce,0xc2,0xea,0x14,0xda,0xdc,0x80,0xf1,0x7a,0xe4,0xe0,0x3d,0x89,
|
||||
0xf8,0x92,0x13,0xe5,0xf6,0xe3,0x8f,0x29,0x29,0x50,0x3c,0xfc,0xe7,0xb7,0x10,0x5a,
|
||||
0x94,0x45,0xf5,0x99,0x31,0xfb,0x84,0xa7,0xa5,0x4a,0x7d,0xc9,0x32,0x5e,0x59,0x71,
|
||||
0xc7,0x9e,0x59,0x5a,0xd6,0xa2,0x79,0x25,0x44,0xf7,0x24,0xfd,0x4d,0x7c,0xab,0xed,
|
||||
0x0a,0x2a,0xe7,0x4c,0x62,0x32,0x3b,0xad,0xe7,0x12,0xda,0x7f,0x32,0x78,0x1f,0xf3,
|
||||
0xac,0x9b,0x57,0x30,0xe4,0xe9,0xe6,0xaa,0xe6,0x38,0xba,0x09,0x2d,0x59,0x6f,0x12,
|
||||
0xed,0xe8,0x51,0x24,0xf5,0x21,0xa7,0x96,0x84,0x9e,0xff,0x00,0x50,0x90,0x6a,0x13,
|
||||
0x2b,0x04,0xa2,0x1b,0xf7,0x88,0x27,0xd8,0x58,0x1f,0xdc,0x2a,0xdb,0xc5,0x7f,0x78,
|
||||
0x2d,0xdf,0x35,0xd3,0x19,0xd6,0x9d,0x47,0xc5,0xcd,0xd2,0xca,0xab,0x6d,0xc3,0xc9,
|
||||
0x87,0x90,0x46,0x65,0x61,0x84,0x4a,0x4a,0x42,0xd4,0xcf,0x99,0xc7,0x42,0x89,0x42,
|
||||
0x87,0x53,0x67,0x9e,0xa4,0x2f,0x85,0x02,0x95,0x77,0xbd,0x7d,0x8b,0x6f,0x7e,0xc7,
|
||||
0xbb,0xac,0x1d,0x4c,0xcb,0x11,0xec,0xfa,0x87,0x69,0x69,0x3f,0x6b,0xd9,0x90,0xae,
|
||||
0x10,0xe8,0xf4,0xf8,0xa8,0xc0,0x92,0xa5,0x34,0xa3,0xc7,0x23,0xb9,0x6d,0x44,0x25,
|
||||
0x44,0x82,0x85,0x2f,0x45,0x6c,0x47,0x43,0xf4,0xda,0xfd,0xb4,0xb9,0x96,0x98,0xd7,
|
||||
0x57,0x73,0xac,0x67,0x2d,0x77,0xcf,0xbb,0x5b,0xee,0x4d,0x25,0xb1,0x0e,0x58,0x69,
|
||||
0xb4,0x3a,0xc8,0x42,0x4f,0x28,0x5a,0x14,0x84,0x90,0xbe,0x79,0x3c,0x36,0xb4,0x9e,
|
||||
0x3a,0x49,0x83,0x3a,0xe5,0xa3,0x99,0xdf,0x87,0x9e,0xbe,0xd9,0xf2,0x7c,0x4a,0xe7,
|
||||
0x24,0x5b,0x04,0x85,0x4a,0xb0,0x5e,0xf8,0xe4,0x38,0x80,0x7e,0x78,0xb2,0x40,0xe0,
|
||||
0x15,0x74,0x9e,0x95,0xa7,0xd1,0x69,0x57,0x23,0x8e,0x4a,0x53,0xa3,0x61,0x19,0xc2,
|
||||
0x8f,0x13,0xc4,0xe7,0xc2,0x5c,0x34,0x48,0xc2,0x43,0x6f,0x71,0xa8,0x0e,0x76,0x36,
|
||||
0x21,0xc3,0x7b,0x8e,0x9b,0x8f,0x1b,0x4a,0xe8,0x8b,0x5a,0x1c,0xaf,0xf6,0x95,0xa4,
|
||||
0x76,0x8d,0xba,0x6c,0x7b,0x76,0x1a,0x51,0x13,0x27,0xb4,0x94,0x43,0xbc,0xc7,0xe9,
|
||||
0x8f,0x7a,0xb3,0x95,0x82,0xe4,0x19,0x3c,0x77,0x1c,0x73,0xc9,0x6d,0x7c,0x15,0x21,
|
||||
0x7e,0xe3,0xb1,0xe1,0x49,0x50,0x1b,0xba,0xb7,0xf5,0x0a,0x52,0x94,0xa2,0x25,0x29,
|
||||
0x4a,0x22,0x52,0x94,0xa2,0x25,0x29,0x4a,0x22,0xc6,0x35,0x37,0x52,0x2c,0x3a,0x43,
|
||||
0x80,0xdf,0x33,0x2c,0x9e,0x62,0x60,0x58,0xac,0xd1,0x95,0x26,0x4b,0xc7,0x8e,0x48,
|
||||
0x1d,0x92,0x84,0x82,0x47,0x52,0xd4,0xa2,0x94,0x25,0x3e,0xea,0x52,0x47,0xbd,0x79,
|
||||
0xd8,0xdd,0x0e,0xe3,0xb2,0x2d,0xd1,0x6a,0xe5,0xd3,0x34,0xbf,0x28,0xb2,0xca,0xc9,
|
||||
0x8f,0x6c,0xb6,0xa5,0x5c,0xb7,0x02,0x22,0x54,0x4b,0x6d,0x27,0xea,0x7b,0x95,0x29,
|
||||
0x5f,0xbc,0xa5,0x28,0xf0,0x01,0x00,0x4a,0xaf,0x16,0x6d,0xdd,0xab,0x55,0x35,0x14,
|
||||
0x69,0x46,0x35,0x31,0x47,0x14,0xc5,0x24,0xab,0xed,0x37,0x1b,0xe3,0xa6,0x6d,0xcd,
|
||||
0x3c,0xa5,0x43,0x9f,0x52,0x86,0x41,0x52,0x07,0xa7,0xce,0x5c,0xe4,0x10,0x94,0x1a,
|
||||
0xd5,0xbe,0x1e,0x9b,0x50,0xff,0x00,0x48,0x4d,0x4c,0x37,0xec,0x82,0x19,0x73,0x04,
|
||||
0xc7,0x1c,0x43,0xb3,0x12,0xe2,0x0f,0x97,0x3e,0x47,0xab,0x71,0x41,0xf4,0x23,0xd1,
|
||||
0x6b,0xf5,0xf9,0x78,0x07,0x8f,0x30,0x1a,0xc5,0x62,0x98,0x95,0x3e,0x11,0x47,0x25,
|
||||
0x75,0x51,0xb3,0x18,0x2f,0xeb,0xd0,0x0f,0x32,0x76,0x0b,0xd3,0x5a,0x5c,0x6c,0x14,
|
||||
0xae,0xf0,0xc8,0xda,0x18,0xc0,0xb1,0xd6,0x35,0x67,0x2b,0x87,0xd3,0x91,0xdd,0xd8,
|
||||
0x3f,0x62,0xc5,0x75,0x24,0x2a,0x14,0x35,0x8e,0x0b,0xc4,0x1f,0x47,0x1d,0x07,0xb7,
|
||||
0xd1,0xb2,0x3b,0xfc,0xea,0x02,0x46,0xee,0xdf,0x73,0x56,0xad,0xaf,0x69,0x6b,0xf7,
|
||||
0xe7,0xd0,0xd4,0xdc,0x86,0x69,0x54,0x5b,0x2d,0xb1,0xc2,0x78,0x91,0x23,0x8e,0x7a,
|
||||
0x97,0xc7,0x07,0xcb,0x40,0x21,0x4a,0x20,0x8f,0x64,0x82,0x0a,0x85,0x6e,0x69,0x93,
|
||||
0x22,0xda,0x60,0x3f,0x2e,0x53,0xcd,0x43,0x85,0x19,0xa5,0x3a,0xeb,0xce,0xa8,0x21,
|
||||
0xb6,0x9b,0x48,0xe5,0x4a,0x24,0xf6,0x00,0x00,0x4f,0x3e,0xc0,0x55,0x13,0x6e,0xa7,
|
||||
0x5c,0x2f,0x5b,0xb6,0xd7,0xe9,0x13,0x6d,0x31,0xa5,0xcf,0x81,0xe7,0x0b,0x56,0x39,
|
||||
0x6b,0x8e,0xd2,0x96,0xe2,0x98,0x0a,0x21,0x1c,0x36,0x07,0x25,0xc7,0x14,0x4a,0xc8,
|
||||
0xe3,0x9e,0x54,0x13,0xe8,0x91,0x5f,0x2f,0xe0,0x74,0x53,0xe7,0xec,0x7a,0x4c,0x43,
|
||||
0x11,0xff,0x00,0x85,0x9b,0xbb,0xa0,0x1f,0x75,0x80,0xf8,0x0e,0x6e,0x7a,0x02,0x79,
|
||||
0x2b,0x20,0xf2,0x21,0x65,0x9b,0xca,0xb2,0xff,0x00,0x0f,0x5d,0xd3,0x65,0x9b,0x9a,
|
||||
0xc2,0xb2,0x97,0x33,0x08,0x91,0x05,0xca,0xc9,0x35,0xa6,0xd1,0x3e,0x0b,0x45,0x96,
|
||||
0xe4,0x36,0xea,0x14,0xa0,0x92,0x8e,0x48,0xeb,0x41,0x41,0xe4,0x8e,0x01,0x0b,0x47,
|
||||
0x6e,0x41,0x2a,0xd8,0x5b,0xd9,0xcd,0xe1,0xe0,0x3b,0x57,0xd4,0x79,0xd2,0xdd,0x4b,
|
||||
0x66,0x5d,0xa5,0xdb,0x5b,0x08,0x24,0x75,0x38,0xec,0x91,0xe4,0x25,0x29,0x1e,0xff,
|
||||
0x00,0xd6,0x15,0x1e,0x3d,0x92,0xa3,0xed,0x5f,0xce,0xcc,0xf6,0xfd,0xfe,0x8d,0xfa,
|
||||
0x15,0x68,0xc6,0xa5,0x86,0xd5,0x7f,0x94,0xb5,0x5c,0xaf,0x0e,0x34,0x79,0x06,0x53,
|
||||
0x81,0x3c,0xa0,0x1e,0x4f,0x21,0x08,0x4a,0x1b,0xe4,0x76,0x3d,0x05,0x5f,0xbd,0x51,
|
||||
0x5f,0x76,0xfa,0x84,0xce,0xea,0xf7,0x5b,0x80,0x6d,0xfa,0xc6,0xe1,0x9d,0x8d,0x5a,
|
||||
0xae,0xe1,0xfc,0x89,0x6c,0x2b,0x80,0xeb,0xcd,0xa5,0x4a,0x7d,0x01,0x7e,0xde,0x4b,
|
||||
0x29,0x75,0x3c,0x8f,0xdf,0x5a,0x87,0x72,0x91,0x58,0xc8,0x28,0xe8,0xb1,0x4c,0xd1,
|
||||
0x2c,0xd4,0x2d,0xd3,0x49,0x13,0x8c,0x84,0x8e,0x03,0x23,0xdc,0x91,0xd3,0x51,0x1b,
|
||||
0x7a,0xf9,0x2f,0x44,0x96,0xc7,0x63,0xc9,0x59,0x4d,0x83,0x62,0x09,0xd5,0x1d,0x8a,
|
||||
0xe9,0xb6,0x10,0xed,0xd1,0x8b,0x16,0x44,0x87,0x91,0x92,0x2a,0xe2,0xe4,0x62,0xef,
|
||||
0x42,0xa4,0xa5,0x6b,0x5b,0x2a,0x4f,0x20,0xf6,0x6d,0xd6,0xd2,0x7b,0xfe,0xd3,0x20,
|
||||
0xfa,0x56,0x9f,0xb3,0x78,0x45,0x65,0x96,0xcd,0x4c,0xc7,0x5b,0xba,0x64,0xd6,0x9b,
|
||||
0xd6,0x0e,0xa9,0x49,0x55,0xce,0x44,0x5f,0x31,0x89,0x69,0x65,0x20,0xa9,0x48,0x0d,
|
||||
0x91,0xc7,0xcf,0xc0,0x40,0x52,0x56,0x48,0x2a,0xe4,0x8e,0x05,0x5a,0x24,0xfb,0x95,
|
||||
0xbb,0x1e,0x80,0x1f,0x9b,0x2a,0x2d,0xb2,0x0b,0x65,0x0d,0x07,0x1f,0x71,0x2c,0xb4,
|
||||
0x92,0x48,0x4a,0x13,0xc9,0x20,0x0e,0x49,0x00,0x0f,0xa9,0x00,0x57,0x34,0x0e,0x48,
|
||||
0x15,0x69,0x06,0x7b,0xc7,0x69,0x3b,0x6e,0xc2,0x4b,0x32,0x47,0x3d,0xd6,0x20,0x1b,
|
||||
0x17,0x6e,0x6c,0x6d,0x7d,0xaf,0x71,0xbd,0x87,0x45,0x53,0x13,0x0d,0xae,0x17,0x9e,
|
||||
0x6d,0xc4,0xc5,0x89,0x07,0x5f,0x35,0x1e,0x2c,0x08,0xcd,0x43,0x82,0xc6,0x45,0x3d,
|
||||
0x96,0x23,0xb0,0x90,0x96,0xda,0x6d,0x32,0x16,0x94,0xa1,0x20,0x7a,0x00,0x00,0x00,
|
||||
0x7e,0x15,0xaf,0x6b,0x2f,0xd6,0x2b,0xa2,0x6f,0x7a,0xb9,0x9b,0xdc,0x50,0x79,0x44,
|
||||
0xbb,0xe4,0xe9,0x09,0x20,0xf3,0xd9,0x52,0x16,0xa1,0xff,0x00,0x3a,0xc4,0x2b,0xec,
|
||||
0x6a,0x16,0x96,0xd2,0xc4,0xd7,0x72,0x1a,0xdf,0xd8,0x2c,0x59,0xe4,0xab,0x65,0xdb,
|
||||
0xfe,0xcf,0x6f,0x98,0xbd,0x82,0xdf,0xa8,0x7a,0x0b,0xaa,0xb7,0x6d,0x32,0xba,0x5f,
|
||||
0x6d,0x4d,0x33,0x75,0xb2,0xde,0x60,0x31,0x74,0x6d,0x2e,0x29,0x29,0x5f,0x48,0x2a,
|
||||
0x00,0x74,0x82,0x42,0x9b,0x59,0x42,0x89,0x42,0xd2,0xb4,0xab,0xa5,0x7d,0xf5,0x46,
|
||||
0x8e,0x78,0x78,0x6e,0x1f,0x01,0xd6,0xab,0x85,0xdd,0x8c,0xea,0x3e,0x0d,0xe4,0xa1,
|
||||
0x7d,0x59,0x9d,0xbe,0x59,0x92,0xa9,0xc1,0xd3,0xf3,0x25,0x2d,0x12,0x95,0xa8,0x93,
|
||||
0xc1,0x50,0x77,0xa0,0x72,0x01,0x04,0x90,0x2b,0xbb,0xf0,0xfc,0xde,0xae,0x35,0x3b,
|
||||
0x0d,0x46,0x8e,0x6a,0xe4,0xc8,0x4c,0xc3,0x65,0x01,0xab,0x35,0xd2,0xee,0x52,0x22,
|
||||
0xba,0xc2,0x7b,0x88,0x8f,0xad,0x5d,0x90,0x51,0xd2,0x0b,0x6b,0x51,0xe0,0x8e,0x13,
|
||||
0xc8,0x29,0x40,0x54,0x97,0xb9,0xce,0xd1,0x7d,0x14,0x7e,0xf9,0x9a,0xe4,0x19,0x46,
|
||||
0x19,0x77,0x89,0x6e,0x6d,0x57,0x0b,0x4d,0xbc,0x79,0x6f,0xcf,0x61,0x69,0x3d,0x6d,
|
||||
0x86,0x54,0xb7,0xdc,0x2b,0x73,0x90,0x12,0x85,0x36,0x86,0xcf,0x7e,0x49,0x3e,0xa2,
|
||||
0xd9,0xd2,0xcd,0x1b,0x8b,0x09,0xf4,0xd9,0x65,0x1b,0x14,0x32,0x34,0x3c,0x7b,0xee,
|
||||
0xaa,0x7b,0x75,0xfa,0x5e,0xbd,0x21,0xd7,0x0b,0xfe,0x3e,0xed,0xd6,0xe1,0x7c,0x90,
|
||||
0x92,0x99,0x0f,0x5d,0x2e,0xce,0xa5,0x52,0xe6,0x3a,0xb1,0xcb,0x92,0x1c,0x00,0x92,
|
||||
0x9f,0x31,0x7d,0x4e,0x24,0x29,0x4a,0x51,0x42,0xd0,0xa2,0xa3,0xd5,0xcd,0x6a,0x0a,
|
||||
0xcb,0xb5,0x5b,0x51,0x2e,0xfa,0xc7,0xa8,0xd9,0x36,0x6d,0x77,0x47,0xf4,0xeb,0xbc,
|
||||
0xc5,0xcb,0x79,0x0d,0xf2,0x50,0xc2,0x54,0x78,0x43,0x69,0x27,0xbf,0x4a,0x12,0x12,
|
||||
0x81,0xcf,0x7e,0x12,0x2b,0x11,0xac,0x9b,0x2f,0xa4,0x03,0xca,0xc6,0x3a,0xc5,0xc6,
|
||||
0xdc,0x2c,0x92,0xdb,0x87,0xb9,0x71,0xd3,0xbb,0xfe,0x4c,0x8e,0xb2,0x8b,0x55,0xc6,
|
||||
0x04,0x15,0x81,0xfb,0x3c,0x48,0x6e,0x52,0x81,0x3f,0x8f,0x31,0x87,0x1f,0x99,0xae,
|
||||
0x8a,0x4d,0xbe,0x4c,0x36,0x22,0x3c,0xfb,0x0e,0x32,0xd4,0xb6,0xcb,0xd1,0xd6,0xb4,
|
||||
0x90,0x1d,0x40,0x5a,0x90,0x54,0x93,0xee,0x3a,0x90,0xb4,0xf3,0xf5,0x49,0x1e,0xd5,
|
||||
0x28,0x74,0xff,0x00,0x4d,0x5e,0xff,0x00,0xe1,0xe1,0xaa,0xd9,0x83,0x8c,0xa9,0x28,
|
||||
0x7b,0x27,0xb6,0x21,0xa5,0x29,0x3c,0x75,0x25,0x82,0x1b,0xea,0x1f,0x51,0xd5,0x39,
|
||||
0x49,0xe7,0xea,0x08,0xf6,0xa9,0x39,0xb0,0xcd,0xbe,0x60,0x3b,0x8b,0xdb,0x36,0x2e,
|
||||
0xf6,0x6f,0x66,0x17,0x55,0xe2,0x99,0x24,0xff,0x00,0x85,0x48,0x70,0xa0,0x3a,0x85,
|
||||
0xa1,0x0b,0x2c,0xba,0x47,0x75,0x35,0xd6,0xe2,0x57,0xd2,0x08,0xf9,0x90,0x3d,0x8a,
|
||||
0x92,0xad,0x13,0x11,0xcd,0x50,0xe1,0x50,0xcf,0x57,0x33,0x4b,0xa3,0x8e,0x5e,0xcc,
|
||||
0xdb,0x91,0xfc,0xb0,0x76,0xff,0x00,0x23,0x6e,0x47,0x2a,0x46,0xc6,0x5c,0x40,0xf2,
|
||||
0x55,0xcd,0xa4,0x96,0xcf,0xb6,0xf5,0x57,0x0c,0xb7,0x71,0xd5,0xf1,0x77,0xa8,0x51,
|
||||
0xf8,0xfa,0xf5,0xbe,0x84,0xff,0x00,0xde,0xb7,0x27,0x88,0x76,0x1a,0xbc,0x33,0x77,
|
||||
0x59,0xdb,0x7e,0x52,0x9b,0x8d,0x72,0x75,0x8b,0xa3,0x0b,0x50,0xfe,0xb0,0x3c,0xca,
|
||||
0x14,0xb2,0x3f,0x0f,0x37,0xcd,0x4f,0xf6,0x4d,0x5d,0x76,0x3b,0x81,0x63,0x18,0x7c,
|
||||
0x66,0xe3,0xd8,0x71,0xcb,0x4d,0x92,0x3b,0x60,0x04,0x35,0x6e,0x82,0xd4,0x74,0xa4,
|
||||
0x0f,0x4e,0x02,0x12,0x38,0xaa,0xca,0xf1,0x87,0xc2,0xdc,0x85,0xa8,0xd8,0x06,0x58,
|
||||
0x13,0xcb,0x17,0x1b,0x5b,0xd6,0xd5,0x28,0x0f,0x45,0xc7,0x77,0xcc,0xee,0x7f,0x11,
|
||||
0x27,0xb7,0xfb,0xa7,0xe9,0x5a,0x36,0x03,0x9e,0x1b,0x98,0x73,0x24,0x31,0xb6,0x2e,
|
||||
0xcd,0xa5,0x8f,0x68,0xb9,0xbd,0xce,0xcf,0xbf,0x02,0xdb,0x33,0xcd,0x4c,0xf8,0xb4,
|
||||
0x46,0x56,0x82,0xd9,0x26,0xeb,0x67,0x6d,0x8f,0x53,0x9b,0x5c,0xc7,0x5c,0x7f,0x08,
|
||||
0xbc,0x2d,0x0c,0x5e,0xa1,0x24,0x75,0x74,0x27,0xd1,0x32,0x5b,0x1f,0xc6,0xdf,0x24,
|
||||
0xf1,0xfb,0xc9,0x2a,0x4f,0xaf,0x49,0x17,0x17,0xac,0x3a,0x51,0x8a,0xee,0x4f,0x49,
|
||||
0x66,0xe3,0x57,0x75,0x33,0x3a,0xcd,0x76,0x61,0x12,0x21,0x5c,0x63,0x10,0xe1,0x61,
|
||||
0xce,0x9e,0xa6,0x64,0xb2,0xa0,0x78,0x24,0x72,0x08,0x20,0xf0,0xa4,0x92,0x93,0xca,
|
||||
0x54,0x41,0xf3,0xfd,0x03,0x15,0xbc,0x5d,0x6c,0x17,0x5b,0xe4,0x3b,0x74,0x89,0x56,
|
||||
0x9b,0x52,0xd9,0x44,0xe9,0x6d,0x20,0xa9,0x11,0x8b,0xa5,0x41,0xa2,0xbe,0x3f,0x64,
|
||||
0x28,0xa0,0x80,0x4f,0x6e,0x78,0x1c,0xf2,0x40,0x36,0x77,0xe1,0x55,0xb9,0xb3,0x93,
|
||||
0x63,0x92,0x34,0x86,0xff,0x00,0x28,0xae,0xe7,0x68,0x6d,0x52,0xec,0x6e,0x39,0xea,
|
||||
0xec,0x4e,0x79,0x71,0x8e,0x7d,0xcb,0x6a,0x57,0x52,0x47,0xaf,0x42,0x88,0xf4,0x6e,
|
||||
0xa9,0xf1,0x13,0x01,0x3b,0x66,0x0c,0x34,0xda,0x68,0x48,0xd7,0xa7,0x9d,0xac,0x43,
|
||||
0xbd,0x5b,0xb5,0xff,0x00,0x09,0x07,0x80,0x90,0x3f,0xee,0x3b,0x82,0xa2,0x8e,0x96,
|
||||
0xea,0x16,0x7b,0xe1,0xbb,0xba,0x59,0x4c,0x5c,0x18,0x71,0xf6,0x22,0xb8,0x22,0x5d,
|
||||
0xed,0xe8,0x3c,0x33,0x77,0xb7,0xa8,0x85,0x25,0xc6,0xc9,0xed,0xcf,0x1c,0x2d,0x0a,
|
||||
0xf5,0x4a,0x81,0x4a,0xbf,0x7d,0x26,0xfa,0x30,0x3c,0xe6,0xc9,0xa9,0x98,0x6d,0x9f,
|
||||
0x2a,0xc6,0xe7,0xb5,0x74,0xb1,0x5d,0xa3,0x22,0x5c,0x49,0x4d,0x1e,0xcb,0x42,0x87,
|
||||
0xa1,0x1e,0xa9,0x50,0x3c,0x85,0x24,0xf7,0x49,0x04,0x10,0x08,0x22,0xa0,0xcf,0x88,
|
||||
0x86,0xd4,0xd1,0xaf,0xba,0x60,0xbc,0x8e,0xc3,0x0b,0xcc,0xce,0xf1,0xa6,0x56,0xf4,
|
||||
0x50,0xcb,0x7c,0xbb,0x3e,0x28,0xf9,0x9c,0x8a,0x78,0xee,0xa2,0x3b,0xad,0xb1,0xdf,
|
||||
0xe6,0xe5,0x20,0x7d,0xe1,0x35,0x1e,0xbc,0x23,0xb7,0x7a,0xbc,0x1b,0x32,0xff,0x00,
|
||||
0x33,0x19,0x54,0xf2,0x9c,0x7e,0xfa,0xf1,0x72,0xc2,0xf4,0x97,0x78,0x4c,0x39,0xe7,
|
||||
0xd6,0x38,0xea,0xf4,0x4b,0xfe,0xc0,0x1f,0xeb,0x40,0x00,0x12,0xe9,0x35,0xd0,0x72,
|
||||
0x8e,0x63,0x8f,0x32,0x61,0xc2,0x73,0xb4,0xad,0xd9,0xe3,0xa1,0xea,0x3c,0x9d,0xc8,
|
||||
0xf7,0x1e,0x0a,0x09,0x63,0xec,0xdd,0x6f,0x05,0x71,0x34,0xa5,0x2b,0x77,0x51,0x25,
|
||||
0x29,0x4a,0x22,0x52,0x94,0xa2,0x25,0x46,0x0f,0x10,0xbd,0xd2,0x0d,0xb0,0x68,0x24,
|
||||
0xe9,0x56,0xa9,0x48,0x67,0x35,0xbf,0xf5,0x5b,0x6c,0x68,0x3d,0xd4,0xda,0xc8,0xfb,
|
||||
0xd9,0x20,0x7f,0xb2,0x41,0xe4,0x1e,0xe3,0xad,0x4d,0x82,0x08,0x35,0x27,0xeb,0xcf,
|
||||
0x9f,0x88,0x76,0xe5,0x17,0xb9,0x1d,0xc5,0xde,0x26,0x40,0x96,0xe3,0xd8,0x95,0x80,
|
||||
0xaa,0xd1,0x65,0x6c,0xab,0xee,0xd4,0xda,0x14,0x43,0xb2,0x12,0x07,0x6f,0xbd,0x70,
|
||||
0x29,0x41,0x5e,0xa5,0x01,0xb0,0x7f,0x64,0x00,0x45,0xa1,0x30,0x1c,0x1e,0xf3,0xaa,
|
||||
0x39,0xc5,0x9b,0x16,0xb1,0xb0,0x65,0xde,0xaf,0x12,0xd1,0x16,0x3a,0x54,0x4f,0x1d,
|
||||
0x4a,0x3d,0xd4,0xb2,0x01,0xe1,0x29,0x1c,0xa9,0x4a,0xf6,0x00,0x9f,0x6a,0xbf,0x9d,
|
||||
0x06,0xd1,0x9b,0x2e,0x81,0x69,0x5d,0x8f,0x0a,0xb2,0x24,0x29,0x88,0x0d,0x73,0x22,
|
||||
0x57,0x4f,0x0b,0x97,0x21,0x5d,0xdd,0x79,0x5d,0xcf,0x75,0x2b,0x9e,0x07,0x3f,0x28,
|
||||
0xe9,0x48,0xec,0x91,0x50,0x97,0xc2,0x6f,0x6e,0x7f,0x66,0xda,0x2e,0x5a,0xc1,0x7a,
|
||||
0x8a,0xa1,0x26,0x77,0x5d,0xba,0xc2,0x97,0x12,0x38,0x4b,0x00,0xf0,0xfc,0x81,0xf8,
|
||||
0xa9,0x43,0xcb,0x07,0xb7,0x01,0x0e,0x7a,0x85,0x0a,0xb1,0x95,0xad,0x2d,0x21,0x4b,
|
||||
0x5a,0x82,0x10,0x90,0x4a,0x94,0xa3,0xc0,0x03,0xdc,0x9a,0xf9,0x4b,0xe2,0x5e,0x63,
|
||||
0x38,0x85,0x77,0xd9,0x54,0xee,0xfe,0x5c,0x27,0xbd,0xe6,0xff,0x00,0x1f,0xcb,0xc7,
|
||||
0xad,0xd6,0x46,0x06,0x69,0x1a,0x8f,0x8a,0xe8,0xb3,0xec,0x2e,0x06,0xa3,0xe1,0x77,
|
||||
0xac,0x5e,0xea,0xe4,0x96,0xad,0x97,0x78,0xab,0x87,0x28,0xc3,0x74,0xb4,0xe9,0x69,
|
||||
0x63,0x85,0x80,0xa1,0xe9,0xc8,0xe4,0x1f,0xc0,0x9a,0xd6,0xfa,0x57,0xb5,0xed,0x24,
|
||||
0xdb,0x5c,0x29,0x77,0x9c,0x67,0x16,0x62,0x14,0xc8,0xcc,0x38,0xf3,0xf7,0x89,0x01,
|
||||
0xc9,0xb3,0x42,0x02,0x0f,0x5f,0x42,0x95,0xd4,0xa4,0xf2,0x9e,0x41,0x43,0x40,0x75,
|
||||
0x7d,0x09,0xae,0xbf,0x6e,0xdb,0xc1,0xc3,0xb7,0x29,0x96,0x66,0xd6,0x2c,0x71,0x0e,
|
||||
0xb2,0xe6,0x3b,0x20,0x06,0x1e,0x7d,0x63,0x8b,0x94,0x52,0x7a,0x7e,0x25,0xb4,0xf6,
|
||||
0x29,0x4f,0x58,0x23,0x83,0xdc,0x05,0x36,0x4f,0x05,0x65,0x29,0xde,0xd5,0xcc,0x67,
|
||||
0x38,0x9e,0x11,0xaf,0x0d,0xa8,0x2f,0x8c,0x1b,0x17,0x32,0xe4,0x5e,0xe0,0x11,0x71,
|
||||
0xc1,0xdb,0xad,0xed,0xd2,0xea,0x71,0xa5,0xdd,0xe0,0xab,0x73,0x77,0x1e,0x28,0x96,
|
||||
0xd7,0x6c,0x93,0x71,0x4d,0x1a,0x7d,0xf9,0x13,0x24,0xa0,0xb5,0x23,0x2c,0x5b,0x6a,
|
||||
0x65,0x2c,0x20,0x8f,0x98,0x45,0x42,0xc0,0x59,0x5f,0x7e,0x3c,0xc5,0x04,0xf4,0xf0,
|
||||
0x4a,0x42,0x89,0x0a,0x4f,0x55,0xe1,0x05,0xa5,0x0b,0x99,0x78,0xcd,0x75,0x36,0x68,
|
||||
0x2a,0x4b,0x08,0x4d,0x8e,0x12,0x95,0xdf,0xa9,0xc5,0xf4,0xbd,0x21,0x47,0xe8,0x40,
|
||||
0x0c,0x80,0x7d,0xfc,0xc5,0x7d,0x2a,0x18,0xee,0x87,0x00,0x6b,0x4e,0x77,0x1b,0xa8,
|
||||
0x38,0xc4,0x06,0xba,0x62,0x45,0xbd,0x3f,0xf0,0x6c,0x36,0x3f,0x61,0x97,0x15,0xe6,
|
||||
0x34,0x80,0x3d,0xf8,0x42,0xd2,0x3f,0x4a,0xba,0x5d,0xa2,0xe8,0xea,0xb4,0x2b,0x6f,
|
||||
0x78,0x86,0x2b,0x26,0x32,0x63,0x5d,0xd1,0x1b,0xe3,0x2e,0x89,0x1c,0x15,0x7c,0x5b,
|
||||
0xc7,0xcc,0x74,0x28,0x8e,0xca,0x28,0xe4,0x37,0xcf,0xd1,0xb1,0x5d,0xc7,0x33,0x33,
|
||||
0x0d,0xcb,0x39,0x59,0x94,0xb8,0x58,0xb1,0xaa,0xd3,0xb9,0xdd,0xce,0x6d,0x83,0x89,
|
||||
0x27,0xd2,0xc2,0xc0,0x00,0x35,0x6c,0x37,0x56,0xb1,0xea,0x92,0x4b,0xbb,0xc1,0x44,
|
||||
0x6f,0x18,0x0d,0x57,0x10,0xec,0x18,0x5e,0x9c,0x44,0x96,0x03,0xd3,0x1e,0x5d,0xee,
|
||||
0xe0,0xc2,0x09,0x0a,0x0d,0x23,0xa9,0xa8,0xfd,0x5f,0x54,0xa9,0x4a,0x7c,0xf1,0xf5,
|
||||
0x68,0x1f,0x61,0x53,0xd7,0x18,0x74,0xe2,0xba,0x6d,0x68,0x72,0xe0,0xb5,0x28,0xdb,
|
||||
0x6d,0x0c,0xaa,0x42,0xdc,0x3f,0x31,0xf2,0xd9,0x1d,0x64,0x93,0xef,0xf2,0x9a,0xa4,
|
||||
0x0d,0xcf,0x6a,0x7a,0xf7,0x23,0xba,0x7b,0xdd,0xd6,0x17,0xf4,0x8b,0x7c,0xcb,0x9b,
|
||||
0x56,0x9b,0x4a,0x1b,0x57,0x50,0x5c,0x66,0xd4,0x19,0x69,0x49,0xff,0x00,0xc4,0xe0,
|
||||
0xb9,0xc7,0xd5,0xc3,0x57,0x3f,0xb8,0x5b,0x81,0xc7,0xf6,0xf7,0xa8,0xf2,0xd2,0xae,
|
||||
0x83,0x17,0x1a,0xb8,0x29,0x2a,0x1e,0xc4,0x46,0x5f,0x15,0xab,0xe6,0x6c,0x23,0xec,
|
||||
0xdc,0x2f,0x06,0xc2,0xdc,0x2c,0xf7,0x6a,0x73,0xba,0xea,0x79,0x67,0xed,0x7b,0x7b,
|
||||
0x29,0x23,0x7d,0xdc,0xe7,0x2a,0xaa,0xc6,0xb6,0x5f,0x97,0xeb,0xbe,0xd7,0x74,0xff,
|
||||
0x00,0x2f,0xc1,0xac,0xad,0xdd,0xb2,0x49,0x17,0x7b,0x9b,0x77,0x15,0x39,0x29,0x98,
|
||||
0xe5,0xc8,0xc5,0xc0,0x1b,0x59,0x53,0xab,0x48,0x21,0x0e,0x34,0xe8,0xe0,0x72,0x7e,
|
||||
0xf7,0xd3,0x81,0xdb,0xfb,0xb7,0xf8,0x54,0x6b,0xa4,0xc4,0xa4,0xbc,0xce,0x3b,0x00,
|
||||
0x9f,0x51,0x22,0xe9,0xc9,0x1f,0xe0,0x42,0xaa,0xca,0xb6,0x4f,0x88,0x7f,0x90,0xbb,
|
||||
0x50,0xd3,0x4b,0x62,0xb9,0x05,0x56,0x94,0xdc,0x17,0xd5,0xfb,0xa6,0x4a,0xd7,0x24,
|
||||
0x83,0xf9,0x17,0x88,0xfd,0x2b,0x76,0x25,0x41,0x69,0x0a,0x49,0x0a,0x49,0x1c,0x82,
|
||||
0x3d,0x08,0xa9,0xab,0xbe,0x23,0xe2,0xf4,0x35,0x75,0x14,0xd4,0x9a,0x0c,0x6d,0x91,
|
||||
0xfa,0x49,0x04,0x9b,0x6a,0x36,0xf1,0xb7,0xa6,0xdc,0x2a,0x08,0x1a,0x40,0x25,0x53,
|
||||
0x3d,0xdb,0xc2,0xaf,0x5d,0x6d,0xcc,0xa9,0x71,0xe2,0xe3,0xf7,0x55,0x01,0xc8,0x6e,
|
||||
0x25,0xd4,0x25,0x47,0xf0,0x1e,0x6a,0x50,0x3f,0xbc,0xd6,0x00,0xf6,0xc1,0x35,0xee,
|
||||
0x26,0x43,0x6d,0xb4,0x49,0xd3,0xbb,0x83,0x2e,0xce,0x7d,0x2c,0x26,0x52,0x1d,0x69,
|
||||
0xf8,0xac,0xf3,0xfb,0xee,0xba,0xd2,0xd6,0x96,0xd0,0x07,0x72,0xa5,0x1f,0xcb,0x93,
|
||||
0xc0,0xab,0xcc,0xba,0x5e,0x6d,0xf6,0x38,0xe9,0x7e,0xe5,0x3a,0x35,0xbd,0x85,0x28,
|
||||
0x20,0x3b,0x29,0xe4,0xb4,0x92,0xa3,0xe8,0x39,0x51,0x03,0x9e,0xc7,0xb5,0x75,0x12,
|
||||
0xf5,0x23,0x13,0x83,0x02,0x54,0xd7,0xf2,0x6b,0x4b,0x71,0x22,0xb4,0xa7,0x9e,0x77,
|
||||
0xe3,0x5b,0x21,0xb4,0x24,0x12,0xa5,0x1e,0x15,0xe8,0x00,0x27,0xf4,0xa5,0x3f,0xc5,
|
||||
0x0c,0x7e,0xdb,0xc2,0xc7,0xdf,0xf0,0xbb,0x9f,0x67,0x5b,0xf4,0x43,0x4e,0xc5,0x50,
|
||||
0x5b,0xc4,0xd2,0xcb,0x56,0x82,0xc1,0xc0,0x34,0x27,0x11,0x22,0xef,0x7e,0x7c,0x22,
|
||||
0xf3,0x90,0x4d,0x69,0x20,0xbd,0x72,0xb8,0xba,0x4b,0x31,0x9b,0xe3,0xb9,0x42,0x5b,
|
||||
0x4f,0x9b,0xd0,0xdf,0x3e,0x8f,0xf5,0x1e,0x4a,0x8a,0x8c,0x59,0xc9,0xb1,0xd9,0x58,
|
||||
0xb6,0x51,0x75,0xb0,0xca,0xe9,0x5c,0xdb,0x74,0xc7,0x60,0xbb,0xe5,0x72,0x52,0x5c,
|
||||
0x6d,0x65,0x0a,0xe9,0xfa,0x8e,0x41,0xe2,0xa6,0x16,0xda,0x10,0xf6,0xef,0xbc,0x42,
|
||||
0xe4,0x66,0xf3,0x1a,0x71,0x16,0xc8,0xb3,0xdd,0xc9,0x14,0xd3,0x87,0x95,0xb5,0x1e,
|
||||
0x39,0x4a,0x21,0xb6,0x4f,0xa1,0x29,0x57,0xc3,0x24,0xfd,0x42,0x55,0xc5,0x70,0xb4,
|
||||
0xc3,0x45,0x86,0xa4,0xf8,0x95,0xdf,0xec,0x12,0xa1,0x99,0x16,0x9b,0x56,0x5b,0x72,
|
||||
0xbb,0xce,0x41,0x48,0x28,0xf8,0x76,0x24,0x2d,0xc4,0x75,0x8f,0xe0,0x5a,0xfc,0x94,
|
||||
0x11,0xef,0xe6,0x71,0xef,0x5d,0x92,0x87,0x16,0xfb,0x22,0x37,0xd2,0xd6,0xbb,0x54,
|
||||
0x91,0x43,0xdb,0x4a,0x7c,0x4b,0x9c,0x49,0x23,0xdb,0x80,0x3a,0x69,0x03,0x6b,0x05,
|
||||
0x6c,0xe6,0xea,0xdc,0x78,0x9b,0x29,0x93,0xa8,0x3a,0x10,0xbd,0x3e,0xf0,0xc9,0xbc,
|
||||
0x60,0x6f,0xa0,0x19,0xd6,0xdc,0x6c,0x5c,0xa6,0xa5,0x3d,0xc0,0x92,0x87,0x93,0x35,
|
||||
0xe0,0x08,0xf5,0x09,0x5a,0x54,0x01,0xf7,0x09,0x15,0xd4,0xf8,0x46,0x3f,0xe6,0xed,
|
||||
0xb2,0xfa,0xdf,0xfa,0xbc,0x9a,0x40,0xfe,0xf8,0xd1,0x8f,0xfd,0xea,0x4f,0xee,0x12,
|
||||
0x0f,0xda,0x9a,0x09,0xa9,0x30,0xf8,0xea,0xf3,0xf1,0xbb,0x93,0x7c,0x7d,0x79,0x8a,
|
||||
0xe0,0xa8,0x9b,0xe0,0xfd,0x2c,0x2f,0x42,0x73,0x18,0xbf,0xbc,0xd6,0x48,0xa7,0x0f,
|
||||
0xe4,0xa8,0xac,0x0f,0xfd,0x86,0xb8,0x24,0x75,0x92,0xd7,0xe5,0x4c,0x42,0x49,0x4d,
|
||||
0xdc,0x67,0x6b,0xcf,0xab,0xf9,0xfd,0x95,0xd9,0x16,0x91,0xa0,0x74,0x53,0xc6,0xa1,
|
||||
0xcf,0x8a,0xa6,0x04,0xee,0x59,0xb6,0x05,0x5e,0x23,0xb6,0x16,0xee,0x37,0x76,0x8d,
|
||||
0x3d,0xc3,0xc7,0x2a,0xf2,0x57,0xd5,0x1d,0x5c,0x7f,0x69,0xe6,0xc9,0xfc,0x12,0x4f,
|
||||
0xb5,0x6b,0x1f,0x10,0xfd,0x6e,0xcc,0xb4,0x2b,0x73,0x9a,0x57,0x7d,0xb3,0x64,0x97,
|
||||
0x78,0x36,0x06,0xe0,0xb4,0xfc,0xcb,0x3c,0x79,0xae,0x26,0x1c,0xb0,0xdc,0xb7,0x3c,
|
||||
0xe0,0xe3,0x21,0x5d,0x0a,0x2b,0x6d,0x41,0x24,0x91,0xcf,0x01,0x3d,0xfe,0x51,0xc4,
|
||||
0xe1,0xd5,0x6c,0x32,0x36,0xb0,0x69,0x0e,0x51,0x8c,0xb3,0x21,0x95,0x33,0x90,0x5a,
|
||||
0x1f,0x8b,0x1e,0x57,0x3d,0x6d,0x85,0x3a,0xd1,0xf2,0x9c,0xe4,0x7a,0x80,0xa2,0x95,
|
||||
0x76,0xfa,0x56,0x22,0x8a,0x92,0x5c,0xb9,0x3e,0x19,0x8d,0x3d,0xc0,0xc7,0x21,0xd5,
|
||||
0xe8,0x1a,0xeb,0x38,0x1f,0x62,0xbd,0x92,0x1e,0x1c,0xc5,0x1b,0xfc,0x38,0xf4,0x47,
|
||||
0x05,0xb4,0xed,0x75,0xab,0xa4,0x50,0xde,0x4a,0xe6,0x6e,0xd2,0x95,0x7c,0x33,0xe3,
|
||||
0x8f,0x2d,0x5d,0x05,0x6d,0x18,0x65,0xa2,0x48,0x2d,0xb6,0x7c,0xd1,0xc9,0xee,0xbe,
|
||||
0xb2,0xae,0xc0,0xa5,0x29,0x8a,0x9b,0xa1,0xda,0x56,0x4f,0xb2,0xcd,0x49,0xb6,0x6a,
|
||||
0xfe,0x96,0x17,0xe4,0xe2,0x10,0x27,0x22,0x5a,0x01,0x2a,0x5b,0x96,0x85,0xf5,0x01,
|
||||
0xe4,0x3e,0x41,0xea,0x5c,0x77,0x3a,0x8a,0x02,0xc9,0xf4,0x51,0x42,0xcf,0x24,0x29,
|
||||
0x7b,0x93,0xc2,0x33,0x52,0x25,0x2b,0x1a,0xce,0xb4,0xce,0xe6,0x3c,0xa9,0x56,0x49,
|
||||
0x89,0xb9,0x46,0x69,0xc3,0xf7,0x89,0x4b,0x9f,0x76,0xfa,0x38,0xf6,0x08,0x5b,0x68,
|
||||
0x3f,0x9b,0xa7,0xf0,0xab,0x03,0xb8,0x5b,0xe2,0xdd,0xa0,0x49,0x83,0x3a,0x33,0x33,
|
||||
0x61,0x49,0x6d,0x4c,0xbf,0x1a,0x43,0x61,0xc6,0xdd,0x6d,0x43,0x85,0x21,0x49,0x3c,
|
||||
0x85,0x24,0x82,0x41,0x07,0xb1,0x06,0xb6,0x3c,0x47,0x1c,0xc4,0x32,0xc6,0x66,0xac,
|
||||
0xed,0x5d,0xda,0xc7,0x23,0xbb,0xcd,0x77,0x0f,0x63,0x87,0x77,0xc8,0x10,0xd2,0x00,
|
||||
0x20,0x6d,0xc5,0xad,0x70,0xa3,0x6b,0x1b,0x24,0x63,0xc1,0x62,0x9a,0x3b,0xaa,0x76,
|
||||
0x8d,0x6a,0xd3,0x3c,0x7f,0x35,0xb1,0xac,0x7c,0x05,0xda,0x32,0x5e,0xf2,0xba,0xfa,
|
||||
0x94,0xc3,0x83,0xe5,0x71,0x95,0x1e,0x07,0xcc,0x85,0x85,0x24,0xf6,0xef,0xd3,0xcf,
|
||||
0xa1,0xaa,0xa2,0xf1,0x1f,0xdb,0x83,0xba,0x0d,0xac,0x71,0xf3,0x8c,0x61,0xa5,0xdb,
|
||||
0xf1,0xac,0x95,0xf5,0x4c,0x8e,0xa8,0x61,0x4d,0x8b,0x7d,0xc1,0x24,0x29,0xc4,0x25,
|
||||
0x43,0xf6,0x3a,0x8f,0xde,0xa3,0x82,0x38,0xe5,0x61,0x20,0x06,0xea,0xc4,0xb4,0x53,
|
||||
0x43,0xe5,0x6d,0xa7,0x3d,0xbc,0xd9,0x71,0xa2,0xf4,0xbd,0x2c,0xc9,0x1d,0x54,0xe8,
|
||||
0xb0,0x55,0xf3,0xb9,0x61,0xb8,0x00,0x3a,0xd0,0x0f,0xaa,0xa3,0xba,0x80,0x38,0x51,
|
||||
0x27,0xa1,0x4d,0xa5,0x27,0xf6,0xfa,0x8e,0x59,0xb9,0x8d,0x11,0x83,0xb8,0x4d,0x18,
|
||||
0xc8,0xb0,0xc9,0x41,0x28,0x97,0x25,0x9f,0x3e,0xdd,0x25,0x5d,0xbe,0x1e,0x62,0x39,
|
||||
0x53,0x2b,0xe7,0xe9,0xd5,0xf2,0xab,0xea,0x95,0x28,0x76,0xe6,0xb1,0x78,0x0e,0x35,
|
||||
0x06,0x59,0xc7,0x84,0xf4,0xaf,0xbd,0x2c,0x9b,0x1e,0xba,0x0f,0x51,0xfd,0x4c,0x3c,
|
||||
0xf5,0xb1,0xb6,0xce,0xb9,0xf4,0xf6,0x19,0x19,0x63,0xca,0xee,0x36,0x27,0xb9,0xb6,
|
||||
0xf7,0x49,0xa0,0x56,0xac,0x82,0x5b,0xa9,0x39,0x4d,0xb4,0x8b,0x65,0xf5,0xa4,0xa4,
|
||||
0x27,0x99,0x48,0x48,0x3e,0x68,0x48,0xe0,0x04,0xba,0x92,0x95,0x8e,0x00,0x00,0xa9,
|
||||
0x49,0x1f,0xb3,0x52,0x1e,0xa8,0x67,0xc3,0x97,0x5e,0xe7,0x6d,0x77,0x74,0x88,0xc7,
|
||||
0xb2,0x4e,0xbb,0x5d,0x93,0x21,0x7c,0x63,0xb7,0xc8,0xd2,0xd5,0xe5,0x88,0x92,0x43,
|
||||
0x85,0x2c,0xba,0xb0,0x48,0x00,0xb6,0xe9,0x28,0x25,0x5d,0x92,0x87,0x1c,0x35,0x7c,
|
||||
0xd5,0xf6,0x50,0x21,0xc0,0x39,0xa6,0xe0,0xac,0x5a,0x52,0x94,0xaa,0xa2,0x52,0x94,
|
||||
0xa2,0x28,0xb1,0xe2,0x4b,0xb8,0x03,0xa0,0x7b,0x5f,0xbf,0x39,0x01,0xf7,0x18,0xc8,
|
||||
0xb2,0x52,0x6c,0x36,0xc5,0xb2,0xae,0x95,0xb4,0xa7,0x50,0xaf,0x35,0xd0,0x79,0x05,
|
||||
0x3d,0x0d,0x07,0x38,0x50,0xee,0x16,0x51,0xf5,0xe4,0x51,0x6e,0x90,0x69,0x9d,0xcf,
|
||||
0x58,0xf5,0x37,0x1b,0xc2,0xec,0xe8,0x26,0x75,0xe2,0x62,0x23,0x05,0xf1,0xc8,0x65,
|
||||
0xbf,0x57,0x1d,0x57,0xf2,0xa1,0x01,0x4b,0x3f,0x82,0x4d,0x4b,0x9f,0x17,0xad,0x6f,
|
||||
0x1a,0x91,0xb9,0x16,0x70,0xf8,0x32,0x54,0xed,0xa3,0x0a,0x88,0x21,0xa9,0x00,0x82,
|
||||
0x83,0x35,0xde,0x1c,0x90,0xa1,0xf9,0x27,0xc9,0x6c,0xf3,0xe8,0x5a,0x57,0xeb,0x9b,
|
||||
0x78,0x44,0x68,0x98,0x9b,0x76,0xca,0x35,0x4a,0xe3,0x13,0xa9,0xb8,0x43,0xec,0x6b,
|
||||
0x4b,0xab,0xe3,0x8f,0x35,0x40,0x2e,0x4a,0xd2,0x3d,0x79,0x4a,0x0b,0x68,0x07,0xd3,
|
||||
0x87,0x56,0x3e,0xbc,0x6b,0x19,0x97,0x17,0x6e,0x07,0x85,0x4f,0x5d,0xf7,0x9a,0x2c,
|
||||
0xdf,0x37,0x1d,0x9b,0xfa,0xee,0x7c,0x81,0x52,0x46,0xdd,0x6e,0x01,0x59,0x1e,0x15,
|
||||
0x87,0xda,0xf4,0xff,0x00,0x11,0xb3,0x63,0x36,0x48,0xe2,0x2d,0xa2,0xd3,0x11,0xa8,
|
||||
0x51,0x5a,0xe7,0x92,0x96,0xd0,0x90,0x91,0xc9,0xf7,0x27,0x8e,0x49,0x3d,0xc9,0x24,
|
||||
0x9f,0x5a,0x88,0x9e,0x27,0xfb,0x8e,0x3a,0x57,0xa4,0xad,0xe0,0xb6,0x69,0x41,0xbc,
|
||||
0x93,0x2f,0x6d,0x6d,0x3c,0x5b,0x73,0x87,0x23,0xdb,0xc7,0x67,0x54,0x40,0xee,0x3c,
|
||||
0xc3,0xf7,0x43,0x9e,0xc4,0x79,0xbc,0x77,0x4d,0x4d,0x37,0x1c,0x43,0x4d,0xa9,0x6e,
|
||||
0x29,0x28,0x42,0x41,0x52,0x94,0xa3,0xc0,0x48,0x1e,0xa4,0x9f,0x61,0x54,0x07,0xba,
|
||||
0xfd,0x6c,0x7f,0x5f,0xf5,0xdf,0x27,0xcb,0x0b,0xbd,0x76,0xc5,0x3e,0x62,0x5a,0xd0,
|
||||
0x39,0x01,0x10,0x9a,0x25,0x2d,0x70,0x0f,0x70,0x54,0x39,0x59,0xfe,0x65,0xab,0xd3,
|
||||
0xd2,0xbe,0x65,0xf8,0x7b,0x82,0x1c,0x73,0x19,0x35,0x55,0x3d,0xe6,0x43,0xdf,0x75,
|
||||
0xfc,0x5c,0x4f,0x74,0x1f,0x7b,0xb8,0xf5,0xb7,0x9a,0xbf,0x99,0xfa,0x1b,0x61,0xe2,
|
||||
0xb7,0x1f,0x85,0x65,0xd5,0xeb,0x76,0xec,0x22,0x47,0x6c,0x90,0x89,0xf6,0x69,0xb1,
|
||||
0x9d,0x03,0xdd,0x20,0x25,0xde,0xff,0x00,0xda,0x69,0x35,0x73,0x55,0x53,0x5e,0x11,
|
||||
0x9a,0x5d,0x3a,0xf5,0xab,0xd9,0x0e,0x76,0xe3,0x5d,0x36,0x8b,0x1d,0xb9,0x50,0x50,
|
||||
0xe9,0xf5,0x5c,0xa7,0xd4,0x9e,0x12,0x9f,0xaf,0x4b,0x68,0x70,0x9f,0xa7,0x52,0x3e,
|
||||
0xb5,0x63,0xfb,0x8a,0xd5,0x96,0x74,0x3f,0x45,0x72,0xcc,0xcd,0x7d,0x0a,0x93,0x6e,
|
||||
0x86,0xaf,0x82,0x69,0xcf,0x47,0x65,0x2f,0x84,0x30,0x8e,0x3d,0x48,0x2e,0x29,0x1c,
|
||||
0xf1,0xdf,0x8e,0x4f,0xb5,0x5d,0xfc,0x46,0x68,0xaf,0xcc,0xcd,0xa5,0xa6,0xdd,0xe5,
|
||||
0xac,0x65,0xbf,0x11,0x26,0xc3,0xe8,0x42,0xa4,0x1b,0x47,0x72,0xab,0xd7,0x46,0xb4,
|
||||
0xb1,0xbd,0xcf,0xf8,0x8c,0xea,0x06,0x59,0x2e,0x3a,0x65,0xe2,0x38,0xad,0xf1,0xd9,
|
||||
0xaf,0x38,0x4f,0xdd,0xbe,0xe3,0x0e,0x79,0x30,0xd1,0xf8,0x85,0x29,0xa0,0xe7,0x07,
|
||||
0xb1,0x4b,0x6a,0x07,0xd4,0x03,0x64,0x7a,0xb7,0x85,0xdc,0x75,0x1b,0x4d,0x32,0x4c,
|
||||
0x5e,0xd5,0x7d,0xff,0x00,0x26,0xa6,0xde,0x21,0x2e,0x12,0x6e,0xa2,0x31,0x90,0x63,
|
||||
0xa1,0x7f,0x2b,0x84,0x36,0x16,0x8e,0x54,0x50,0x54,0x01,0xea,0x1c,0x12,0x0f,0x7e,
|
||||
0x38,0x3a,0xc7,0x65,0x1a,0x06,0xad,0x01,0xd0,0xeb,0x65,0xbe,0xe4,0xd2,0x46,0x57,
|
||||
0x78,0x57,0xda,0xd7,0xc7,0x88,0xe5,0xc3,0x25,0xc0,0x08,0x69,0x47,0xfd,0x9a,0x7a,
|
||||
0x51,0xc0,0xed,0xd4,0x16,0x47,0xed,0x12,0x79,0x5a,0xa3,0xbd,0x7d,0x1c,0xd1,0xbc,
|
||||
0xc5,0xfc,0x5b,0x29,0xcb,0x93,0x0e,0xf9,0x1d,0x28,0x54,0x88,0xac,0x43,0x7e,0x47,
|
||||
0x91,0xd4,0x02,0x92,0x16,0xa6,0xd0,0xa0,0x0f,0x04,0x1e,0x9e,0x79,0xe0,0x8e,0xdd,
|
||||
0xc5,0x61,0x71,0xca,0xda,0xbc,0x6f,0x16,0x64,0x58,0x4b,0x1d,0x23,0x69,0x83,0x5b,
|
||||
0x18,0x6b,0x75,0x6c,0xcb,0x0d,0x56,0xb1,0x04,0x13,0xd4,0x5a,0xd6,0x05,0x7b,0x60,
|
||||
0x0c,0x6d,0xdd,0xe2,0xb4,0x66,0x8b,0x78,0x54,0x62,0x5a,0x5d,0x9c,0x58,0x32,0x9b,
|
||||
0xbe,0x6b,0x73,0xc9,0xa7,0x59,0x66,0xb5,0x70,0x8f,0x1d,0xb8,0x4d,0xc3,0x8e,0xb7,
|
||||
0x5a,0x58,0x5a,0x3a,0xd3,0xd4,0xe2,0x8a,0x42,0x80,0x3c,0x05,0x0e,0x78,0xef,0xdb,
|
||||
0xb5,0x6d,0x2f,0x11,0x4c,0xac,0xe2,0x9b,0x41,0xce,0xd4,0xdb,0xbe,0x5c,0x9b,0x82,
|
||||
0x23,0x5b,0x9a,0xe7,0xf7,0xbc,0xd9,0x0d,0x87,0x07,0xfe,0x50,0x72,0xb7,0x9e,0x07,
|
||||
0x9f,0xe3,0xba,0x9f,0x8b,0x42,0xc8,0xf1,0x5b,0xbc,0x6b,0xe5,0x92,0x62,0x4a,0x99,
|
||||
0x99,0x15,0x5c,0xa4,0xf0,0x78,0x29,0x20,0xf0,0x52,0xa0,0x7b,0x14,0xa8,0x02,0x0f,
|
||||
0x62,0x05,0x42,0x2f,0x18,0x0c,0xe9,0x8b,0x66,0x92,0x61,0x78,0x92,0x54,0x7e,0x32,
|
||||
0xef,0x77,0x5c,0xf3,0xc1,0xec,0x19,0x8c,0xd1,0x4a,0x81,0xfc,0xd5,0x21,0xbe,0x3f,
|
||||
0xdd,0x35,0x2e,0x15,0x57,0x8a,0x66,0x2c,0xcd,0x46,0xcc,0x51,0xe5,0xef,0x63,0xc6,
|
||||
0xc4,0x01,0x60,0xd3,0xa8,0x8b,0x00,0x00,0xe3,0x7d,0x95,0x1c,0x1a,0xc8,0xce,0x95,
|
||||
0x5a,0x79,0x46,0xb3,0xe7,0xb9,0xb5,0x92,0x35,0x9a,0xfd,0x99,0x5f,0x2e,0xd6,0x78,
|
||||
0xc8,0x43,0x6c,0xdb,0xa5,0xcf,0x75,0x71,0xd0,0x94,0x00,0x10,0x03,0x65,0x5d,0x3d,
|
||||
0x80,0x1c,0x76,0xab,0xda,0xdb,0x06,0x28,0xee,0x13,0xb7,0x5d,0x37,0xb2,0xbe,0x16,
|
||||
0x99,0x31,0xac,0x10,0xcb,0xe8,0x73,0xd5,0x0e,0xad,0xa4,0xad,0x69,0xfd,0x14,0xa5,
|
||||
0x0f,0xd2,0xa8,0x63,0x4c,0x70,0xc7,0xf5,0x17,0x51,0xf1,0x6c,0x56,0x31,0xe8,0x7e,
|
||||
0xf5,0x74,0x8d,0x6f,0x4a,0xf8,0xe4,0x23,0xcd,0x75,0x28,0xea,0x3f,0x80,0xea,0xe4,
|
||||
0xfe,0x02,0xbd,0x19,0x32,0xc2,0x23,0x32,0xdb,0x2d,0x27,0xa5,0xb6,0xd2,0x10,0x94,
|
||||
0x8f,0x60,0x3b,0x01,0x5b,0xf7,0xc5,0x79,0x62,0xa7,0x86,0x92,0x86,0x16,0x86,0x82,
|
||||
0x5c,0xf2,0x00,0xb7,0x40,0x0e,0xdd,0x6e,0x7e,0x8a,0x1a,0x70,0x4d,0xc9,0x55,0x27,
|
||||
0xe2,0xe7,0x9f,0x39,0x7b,0xd7,0x2c,0x7b,0x15,0x6a,0x61,0x76,0x15,0x8a,0xce,0x97,
|
||||
0x9c,0x8c,0x15,0xf2,0xb5,0x25,0xf5,0xa9,0x4a,0x24,0x7f,0x11,0x6d,0x0c,0x1f,0xcb,
|
||||
0x8f,0xad,0x41,0x4a,0xdc,0x5b,0xc3,0xcb,0xd7,0x9c,0xee,0x87,0x53,0x2e,0xcb,0x74,
|
||||
0x3e,0x3e,0xda,0x7e,0x1b,0x6e,0x03,0xc8,0x2d,0xc7,0x3f,0x0e,0xdf,0x07,0xdc,0x74,
|
||||
0x34,0x9a,0xfb,0xed,0x13,0x6f,0x12,0xf7,0x29,0xad,0x16,0xac,0x67,0x87,0x5a,0xb1,
|
||||
0x47,0xfe,0x9b,0x79,0x96,0xd8,0xfe,0xa6,0x22,0x08,0xea,0x48,0x3e,0xca,0x59,0x21,
|
||||
0xb4,0x9f,0x62,0xbe,0x78,0x21,0x26,0xba,0xd6,0x0a,0xd8,0x32,0xfe,0x5d,0x80,0xd4,
|
||||
0x1d,0x2d,0x8e,0x30,0xe7,0x7a,0x91,0xa9,0xdf,0xa9,0x36,0xf1,0x2a,0xd9,0xf7,0x7c,
|
||||
0x86,0xca,0xc6,0x3c,0x2b,0x74,0x31,0xcd,0x3c,0xd1,0x49,0x99,0xb5,0xca,0x3a,0x5b,
|
||||
0xbb,0x66,0x0e,0xa5,0xe6,0x39,0x07,0xad,0x10,0x5a,0xea,0x4b,0x5c,0xf2,0x3b,0x75,
|
||||
0xa8,0xb8,0xbe,0xdd,0x8a,0x4b,0x67,0xf0,0x19,0xd6,0xdf,0x74,0x87,0xec,0x0d,0xdc,
|
||||
0x6e,0x23,0x35,0x5b,0x48,0xf2,0x64,0x4d,0x81,0x6d,0x88,0xe8,0xf5,0xea,0x72,0x1b,
|
||||
0x12,0xe4,0x8f,0xcb,0x97,0x63,0xfe,0xa0,0xfd,0x2a,0x4b,0xdb,0xad,0xd1,0x6c,0xf6,
|
||||
0xf8,0xb0,0x20,0xc6,0x6a,0x1c,0x18,0xad,0x21,0x86,0x23,0x30,0x80,0x86,0xda,0x6d,
|
||||
0x20,0x25,0x28,0x4a,0x47,0x60,0x90,0x00,0x00,0x0f,0x40,0x2b,0xe5,0x06,0xd3,0x16,
|
||||
0xd9,0x2a,0xe7,0x29,0x94,0x04,0x39,0x3d,0xf1,0x2a,0x42,0xbf,0x89,0x61,0xa6,0xda,
|
||||
0x07,0xfc,0x0d,0x20,0x7e,0x95,0xf2,0x4d,0x76,0x62,0xa8,0xae,0xaa,0xae,0xa9,0x76,
|
||||
0xdf,0xc4,0x0d,0x36,0xe8,0x03,0xda,0x40,0xf6,0x6b,0x6c,0xb2,0x41,0x80,0x00,0x3a,
|
||||
0x2f,0x8e,0x51,0x69,0x17,0xec,0x66,0xef,0x6c,0x23,0xa8,0x4d,0x86,0xf4,0x62,0x0f,
|
||||
0xbf,0x5a,0x0a,0x7f,0xef,0x50,0x0b,0xc1,0xc2,0x6f,0x99,0x83,0xea,0x5c,0x3e,0x7f,
|
||||
0xaa,0xb8,0xc3,0x77,0x8f,0xf7,0xda,0x70,0x7f,0xfc,0xea,0xc4,0x90,0x78,0x5a,0x7f,
|
||||
0x3a,0xae,0x9f,0x09,0x3b,0x7f,0xd8,0x59,0x26,0xbc,0x59,0xf8,0x29,0x4c,0x19,0xf6,
|
||||
0xe6,0x52,0x93,0xed,0xd2,0xb9,0xc8,0x3f,0xf4,0x8a,0xc9,0xe0,0xce,0xd5,0x96,0x71,
|
||||
0x68,0xcf,0x87,0x60,0x47,0xe7,0x20,0xfe,0xe1,0x51,0xdf,0x3b,0x4f,0xaf,0xec,0xb1,
|
||||
0x9f,0x19,0x38,0x41,0x37,0xad,0x2c,0x96,0x13,0xf3,0x2e,0x3d,0xc5,0xa2,0xaf,0xa8,
|
||||
0x0a,0x8e,0x40,0xff,0x00,0xd4,0x7f,0xbe,0xa6,0x16,0xc5,0xb3,0x71,0x9f,0x6d,0x3f,
|
||||
0x4e,0x67,0x97,0x3a,0xde,0x89,0x6e,0x16,0xb7,0x41,0x57,0x2a,0x4a,0xa3,0x2d,0x4c,
|
||||
0x00,0x7f,0x12,0x96,0xd2,0xaf,0xc9,0x42,0xb9,0xbb,0x92,0xda,0x46,0x1b,0xba,0x6f,
|
||||
0xf2,0x6c,0x65,0xd3,0x6f,0x31,0x13,0x62,0x5b,0xea,0x8e,0x9b,0x43,0xed,0x35,0xe6,
|
||||
0xf9,0xbe,0x5f,0x50,0x70,0xad,0xa5,0x92,0x3e,0xe9,0x3c,0x74,0xf1,0xea,0x7f,0x0e,
|
||||
0x32,0x7d,0x09,0xd0,0x6c,0x63,0x6e,0x98,0x4b,0x98,0xae,0x25,0xf1,0xdf,0x65,0xae,
|
||||
0x5a,0xe6,0xab,0xed,0x09,0x1e,0x73,0x9e,0x62,0xd2,0x84,0xab,0x83,0xc0,0x00,0x70,
|
||||
0x84,0xf6,0x03,0xd7,0x93,0xef,0x52,0xd7,0xe3,0x74,0x15,0x79,0x56,0x93,0x0b,0xdf,
|
||||
0xb7,0x89,0xc4,0xf1,0xb5,0x89,0x7e,0xd7,0xbf,0x42,0x0f,0xb2,0xa0,0x61,0x12,0x17,
|
||||
0x78,0x15,0x5f,0x71,0x10,0x9d,0xac,0x78,0xa8,0x2d,0xa4,0xbc,0xe4,0x3c,0x7b,0x30,
|
||||
0x94,0x47,0x71,0xc2,0x56,0xdd,0xc3,0xe6,0x09,0x3f,0x44,0x26,0x60,0x00,0x7d,0x03,
|
||||
0x60,0x9f,0x43,0x56,0x91,0x55,0xf1,0xe2,0xdf,0xa6,0x12,0x1e,0xc5,0xb0,0xad,0x4f,
|
||||
0xb5,0xb3,0xd1,0x36,0xc5,0x2f,0xec,0xe9,0x92,0x5a,0x4f,0xde,0x25,0xa7,0x0f,0x5b,
|
||||
0x0b,0x51,0xf6,0x4a,0x1d,0x4a,0x80,0xfe,0x67,0xc7,0xd6,0xa6,0xb6,0x8e,0x6a,0x24,
|
||||
0x6d,0x5a,0xd2,0xac,0x4f,0x31,0x8a,0x12,0x86,0xef,0x56,0xd6,0x65,0xad,0xa4,0x9e,
|
||||
0x43,0x4e,0x29,0x03,0xcc,0x6f,0x9f,0x7e,0x95,0xf5,0x27,0xfb,0x35,0x26,0x66,0x77,
|
||||
0xda,0x78,0x56,0x1d,0x8c,0x0d,0xdd,0xa4,0xc4,0xff,0x00,0xee,0x8f,0x82,0x7c,0xdc,
|
||||
0x0d,0xfd,0x15,0x19,0xdd,0x73,0x9b,0xee,0xb3,0x1a,0x54,0x54,0xcb,0x77,0x90,0x8d,
|
||||
0x00,0xdc,0x4c,0x9d,0x39,0xd5,0x3e,0x96,0xb1,0xbb,0xba,0x53,0x70,0xb0,0x65,0x6d,
|
||||
0x36,0x10,0x96,0x59,0x75,0x44,0x79,0x12,0xd0,0x3b,0x00,0x87,0x12,0xe2,0x03,0xa9,
|
||||
0xfd,0xd0,0xd9,0x5a,0x7b,0xa9,0x62,0x54,0x30,0xfb,0x52,0x98,0x6d,0xf6,0x1c,0x43,
|
||||
0xcc,0xba,0x90,0xb6,0xdc,0x6d,0x41,0x49,0x5a,0x48,0xe4,0x10,0x47,0x62,0x08,0xef,
|
||||
0xcd,0x69,0x15,0xb8,0x65,0x55,0x03,0x63,0x92,0x66,0xf7,0x24,0x1a,0x9a,0xe1,0xc3,
|
||||
0x87,0x91,0xea,0x3c,0x41,0xdc,0x78,0x85,0x28,0x70,0x3c,0x2a,0x85,0xf1,0x52,0xd0,
|
||||
0x71,0xa7,0xda,0xc9,0x13,0x3b,0xb6,0x44,0x2d,0x59,0x72,0xe6,0xca,0xa4,0x29,0xb1,
|
||||
0xf2,0x37,0x70,0x6c,0x00,0xef,0xa0,0xf9,0x7c,0xc4,0x14,0x2f,0xbf,0x75,0x2b,0xcd,
|
||||
0x3e,0xc7,0x8b,0x3f,0xd8,0x0e,0xbf,0x2f,0x71,0x3b,0x63,0xc6,0x6f,0xb3,0x9e,0x4b,
|
||||
0xd9,0x0d,0xb0,0x1b,0x35,0xdc,0x85,0x12,0xa5,0x49,0x60,0x24,0x07,0x15,0xcf,0xef,
|
||||
0x38,0xd9,0x69,0xc3,0xed,0xcb,0x84,0x0f,0x4a,0xc2,0x37,0xaf,0xa2,0x23,0x5e,0x76,
|
||||
0xef,0x93,0x58,0xe3,0xc4,0x32,0xef,0xb0,0x9b,0xfb,0x56,0xd0,0x94,0x0e,0x57,0xf1,
|
||||
0x4c,0x82,0x42,0x12,0x3d,0xcb,0x88,0x2e,0x37,0xc1,0xed,0xf7,0x9c,0xfa,0x80,0x6a,
|
||||
0x0f,0x78,0x36,0xeb,0x59,0xc2,0xf5,0xe2,0xf1,0xa7,0xd2,0xd6,0x7e,0xcf,0xcc,0x61,
|
||||
0x15,0xc7,0x1c,0xfe,0xcc,0xc8,0xc9,0x5b,0x89,0xf7,0xec,0x14,0xd1,0x7f,0x9f,0x7e,
|
||||
0x52,0x8a,0xfa,0xcb,0xe1,0xd6,0x35,0xf6,0xb6,0x0c,0xd8,0x64,0x37,0x92,0x1e,0xe1,
|
||||
0xf4,0xfb,0xa7,0xe9,0xb7,0xab,0x4a,0xc7,0x4e,0xdd,0x2e,0xbf,0x55,0x74,0x94,0xa5,
|
||||
0x2b,0xa9,0x2b,0x74,0xae,0x8f,0x3a,0xcb,0xa1,0xe0,0x18,0x46,0x43,0x94,0x5c,0x39,
|
||||
0xf8,0x0b,0x25,0xba,0x45,0xca,0x47,0x07,0x8f,0xbb,0x65,0xb5,0x38,0xae,0xff,0x00,
|
||||
0x92,0x4d,0x77,0x95,0x0e,0x3c,0x58,0xf5,0x15,0x78,0x1e,0xce,0xaf,0x90,0x98,0x7d,
|
||||
0x51,0xe5,0x64,0xb7,0x08,0xb6,0x54,0x29,0xb3,0xc2,0xba,0x4a,0x8b,0xee,0x8f,0xc9,
|
||||
0x4d,0xb0,0xb4,0x9f,0xc1,0x44,0x7b,0xd1,0x15,0x1c,0x66,0x99,0x6d,0xcf,0x50,0xb3,
|
||||
0x2b,0xe6,0x4d,0x77,0x70,0x3f,0x77,0xbd,0x4e,0x7a,0xe1,0x29,0x68,0x4f,0x01,0x4e,
|
||||
0xba,0xb2,0xb5,0x70,0x3d,0x87,0x2a,0x3c,0x0f,0x61,0x57,0xdb,0xb5,0xed,0x23,0x6f,
|
||||
0x43,0x74,0x1b,0x0f,0xc4,0x02,0x14,0x99,0x91,0x21,0x25,0xe9,0xe5,0x5e,0xa6,0x5b,
|
||||
0xa4,0xb8,0xff,0x00,0xe8,0x16,0xb5,0x24,0x7f,0x2a,0x52,0x2a,0x9f,0x76,0x11,0xa4,
|
||||
0xeb,0xd5,0xcd,0xd0,0xe2,0x10,0xdc,0x60,0x3d,0x6c,0xb3,0xbd,0xf6,0xe4,0xfe,0xa0,
|
||||
0x0a,0x43,0x51,0xc8,0x52,0x02,0x81,0xf5,0x0a,0x77,0xca,0x41,0x1f,0xcf,0xf4,0xab,
|
||||
0xb1,0xc2,0xb5,0x23,0x17,0xd4,0x76,0xee,0xae,0x63,0x37,0xc8,0x77,0xb4,0xda,0xe6,
|
||||
0xb9,0x6e,0x9a,0x62,0x39,0xd7,0xe4,0x48,0x6c,0xf0,0xa4,0x2b,0xfe,0xc7,0xd0,0x8e,
|
||||
0xe0,0x91,0x5f,0x38,0xfc,0x57,0xc4,0x64,0x90,0xc3,0x87,0x44,0x09,0x6b,0x3b,0xef,
|
||||
0xb7,0x00,0x9b,0xb5,0x97,0xe9,0xf7,0xb9,0xe6,0xea,0xfa,0x9d,0xbc,0xb9,0x6b,0xad,
|
||||
0xe8,0xe5,0x4f,0xe1,0x9b,0x56,0xd4,0xcb,0x9c,0x64,0xa8,0xbf,0xf6,0x42,0xe2,0x24,
|
||||
0xa3,0xd5,0x3e,0x7a,0x92,0xc1,0x57,0xe8,0x1d,0x27,0xf4,0xaa,0x3a,0xd2,0xcd,0x2d,
|
||||
0xc8,0xf5,0x97,0x39,0xb6,0x62,0x78,0xad,0xbd,0x77,0x0b,0xbc,0xf7,0x3a,0x52,0x91,
|
||||
0xd9,0x0d,0x23,0xf7,0x9d,0x71,0x5f,0xba,0x84,0x8e,0xe5,0x47,0xfe,0x7c,0x0a,0xf4,
|
||||
0x3d,0x91,0x63,0xd6,0xdc,0xb6,0xc3,0x70,0xb2,0xde,0x61,0x33,0x72,0xb5,0x4f,0x61,
|
||||
0x71,0xa5,0x44,0x90,0x9e,0xa4,0x3a,0xda,0x87,0x0a,0x49,0x1f,0x88,0x35,0x87,0x69,
|
||||
0x1e,0xdf,0xf4,0xf3,0x42,0x20,0x48,0x89,0x82,0x62,0xd0,0xf1,0xf4,0xc9,0x3c,0xbe,
|
||||
0xf3,0x65,0x6f,0x48,0x77,0xbf,0x20,0x2d,0xe7,0x54,0xa7,0x14,0x90,0x7d,0x12,0x55,
|
||||
0xc0,0xf6,0x02,0xb4,0xcc,0xab,0x9d,0x21,0xcb,0x18,0x65,0x45,0x3b,0x21,0x2e,0x9d,
|
||||
0xee,0xbb,0x4e,0xda,0x78,0x03,0xbd,0xbd,0xf6,0x3b,0xd8,0x0d,0xef,0xc8,0x52,0xc9,
|
||||
0x17,0x68,0xe0,0x6f,0xb2,0xe3,0xed,0xdf,0x43,0x6c,0xdb,0x76,0xd2,0x7b,0x3e,0x17,
|
||||
0x67,0x21,0xff,0x00,0x86,0x05,0xe9,0xb3,0xbc,0xb0,0x85,0xcd,0x94,0xbe,0x3c,0xd7,
|
||||
0x94,0x07,0xd7,0x80,0x90,0x09,0x24,0x21,0x28,0x4f,0x27,0xa7,0x9a,0xd3,0xd9,0x1c,
|
||||
0xe6,0xb7,0x3d,0xba,0xcb,0x76,0x2b,0x19,0x49,0x93,0x80,0xe9,0x43,0xe8,0xbb,0xdd,
|
||||
0x9d,0x4a,0x7a,0x9b,0x99,0x7c,0x21,0x49,0x8f,0x1f,0x9f,0x4e,0x19,0x1d,0x6a,0x3c,
|
||||
0x73,0xf3,0x05,0xa4,0x8f,0x43,0x5c,0x5d,0xf8,0x6f,0x46,0x06,0xdd,0xf0,0xf9,0x38,
|
||||
0xde,0x39,0x31,0x99,0x3a,0x91,0x74,0x67,0xa2,0x3b,0x48,0x3d,0x5f,0x66,0x34,0xa1,
|
||||
0xc1,0x92,0xe0,0xf6,0x57,0x1f,0xd5,0xa4,0xfa,0x9e,0x14,0x41,0x48,0xe0,0xff,0x00,
|
||||
0x7e,0x18,0x62,0xd0,0xf6,0xd4,0xad,0x93,0x60,0xbc,0x64,0x5e,0x66,0xdd,0x67,0xbf,
|
||||
0x7c,0x79,0x6b,0x2b,0x71,0x73,0x0b,0xc4,0x02,0xb2,0x7b,0xf2,0x58,0x11,0xcf,0xeb,
|
||||
0xcf,0xa9,0x35,0x8e,0x8e,0x92,0xba,0x9b,0x0d,0x9b,0x33,0x56,0x02,0x5f,0x2b,0xb4,
|
||||
0x30,0x9e,0x6e,0xf0,0x75,0x49,0xe9,0x60,0x5a,0xdf,0xc4,0x6e,0x38,0x0b,0xd5,0xc1,
|
||||
0x70,0x60,0xf0,0x5b,0x97,0x71,0xfa,0xdd,0x6e,0xdb,0xd6,0x8f,0x5f,0xf3,0x59,0xe9,
|
||||
0x4b,0xef,0x44,0x6b,0xca,0x83,0x11,0x47,0xff,0x00,0x9a,0x96,0xbf,0x95,0x96,0xfd,
|
||||
0x47,0x6e,0xae,0xea,0x23,0xb8,0x4a,0x54,0x78,0x3c,0x71,0x54,0x07,0x93,0x64,0x97,
|
||||
0x3c,0xc7,0x21,0xb9,0x5f,0x6f,0x53,0x1c,0xb8,0x5d,0xae,0x52,0x1c,0x97,0x2e,0x53,
|
||||
0xbc,0x75,0x3a,0xea,0xd4,0x54,0xa5,0x1e,0x3b,0x0e,0x49,0x3d,0x80,0x00,0x7b,0x54,
|
||||
0xbe,0xf1,0x39,0xdc,0x90,0xd5,0xad,0x59,0x46,0x11,0x64,0x96,0x1d,0xc5,0xf1,0x15,
|
||||
0xad,0x97,0x14,0xd2,0xc9,0x44,0xab,0x81,0xec,0xf2,0xfe,0x84,0x37,0xc7,0x96,0x9e,
|
||||
0xdd,0x88,0x70,0x82,0x42,0xea,0x31,0xe8,0xb6,0x9b,0x48,0xd6,0x0d,0x58,0xc5,0x30,
|
||||
0xc8,0xca,0x71,0xb5,0x5e,0x6e,0x0d,0x45,0x71,0xd6,0x93,0xd4,0xa6,0x9a,0x2a,0xe5,
|
||||
0xd7,0x00,0xfe,0x44,0x05,0xab,0xfb,0x35,0xdd,0x72,0x0e,0x06,0xcc,0xbf,0x83,0xbb,
|
||||
0x10,0xab,0x1a,0x64,0x90,0x6b,0x71,0x3f,0x75,0x80,0x5c,0x0f,0xa7,0x78,0xfa,0xd8,
|
||||
0xf0,0xac,0xe6,0x7e,0xb7,0x69,0x0a,0xe6,0xfc,0x3e,0x30,0x09,0x5a,0x7b,0xb4,0xcc,
|
||||
0x22,0x34,0xe6,0xc3,0x53,0x6e,0x6d,0x3b,0x77,0x71,0x00,0xf3,0xc2,0x24,0x38,0xa7,
|
||||
0x1a,0xfd,0x4b,0x45,0xa2,0x47,0xb1,0x24,0x7b,0x55,0x7c,0x78,0xa9,0xea,0x40,0xcc,
|
||||
0xb7,0x30,0x6c,0x0c,0x15,0x7c,0x2e,0x2d,0x6d,0x62,0x09,0xef,0xca,0x54,0xfb,0x83,
|
||||
0xcf,0x71,0x43,0xf4,0x75,0xb4,0x1f,0xc5,0xb3,0x57,0x11,0x02,0x0c,0x3b,0x15,0xae,
|
||||
0x3c,0x38,0xad,0x22,0x24,0x08,0x6c,0xa5,0x96,0x9b,0x4f,0x64,0xb4,0xda,0x13,0xc2,
|
||||
0x40,0xfc,0x00,0x03,0xfb,0xab,0xcf,0x1e,0xb5,0x67,0xcb,0xd5,0x2d,0x5d,0xcc,0xb2,
|
||||
0xd5,0x85,0xa5,0x37,0x9b,0xb4,0x99,0x8d,0x21,0x67,0x92,0xdb,0x4a,0x70,0x96,0xd1,
|
||||
0xfd,0x94,0x74,0xa7,0xf4,0xad,0x13,0xe1,0xd3,0x1d,0x8c,0x66,0x1a,0xcc,0x62,0x41,
|
||||
0xc5,0xcf,0xa1,0x91,0xdb,0x7f,0xa8,0x70,0x53,0x4f,0xdd,0x60,0x6a,0xde,0x1e,0x1a,
|
||||
0x98,0x2b,0xd9,0xa6,0xed,0xb1,0x99,0x01,0xb0,0xe4,0x4b,0x0c,0x79,0x37,0x79,0x3c,
|
||||
0xfe,0xea,0x52,0xd9,0x6d,0xb2,0x3f,0xfc,0xaf,0x35,0x57,0x3f,0x98,0xe4,0x28,0xc4,
|
||||
0x71,0x1b,0xe5,0xf5,0xc0,0x0b,0x76,0xb8,0x2f,0xcd,0x50,0x3e,0x9c,0x36,0xda,0x96,
|
||||
0x7f,0xe9,0xaa,0xe1,0xf0,0x73,0xc2,0x1c,0x5d,0xc3,0x51,0xf3,0x07,0x59,0x29,0x69,
|
||||
0xb6,0xa2,0xda,0x63,0x3c,0x47,0x65,0x15,0x15,0x3a,0xf2,0x47,0xe5,0xd2,0xc1,0xfe,
|
||||
0xd0,0xa9,0xa1,0xbc,0xbc,0x88,0xe2,0xdb,0x56,0xd5,0x19,0xc9,0x07,0xa9,0x76,0x37,
|
||||
0xe1,0x82,0x3d,0x8b,0xe3,0xc8,0xe7,0xf4,0xf3,0x79,0xac,0x2e,0x7d,0x97,0xed,0x5c,
|
||||
0xd6,0xca,0x21,0xb8,0x6f,0x67,0x1f,0xe6,0x37,0x3f,0xf6,0xb2,0xf7,0x08,0xd3,0x1d,
|
||||
0xd5,0x07,0x49,0x92,0xec,0xc9,0x2e,0xc8,0x7d,0xc5,0x3a,0xfb,0xab,0x2e,0x38,0xe2,
|
||||
0xcf,0x2a,0x52,0x89,0xe4,0x92,0x7e,0xa4,0xd5,0xde,0xec,0x0b,0x6d,0x23,0x6f,0x3a,
|
||||
0x2b,0x19,0x77,0x48,0xa1,0xac,0xcb,0x23,0x08,0xb8,0x5d,0x89,0xfd,0xb6,0x07,0x1f,
|
||||
0x73,0x1b,0xd0,0x71,0xe5,0xa5,0x47,0xa8,0x7f,0x1a,0xdc,0xee,0x40,0x15,0x5f,0x5e,
|
||||
0x1a,0xdb,0x72,0xff,0x00,0x3c,0xda,0xd4,0x8c,0x96,0xed,0x18,0xb9,0x8b,0x62,0x0a,
|
||||
0x6e,0x6b,0xc1,0x68,0xe5,0x12,0x26,0x12,0x4c,0x76,0x7b,0xfa,0x80,0x52,0x5c,0x57,
|
||||
0xaf,0x66,0xc0,0x3f,0xb6,0x0d,0x59,0x4e,0xf6,0xb5,0xb0,0xe8,0x46,0xdd,0x32,0x6b,
|
||||
0xf4,0x57,0x92,0xcd,0xee,0x6a,0x05,0xaa,0xd4,0x54,0xae,0x0f,0xc4,0xbc,0x08,0x0b,
|
||||
0x4f,0xe2,0x84,0x07,0x1c,0x03,0xfd,0x9d,0x6d,0xff,0x00,0x11,0x31,0x59,0x71,0x1a,
|
||||
0xb8,0x32,0xc5,0x01,0xef,0x38,0xb7,0x5f,0xa9,0xf9,0x5a,0x7c,0x87,0xcc,0x7d,0xba,
|
||||
0x28,0xa0,0x68,0x68,0x32,0x39,0x64,0x5a,0x0d,0xaf,0x96,0x8d,0x79,0x19,0xbb,0xb6,
|
||||
0x72,0xd2,0xa2,0xe3,0xb9,0x0b,0xf6,0x56,0xde,0x69,0xc0,0xb4,0xc9,0x6d,0xb4,0x36,
|
||||
0x52,0xfa,0x48,0xed,0xd2,0xb2,0xa5,0xf0,0x47,0xa8,0x4f,0x35,0xa3,0xfc,0x4d,0xb5,
|
||||
0xd2,0x4e,0x95,0xe8,0xd5,0xb3,0x1a,0xb5,0x3c,0xa8,0xf7,0x8c,0xbe,0x6f,0xc2,0x97,
|
||||
0x50,0xa2,0x95,0x37,0x0d,0xa2,0x85,0xc8,0x29,0x23,0xdd,0x45,0x4d,0x36,0x47,0xa1,
|
||||
0x4b,0x8b,0xfc,0x2a,0x2c,0x78,0x47,0x6a,0x91,0xc7,0x35,0x93,0x21,0xc1,0xe4,0xc8,
|
||||
0x42,0x22,0x64,0xb6,0xff,0x00,0x88,0x8e,0xda,0xcf,0x75,0x4a,0x8d,0xca,0x80,0x4f,
|
||||
0xe6,0xd2,0xdf,0x27,0xeb,0xe5,0x8f,0xa5,0x61,0xbe,0x25,0x5a,0x94,0x9d,0x42,0xdd,
|
||||
0xa4,0x8b,0x4c,0x69,0x3f,0x11,0x6f,0xc6,0x58,0x8d,0x67,0x40,0x42,0xf9,0x6c,0x3d,
|
||||
0xcf,0x9a,0xff,0x00,0x03,0xd9,0x41,0x6e,0x96,0xd5,0xef,0xcb,0x5c,0x7b,0x0a,0xc2,
|
||||
0xe1,0xf9,0x3a,0x3a,0x4c,0xe4,0x28,0xf4,0xde,0x18,0x9a,0x24,0x17,0xf1,0x00,0x00,
|
||||
0x3f,0xdf,0xeb,0x62,0xbd,0xba,0x4b,0xc5,0x7f,0x15,0x73,0x2c,0x38,0x5d,0x65,0xb5,
|
||||
0x9f,0x55,0x24,0x2b,0xfe,0x15,0x01,0x7c,0x3a,0xd2,0x9b,0x7e,0xe5,0x37,0x3b,0x01,
|
||||
0x09,0xe9,0x42,0x6f,0x9f,0x28,0xe3,0xd0,0x26,0x64,0xd0,0x3f,0xea,0xa9,0xf4,0xca,
|
||||
0x3c,0xb6,0x50,0x8f,0xe1,0x48,0x15,0x5f,0xdb,0x0d,0x7d,0x2c,0x6f,0x3f,0x72,0xb0,
|
||||
0xca,0x90,0x16,0xe5,0xca,0x4b,0xa1,0x1c,0xfc,0xc4,0x26,0x7b,0xc0,0x90,0x3e,0x83,
|
||||
0xac,0x73,0xf9,0x8a,0xd0,0x70,0x21,0xab,0x07,0xc5,0x9a,0x3f,0xa2,0x33,0xf4,0x90,
|
||||
0x29,0x5f,0xf3,0x35,0x6d,0x0f,0x13,0xe9,0xb7,0xcb,0x66,0xd6,0x65,0xcd,0xb1,0xdd,
|
||||
0x66,0xda,0x94,0xc5,0xda,0x21,0x96,0xb8,0x4f,0xa9,0x95,0x3a,0xc2,0xba,0xd0,0x5b,
|
||||
0x51,0x49,0x04,0xa4,0xad,0x6d,0x92,0x3d,0x39,0x48,0xa8,0xdb,0xe1,0x3d,0xaf,0x17,
|
||||
0xf9,0x7a,0x8d,0x7e,0xd3,0xcb,0xe5,0xf2,0x5d,0xca,0xd7,0x32,0xda,0x67,0x5b,0x99,
|
||||
0x9f,0x25,0x6e,0xf9,0x0f,0x32,0xb1,0xd6,0x86,0x42,0x89,0xe9,0x0a,0x43,0x8a,0x52,
|
||||
0x80,0xff,0x00,0x54,0x0f,0xb1,0xa9,0x99,0xbe,0xfc,0x49,0xcc,0xcf,0x69,0x1a,0x93,
|
||||
0x09,0xa1,0xcb,0xb1,0xad,0xc2,0xe4,0x0f,0x1e,0x82,0x33,0xa8,0x90,0xbf,0xfd,0x0d,
|
||||
0x2b,0xfb,0xea,0x9f,0xf6,0x81,0x9b,0x2b,0x4f,0x77,0x39,0xa6,0xd7,0xa0,0xf2,0x63,
|
||||
0xb6,0x9b,0xcb,0x31,0x1e,0x75,0x67,0x84,0xa5,0x99,0x1c,0xb0,0xe1,0x27,0xd8,0x74,
|
||||
0x3a,0xaa,0xe8,0xf9,0x4a,0x8a,0x1c,0x63,0x26,0xd7,0x51,0x96,0x82,0xf6,0x97,0x11,
|
||||
0xb6,0xf7,0x0d,0x6b,0x9b,0xfa,0x82,0x3d,0x14,0x32,0x12,0xd9,0x5a,0x55,0xdf,0xeb,
|
||||
0xae,0x96,0xc4,0xd6,0xad,0x21,0xca,0xf0,0xa9,0x9c,0x25,0x37,0x78,0x2b,0x65,0x97,
|
||||
0x4f,0xff,0x00,0x49,0xf1,0xf3,0x32,0xe7,0xf6,0x5c,0x4a,0x15,0xc7,0xbf,0x1c,0x7b,
|
||||
0xd4,0x65,0xf0,0xad,0xce,0xe7,0xdc,0x74,0x5b,0x21,0xc0,0x6f,0x08,0x53,0x17,0x6c,
|
||||
0x26,0xf0,0xe4,0x53,0x15,0xd4,0xf4,0xb8,0xc3,0x2f,0x15,0x2c,0x21,0x60,0xf7,0xe4,
|
||||
0x3c,0x99,0x23,0xbf,0xd0,0x0f,0x6a,0x9a,0xde,0x95,0x0b,0xe0,0xd8,0x9b,0xd0,0x1f,
|
||||
0x11,0xdf,0x31,0x89,0x21,0x8c,0x7b,0x56,0xec,0xef,0xb9,0xf0,0xfc,0x84,0x36,0x8b,
|
||||
0x93,0x1c,0x2d,0x7c,0x8f,0x72,0xae,0x85,0x28,0x13,0xea,0xa9,0x2a,0x15,0xcc,0xf0,
|
||||
0x79,0xbf,0x8c,0xc2,0xab,0x70,0x97,0xf3,0x6e,0xd9,0x9f,0xdd,0x1f,0xcf,0x6f,0x33,
|
||||
0x1d,0xff,0x00,0x2a,0x9d,0xc2,0xce,0x0e,0xf6,0x5d,0x5f,0x8b,0x46,0x95,0x2b,0x2c,
|
||||
0xd0,0xcb,0x46,0x67,0x15,0x94,0xae,0x5e,0x29,0x70,0x01,0xf5,0x7a,0x11,0x12,0x4f,
|
||||
0x4b,0x6b,0x23,0xeb,0xc3,0xa2,0x3f,0x6f,0xa1,0x51,0xa8,0xff,0x00,0xe1,0xd7,0xbe,
|
||||
0x37,0x34,0xea,0xeb,0x03,0x4b,0xf3,0xcb,0x81,0x38,0x94,0xc7,0x03,0x36,0x8b,0x9c,
|
||||
0x85,0x73,0xf6,0x63,0xca,0x3d,0x9a,0x59,0xff,0x00,0x52,0xb5,0x1e,0x01,0x3d,0x9b,
|
||||
0x51,0xe4,0xf0,0x92,0x4a,0x6c,0x2f,0x75,0x91,0xf1,0xcb,0x86,0xdd,0xf3,0xeb,0x76,
|
||||
0x51,0x78,0x81,0x62,0xb6,0xce,0xb4,0xc8,0x8e,0xdc,0xdb,0x8b,0xa1,0xb6,0x91,0x20,
|
||||
0xa0,0x96,0x0f,0x7f,0xda,0x3e,0x60,0x41,0x09,0x1d,0xc9,0x1c,0x0e,0xf5,0xe7,0xf6,
|
||||
0xba,0xe6,0x45,0xa4,0x83,0x32,0xe5,0xa9,0xb0,0x9a,0xe6,0xdd,0xac,0x71,0xd2,0x6d,
|
||||
0xf2,0xdc,0x5c,0x16,0x9e,0xa1,0xd7,0xf6,0x36,0x3b,0x1d,0xed,0xa6,0x26,0x37,0x87,
|
||||
0x05,0xe9,0x6f,0xd2,0xa9,0x23,0x73,0x38,0xbc,0xcd,0xa0,0x6f,0x71,0x77,0x9b,0x0a,
|
||||
0x5c,0x8d,0x16,0x2d,0xd6,0x3e,0x53,0x68,0x00,0x74,0x82,0xca,0xdd,0xf3,0x14,0xd0,
|
||||
0xe3,0xd5,0xb0,0xe2,0x5e,0x67,0x8f,0x74,0xa3,0x83,0xea,0x6a,0x6c,0x78,0x67,0xee,
|
||||
0xc5,0xdd,0x5d,0xc2,0x1d,0xd3,0xdc,0x9e,0x61,0x7b,0x2d,0xc6,0xe3,0xa5,0x51,0x24,
|
||||
0xbb,0xfb,0x53,0xad,0xe3,0x84,0x82,0xa3,0xcf,0x75,0xb4,0x4a,0x50,0xa2,0x78,0xe5,
|
||||
0x2a,0x6c,0xfc,0xc7,0xac,0xd6,0x15,0xe2,0xb1,0x89,0x59,0x75,0x23,0x4c,0x2c,0x3a,
|
||||
0x85,0x8c,0xdd,0x2d,0xb7,0xa7,0xb1,0x5b,0x8a,0xad,0x37,0x45,0xdb,0x64,0x36,0xf9,
|
||||
0x65,0xa7,0xf8,0xe9,0x0e,0x29,0x0a,0x3d,0x25,0x0e,0xa1,0x29,0xe9,0x3d,0xf9,0x78,
|
||||
0xfa,0x77,0xad,0x77,0x27,0x36,0xaf,0x2a,0x66,0x87,0xe1,0x75,0x63,0xba,0xfe,0xe1,
|
||||
0x3e,0x06,0xfb,0xb1,0xde,0xfc,0x0f,0xee,0x23,0x90,0xbd,0xcb,0x69,0x23,0xd4,0x15,
|
||||
0xa8,0x63,0x99,0x04,0x0c,0xb3,0x1e,0xb5,0xdf,0x2d,0x52,0x51,0x32,0xd7,0x73,0x8a,
|
||||
0xd4,0xd8,0x92,0x5b,0x3c,0xa5,0xd6,0x5c,0x40,0x5a,0x16,0x3f,0x02,0x95,0x03,0xfa,
|
||||
0xd7,0x63,0x51,0x47,0xc3,0x03,0x53,0x9b,0xd4,0xad,0x9c,0x61,0xc8,0x2f,0x17,0xa7,
|
||||
0xe3,0xaa,0x7a,0xc1,0x2c,0x1f,0xdc,0x2c,0xab,0xa9,0x94,0x8f,0xc3,0xc8,0x71,0x8f,
|
||||
0xf8,0xfd,0x2a,0x57,0x57,0xd4,0xcb,0x1e,0x95,0x53,0xde,0x38,0x39,0x8a,0x9c,0xbc,
|
||||
0xe9,0x5e,0x28,0xdb,0xe4,0x25,0x98,0xf3,0x6e,0x8f,0xb0,0x0f,0x62,0x56,0xa6,0x9b,
|
||||
0x69,0x44,0x7e,0x1e,0x5b,0xa0,0x7e,0x66,0xad,0x86,0xb4,0x06,0x7f,0xb3,0x2c,0x1b,
|
||||
0x58,0x37,0x00,0xce,0xa8,0x67,0xf1,0x1b,0xca,0x15,0x6d,0xb5,0xb1,0x6a,0xb4,0xd8,
|
||||
0xa5,0x36,0x0c,0x26,0x52,0x85,0xba,0xe2,0x9d,0x79,0x07,0xb3,0xcb,0x2a,0x79,0x40,
|
||||
0x25,0x43,0xa4,0x00,0x09,0x0a,0x3c,0x74,0x91,0x52,0x06,0xdf,0x62,0xeb,0x85,0xaa,
|
||||
0x36,0x41,0x2f,0x49,0x71,0x9c,0x96,0x70,0xbe,0x40,0x5d,0xa2,0x5d,0xca,0xc7,0x67,
|
||||
0x7a,0x4a,0x92,0xca,0x96,0x92,0xb4,0xb6,0xf2,0x50,0x7c,0xb5,0x72,0x90,0x3a,0x81,
|
||||
0x04,0x7b,0x10,0x78,0x23,0xbc,0xc2,0xf4,0xfb,0x72,0xdb,0x5f,0xbe,0xaf,0x28,0xb1,
|
||||
0x61,0x59,0xc6,0x26,0xf3,0x6d,0x7f,0x48,0x93,0xf6,0x2b,0xeb,0x8a,0xe3,0x5e,0xa5,
|
||||
0x2f,0x02,0x82,0xda,0xd2,0x3d,0x78,0x57,0x3c,0x11,0xcf,0x62,0x39,0xaf,0x43,0x90,
|
||||
0xe1,0xc7,0xb7,0x44,0x62,0x24,0x46,0x1b,0x8b,0x15,0x84,0x25,0xa6,0x98,0x65,0x01,
|
||||
0x08,0x6d,0x09,0x1c,0x25,0x29,0x48,0xec,0x00,0x00,0x00,0x07,0xa5,0x7d,0xaa,0xce,
|
||||
0x4a,0x2a,0x69,0x44,0x82,0x48,0xda,0x7b,0x4f,0x9a,0xe0,0x1d,0x56,0xd8,0x5f,0xad,
|
||||
0xbc,0xd5,0x6e,0x47,0x8a,0xa5,0xcb,0x1f,0x8c,0x46,0x69,0x1a,0xdc,0x86,0xee,0xf8,
|
||||
0x05,0x8e,0xe1,0x38,0x0e,0x0c,0x88,0x92,0xde,0x8c,0x85,0x1f,0xaf,0x42,0xba,0xff,
|
||||
0x00,0xea,0xac,0x1f,0x51,0xfc,0x56,0x35,0x8b,0x32,0x80,0xe4,0x2b,0x1b,0x16,0x5c,
|
||||
0x2d,0x95,0xff,0x00,0xf7,0x36,0xd8,0xea,0x7a,0x57,0x1e,0xe3,0xad,0xe5,0x29,0x23,
|
||||
0xf3,0x4a,0x01,0x1f,0x5a,0xb0,0xfd,0xf0,0x78,0x75,0x62,0x3b,0x8d,0xc7,0x6e,0x99,
|
||||
0x1e,0x29,0x6d,0x8b,0x8e,0xea,0x7b,0x48,0x5c,0x86,0x65,0xc5,0x4a,0x59,0x66,0xea,
|
||||
0xe7,0xed,0x16,0xa5,0x0e,0xc0,0xa9,0x5d,0xc0,0x77,0xb2,0x81,0x20,0xa8,0xa9,0x23,
|
||||
0x8a,0xa2,0xdb,0xad,0xa6,0x6d,0x8e,0xeb,0x32,0xd9,0x70,0x8a,0xec,0x3b,0x84,0x37,
|
||||
0x97,0x1e,0x44,0x57,0x90,0x52,0xe3,0x4e,0xa1,0x45,0x2a,0x42,0x81,0xee,0x08,0x20,
|
||||
0x82,0x3f,0x0a,0xd5,0x62,0xc9,0x59,0x7a,0x09,0x7b,0x56,0x51,0xb6,0xfe,0x77,0x23,
|
||||
0xe8,0x49,0x1f,0xa2,0x93,0xb5,0x79,0xf1,0x4b,0xb5,0xda,0x75,0xfa,0xe7,0x2a,0xe3,
|
||||
0x73,0x9b,0x22,0xe3,0x70,0x94,0xe2,0x9e,0x91,0x2e,0x5b,0xaa,0x75,0xd7,0x96,0xa3,
|
||||
0xca,0x94,0xb5,0xa8,0x92,0xa5,0x13,0xdc,0x92,0x79,0xac,0xff,0x00,0x49,0xb7,0x1d,
|
||||
0xa8,0xfa,0x1b,0x6f,0xbc,0xc1,0xc1,0xf2,0x99,0x56,0x18,0x97,0x74,0x74,0x4b,0x65,
|
||||
0xa4,0x36,0xe2,0x49,0xe0,0xa4,0x2d,0x1d,0x69,0x57,0x96,0xe0,0x07,0x8e,0xb4,0x70,
|
||||
0xaf,0x4e,0xfd,0x85,0x62,0xb2,0xf4,0xfb,0x29,0xb7,0xda,0x45,0xd6,0x56,0x35,0x78,
|
||||
0x8d,0x6c,0x23,0x91,0x35,0xe8,0x0e,0xa1,0x92,0x3e,0xbd,0x65,0x3d,0x3e,0xe3,0xde,
|
||||
0xba,0x0a,0xdb,0x27,0xa5,0xa7,0xa9,0x8b,0xb0,0x9e,0x30,0xe6,0x6d,0xb1,0x00,0x8d,
|
||||
0xb8,0xd8,0xed,0xb7,0x82,0x8c,0x12,0x0d,0xc2,0xfd,0x5a,0xd4,0xe2,0xd4,0xa5,0x28,
|
||||
0xa9,0x4a,0x3c,0x95,0x13,0xc9,0x26,0xac,0x0b,0xc2,0x23,0x48,0xd5,0x7b,0xd4,0x5c,
|
||||
0x9f,0x51,0x25,0xb0,0x95,0x44,0xb1,0x45,0x16,0xd8,0x2b,0x5a,0x79,0x3f,0x14,0xff,
|
||||
0x00,0x75,0xa9,0x07,0xd8,0xa5,0xa4,0x94,0x9f,0xc1,0xf1,0xf8,0xd5,0x7e,0x54,0xd4,
|
||||
0xda,0xc7,0x88,0x55,0x9b,0x6b,0xda,0x57,0x03,0x0e,0x85,0xa7,0x0f,0x5f,0x1f,0x72,
|
||||
0x5b,0xb3,0xae,0x97,0x45,0x5e,0x44,0x72,0xf3,0xcb,0x57,0x48,0xe8,0x6b,0xc8,0x5f,
|
||||
0x01,0x2d,0x21,0xa4,0xf7,0x57,0x72,0x92,0x7b,0x73,0x5a,0x96,0x72,0xa7,0xc4,0x6b,
|
||||
0x30,0x69,0x69,0x30,0xc8,0xf5,0xc9,0x25,0x9b,0xc8,0x16,0x6f,0x2e,0xdd,0xc4,0x0d,
|
||||
0xc0,0xb7,0x5d,0xd4,0xb1,0x16,0x87,0x5d,0xc5,0x59,0xb6,0xe8,0x73,0xbf,0xf3,0x69,
|
||||
0xb7,0x7d,0x43,0xc8,0x92,0xe9,0x66,0x44,0x5b,0x34,0x84,0x46,0x70,0x7e,0xec,0x87,
|
||||
0x13,0xe5,0x32,0x7f,0xf3,0x16,0x8a,0xf3,0xeb,0x56,0x8b,0xbc,0x9d,0xe1,0xe1,0xba,
|
||||
0xe7,0xb2,0x09,0x53,0x71,0x39,0x0b,0x44,0x9b,0xbd,0xea,0x1d,0xa6,0x7d,0xaa,0x59,
|
||||
0x4a,0x65,0xc0,0x50,0x2b,0x93,0xca,0xd2,0x09,0xe5,0x2a,0xf8,0x6f,0x95,0x60,0x90,
|
||||
0x41,0xf6,0x21,0x40,0x55,0xd5,0x6a,0x9f,0x0c,0xb0,0xa9,0xb0,0xdc,0x3e,0xa0,0xd5,
|
||||
0x30,0xb2,0x43,0x21,0x04,0x1e,0x6c,0xd0,0x2d,0xfa,0x93,0xff,0x00,0x8a,0x49,0xdc,
|
||||
0x1c,0x45,0x95,0x9a,0xed,0x97,0x5d,0xec,0x1b,0x32,0xd8,0x8d,0xa7,0x26,0xbb,0x32,
|
||||
0x2e,0x19,0x06,0x5b,0x74,0x9d,0x36,0xd3,0x65,0x4a,0xfa,0x1c,0x94,0xb4,0x28,0x47,
|
||||
0xeb,0x51,0xe0,0xf4,0xb6,0x90,0xc2,0x49,0x57,0x1e,0x8a,0x48,0x1c,0x95,0x0a,0x84,
|
||||
0xda,0xcf,0xba,0xdd,0x50,0xd7,0x99,0xd3,0x17,0x94,0xe5,0x73,0x55,0x6c,0x90,0xa2,
|
||||
0x45,0x8e,0x0b,0xaa,0x8f,0x6f,0x6d,0x3d,0x5c,0xa5,0x21,0x94,0x9e,0x15,0xd3,0xdb,
|
||||
0x85,0x2f,0xa9,0x5d,0x87,0x2a,0x27,0xbd,0x61,0x19,0xd6,0x7f,0x72,0xcf,0xa4,0x59,
|
||||
0xd5,0x3d,0x49,0x44,0x6b,0x3d,0xae,0x35,0x9e,0x04,0x66,0xc7,0x08,0x62,0x3b,0x28,
|
||||
0xe0,0x01,0xf8,0xa9,0x45,0x6e,0x28,0xfb,0xad,0xc5,0x1e,0xdc,0xf0,0x31,0xaa,0xdb,
|
||||
0xf0,0xac,0xb5,0x4b,0x47,0x53,0x36,0x25,0x3b,0x03,0xaa,0x25,0x71,0x71,0x27,0x7d,
|
||||
0x20,0x9d,0x9a,0xde,0x96,0x16,0x04,0x8d,0xc9,0xf2,0xb0,0x11,0x3a,0x42,0x40,0x68,
|
||||
0xe1,0x5d,0xd7,0x86,0xbe,0x27,0x69,0xc6,0xf6,0x8b,0x89,0x4c,0xb6,0xa5,0x2a,0x7e,
|
||||
0xf2,0xec,0xbb,0x84,0xe7,0x81,0xfe,0xb1,0xff,0x00,0x88,0x5b,0x3f,0xa7,0x4a,0x19,
|
||||
0x42,0x38,0xfe,0x42,0x7d,0xcd,0x42,0x9f,0x15,0xed,0x6b,0xff,0x00,0x2d,0x75,0x96,
|
||||
0xdd,0x81,0x41,0x70,0x2a,0xd9,0x89,0x31,0xcc,0x82,0x85,0x73,0xd7,0x35,0xf4,0xa5,
|
||||
0x6b,0xe7,0xbf,0x1f,0x23,0x61,0xb4,0x8f,0x70,0xa2,0xe0,0xae,0x9b,0x65,0x9e,0x20,
|
||||
0x49,0xdb,0x36,0x09,0x7d,0xc4,0xb2,0x1b,0x1c,0xbc,0x86,0xd4,0x56,0xb9,0xd6,0x8f,
|
||||
0x83,0x75,0x29,0x5b,0x12,0x14,0x9e,0x14,0xd2,0xfa,0x8f,0x01,0xa5,0x10,0x95,0x72,
|
||||
0x9e,0xe9,0x3d,0x67,0xa5,0x7d,0x5d,0xa2,0x36,0x4b,0x90,0xce,0xcb,0xb2,0x3b,0xad,
|
||||
0xf6,0xe8,0xf1,0x93,0x73,0xba,0x4b,0x76,0x6c,0xa7,0x8f,0xab,0x8e,0xb8,0xb2,0xb5,
|
||||
0xab,0xf5,0x52,0x89,0xad,0x2f,0x01,0xca,0x75,0x54,0xf9,0xa6,0xb3,0x16,0xae,0x17,
|
||||
0x68,0x2e,0x31,0x9e,0xba,0xef,0xbf,0xf8,0xb7,0xbb,0xbf,0x5d,0xb8,0x52,0xbe,0x40,
|
||||
0x63,0x0d,0x0b,0x97,0x81,0xe6,0xf7,0x7d,0x36,0xcc,0xac,0xd9,0x4d,0x86,0x4f,0xc2,
|
||||
0x5e,0x2d,0x32,0x91,0x2e,0x33,0xbc,0x72,0x02,0xd2,0x79,0xe1,0x43,0xdd,0x27,0xb8,
|
||||
0x23,0xdc,0x12,0x3d,0xeb,0x97,0x02,0xed,0x37,0x39,0xd4,0xf8,0xd7,0x3b,0xb4,0x83,
|
||||
0x2a,0xe3,0x78,0xbc,0x26,0x44,0xb7,0xd4,0x38,0xf3,0x1d,0x75,0xe0,0xa5,0xa8,0x81,
|
||||
0xc7,0xa9,0x51,0x3d,0xab,0x17,0xae,0xdf,0x0e,0x94,0x98,0x39,0x7d,0x8e,0x4a,0xfb,
|
||||
0xa1,0x99,0xcc,0x38,0x7f,0x20,0xe2,0x4f,0xfd,0xab,0xae,0x4b,0x13,0x3b,0xf3,0x35,
|
||||
0xa3,0x5e,0x9b,0x5f,0xc6,0xdb,0x9b,0x5f,0xa5,0xd5,0xb0,0xe8,0xbd,0x22,0x1f,0x53,
|
||||
0x5e,0x7e,0x77,0x01,0x7f,0xb8,0x59,0x77,0x35,0xa9,0x77,0x1b,0x54,0xf9,0x36,0xe9,
|
||||
0xad,0xe4,0xf7,0x22,0xdc,0xa8,0x6f,0x29,0xa7,0x10,0x7e,0x25,0xc1,0xd9,0x49,0x20,
|
||||
0x8a,0x9f,0xbb,0x85,0xf1,0x58,0x6b,0x4e,0xf5,0x42,0x6e,0x33,0x83,0x63,0x30,0x32,
|
||||
0x6b,0x65,0xa6,0x42,0xa3,0xce,0xba,0xcc,0x94,0xb4,0xa6,0x4b,0x89,0x3c,0x2d,0x11,
|
||||
0xfa,0x07,0x01,0x29,0x20,0x8f,0x30,0xf5,0x05,0x1e,0x78,0x4f,0x1c,0x15,0x56,0x46,
|
||||
0x73,0x94,0x39,0x9c,0x66,0xd9,0x06,0x46,0xf3,0x3f,0x0e,0xf5,0xe2,0xe1,0x22,0xe0,
|
||||
0xb6,0x82,0xba,0xba,0x14,0xeb,0x8a,0x70,0xa7,0x9e,0x07,0x3c,0x15,0x71,0xcf,0x02,
|
||||
0xb8,0x87,0xc3,0x6c,0xb9,0x88,0x61,0x6e,0x96,0xaa,0xba,0x2d,0x2c,0x95,0x82,0xd7,
|
||||
0x22,0xfc,0xdf,0x71,0xc8,0xdb,0xaa,0xbb,0x9d,0xed,0x76,0xc0,0xa9,0x3b,0xa4,0xfe,
|
||||
0x21,0xf9,0x95,0x93,0x00,0xcb,0x70,0x5d,0x45,0x91,0x3b,0x39,0xc7,0xef,0x56,0x69,
|
||||
0x96,0xf6,0x26,0xc9,0x74,0x39,0x3e,0x1b,0x8e,0xb0,0xe2,0x12,0x4b,0x8b,0x3c,0xba,
|
||||
0x82,0xa5,0x00,0xa0,0xb2,0x54,0x07,0x74,0x9e,0xdd,0x2a,0x89,0x08,0x5a,0x9a,0x5a,
|
||||
0x56,0x85,0x14,0x2d,0x27,0x90,0xa4,0x9e,0x08,0x3f,0x51,0x5f,0x94,0xae,0xcb,0x47,
|
||||
0x85,0x51,0xe1,0xf2,0x4b,0x25,0x24,0x61,0x86,0x42,0x0b,0x80,0xd8,0x12,0x3c,0x6d,
|
||||
0xc0,0x3d,0x6d,0xcf,0xaa,0xb5,0x2e,0x2e,0xe5,0x5e,0x86,0xb0,0x6e,0xc6,0x36,0x93,
|
||||
0xed,0x32,0xcd,0xaa,0xc5,0x96,0x27,0xdd,0x6f,0x76,0xd8,0x2a,0xb6,0x43,0x75,0x45,
|
||||
0x2d,0xbf,0x32,0x4b,0x21,0xc0,0x15,0xc7,0x7e,0x94,0x0f,0x31,0x6a,0x03,0x82,0x43,
|
||||
0x64,0x72,0x09,0xe6,0xaa,0x06,0xe1,0xb9,0x1c,0xe7,0x28,0xd6,0x7c,0x7f,0x52,0xb2,
|
||||
0x9b,0xd4,0x9c,0x86,0xf9,0x67,0x9f,0x1e,0x6b,0x01,0xf5,0xf4,0x36,0xda,0x5a,0x74,
|
||||
0x38,0x1a,0x6d,0x09,0x01,0x2d,0xa0,0x90,0x7b,0x24,0x01,0xca,0x89,0xf5,0x24,0xd6,
|
||||
0x57,0xaa,0x1a,0xd2,0xc6,0x67,0xb4,0xcd,0x1c,0xc2,0x13,0x70,0x2f,0xdc,0xb1,0xcb,
|
||||
0x85,0xd9,0x13,0x22,0xa9,0x44,0xa9,0x2d,0x95,0xb6,0xb8,0xcb,0x23,0xe9,0xd2,0xf3,
|
||||
0x88,0x4f,0xfe,0x1a,0x87,0xb5,0x6a,0x16,0x74,0xf7,0x29,0x91,0x66,0x37,0x76,0xb1,
|
||||
0xab,0xc3,0xb6,0x90,0x9e,0xa3,0x3d,0x10,0x1d,0x2c,0x01,0xf5,0xf3,0x3a,0x7a,0x78,
|
||||
0xfd,0x6b,0x46,0xca,0x39,0x52,0x97,0x08,0x82,0x77,0x4b,0x18,0x32,0x3d,0xf2,0x36,
|
||||
0xe4,0x6f,0xa0,0x38,0xb4,0x01,0xd0,0x10,0x2f,0xb7,0x37,0xf2,0x0a,0x69,0x64,0x2e,
|
||||
0x22,0xcb,0x67,0xee,0xff,0x00,0x70,0xf7,0x3d,0xc5,0x6b,0x3d,0xf2,0xf2,0xbb,0x8b,
|
||||
0xb2,0x31,0x98,0x92,0x1c,0x8b,0x62,0x89,0xf3,0x25,0xa6,0x62,0x25,0x5d,0x29,0x58,
|
||||
0x41,0xf4,0x5b,0x80,0x05,0xa8,0x9e,0xfc,0xab,0x8e,0xc1,0x29,0x03,0x48,0x80,0x49,
|
||||
0x00,0x0e,0x49,0xf6,0x15,0xd8,0x63,0xd8,0xf5,0xcb,0x2c,0xc8,0x2d,0xb6,0x3b,0x3c,
|
||||
0x27,0x6e,0x17,0x6b,0x8c,0x96,0xe2,0x44,0x86,0xc2,0x79,0x71,0xe7,0x96,0xa0,0x94,
|
||||
0x21,0x23,0xea,0x49,0x03,0xf5,0xab,0xe1,0xd9,0x67,0x87,0xb6,0x17,0xb6,0x3c,0x72,
|
||||
0xdf,0x77,0xbd,0x41,0x87,0x93,0x6a,0x5b,0x88,0x4b,0xd2,0xaf,0x32,0x1a,0x0e,0x22,
|
||||
0x0b,0x9c,0x7f,0x57,0x10,0x28,0x7c,0x81,0x3c,0xf1,0xe6,0x76,0x5a,0xcf,0x27,0xb0,
|
||||
0x21,0x29,0xe8,0x34,0x54,0x70,0xe1,0xf4,0xd1,0xd2,0xd3,0xb6,0xcc,0x60,0x00,0x0f,
|
||||
0x4f,0xfd,0xeb,0xd4,0xa8,0x09,0x2e,0x37,0x2a,0x9b,0x70,0xdd,0xb4,0xeb,0xac,0xde,
|
||||
0x2e,0x58,0xd6,0x9b,0x67,0x29,0x0e,0xb0,0xeb,0x62,0x6c,0x3b,0x44,0xa6,0x92,0xb6,
|
||||
0x9c,0x6d,0x48,0x71,0x21,0xce,0x90,0x0a,0x56,0x85,0x29,0x24,0x73,0xf3,0x05,0x11,
|
||||
0xdc,0x1a,0xc7,0x32,0xbd,0x30,0xd4,0xdd,0x24,0xb7,0xcb,0x6f,0x23,0xc5,0x72,0xac,
|
||||
0x3e,0x05,0xc1,0x29,0x8f,0x24,0x5c,0x60,0x49,0x86,0xcc,0x94,0x85,0x85,0xa5,0x0b,
|
||||
0xea,0x4a,0x52,0xb1,0xd4,0x84,0xa8,0x03,0xcf,0x74,0x83,0xec,0x2b,0xd3,0x65,0x71,
|
||||
0xae,0x76,0xc8,0x77,0xab,0x7c,0x98,0x17,0x08,0x8c,0x4f,0x83,0x25,0xb2,0xd3,0xf1,
|
||||
0x64,0xb6,0x1c,0x69,0xd4,0x11,0xc1,0x4a,0x92,0xa0,0x42,0x81,0x1e,0xa0,0xd5,0xd1,
|
||||
0x63,0x49,0xb9,0x1f,0xfc,0x38,0xfa,0x2a,0x2a,0xc4,0xf0,0x3f,0xcd,0xc3,0xd8,0xf6,
|
||||
0xa9,0x61,0xee,0xba,0x94,0x98,0xd2,0xa1,0xdd,0xa3,0xb6,0x4f,0x75,0x79,0x88,0x71,
|
||||
0xa7,0x48,0x1f,0x87,0x94,0xcf,0xf8,0x85,0x5a,0x25,0x68,0x0d,0x2e,0xd9,0x86,0x0b,
|
||||
0xa2,0x1a,0xf1,0x74,0xd4,0x8c,0x09,0x93,0x8e,0x33,0x78,0xb5,0x3d,0x6d,0xb8,0xe3,
|
||||
0xac,0x27,0xfa,0x12,0x96,0xa7,0x59,0x75,0x0f,0x32,0x39,0xfb,0xa2,0x0b,0x4a,0x05,
|
||||
0x03,0x94,0x9e,0xb1,0xd2,0x11,0xc1,0x0a,0xdf,0xf5,0xed,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0xb5,0xde,0x33,0xb7,0xad,0x38,0xc3,0xf5,0x03,0x21,0xce,0x2d,0x38,
|
||||
0x7d,0xae,0x36,0x5b,0x7e,0x91,0xf1,0x53,0xae,0xc5,0x80,0xb7,0xd4,0xe7,0x48,0x04,
|
||||
0xa1,0x4a,0xe7,0xcb,0x0a,0x23,0xa9,0x41,0x1d,0x3d,0x4a,0x25,0x4a,0xe4,0xf7,0xad,
|
||||
0x89,0x4a,0x22,0xfc,0x23,0x91,0x51,0xc3,0x72,0x9b,0x06,0xd2,0x6d,0xca,0x5a,0xa5,
|
||||
0xae,0xe3,0x62,0x8f,0x8e,0xe5,0x4a,0x6d,0x42,0x3e,0x49,0x66,0x65,0x2c,0xc8,0x43,
|
||||
0x9d,0xb8,0x2e,0xa5,0x3c,0x25,0xf4,0xf6,0x00,0x85,0x82,0x78,0xe4,0x25,0x48,0x27,
|
||||
0x9a,0x92,0x14,0xa2,0x2f,0x34,0xfb,0x8d,0xdb,0xbe,0x57,0xb6,0x3d,0x4d,0x9d,0x86,
|
||||
0x65,0x6c,0x0f,0x39,0xb1,0xe7,0x43,0x9e,0xc8,0x3e,0x44,0xf8,0xe4,0x90,0x87,0x9b,
|
||||
0x27,0xd8,0xf0,0x41,0x1e,0xa9,0x50,0x20,0xfa,0x56,0x35,0xa7,0x1a,0x53,0x98,0xea,
|
||||
0xfe,0x40,0xdd,0x93,0x0b,0xc6,0xae,0x59,0x35,0xcd,0x45,0x20,0xb1,0x6e,0x8e,0xa7,
|
||||
0x3c,0xb0,0x4f,0x01,0x4e,0x28,0x7c,0xad,0xa7,0xf9,0x94,0x42,0x47,0xb9,0xaf,0x40,
|
||||
0xbb,0xad,0xd9,0xe6,0x1d,0xbb,0x9b,0x5e,0x2f,0x0f,0x29,0x7e,0x55,0xbd,0x56,0x2b,
|
||||
0x87,0xc5,0x22,0x65,0xbf,0xa4,0x48,0x71,0x85,0x20,0x87,0x63,0x05,0x28,0x10,0x94,
|
||||
0xac,0x86,0xd4,0x55,0xc1,0x20,0xb6,0x38,0xf5,0x35,0xb3,0x74,0xcf,0x4a,0xb1,0x1d,
|
||||
0x1a,0xc5,0x23,0xe3,0x78,0x4e,0x3f,0x0b,0x1c,0xb2,0xb0,0x7a,0x84,0x58,0x4d,0xf1,
|
||||
0xd6,0xae,0x00,0x2b,0x71,0x47,0x95,0x38,0xb2,0x00,0xe5,0x6b,0x25,0x47,0x81,0xc9,
|
||||
0x34,0x45,0x4e,0x58,0x17,0x83,0x9e,0xb9,0xe4,0xb1,0x52,0xe5,0xf6,0x7e,0x37,0x87,
|
||||
0x30,0xa5,0x02,0xe4,0x69,0x93,0xd7,0x25,0xfe,0x40,0x3c,0x1e,0x96,0x10,0xb6,0xcf,
|
||||
0x1c,0x91,0xdd,0xc1,0xeb,0x59,0xbd,0xdb,0xc1,0x0f,0x3a,0x66,0x12,0x95,0x6c,0xd4,
|
||||
0x9c,0x7a,0x64,0xbe,0x3e,0x56,0xa5,0xc3,0x7d,0x86,0xc9,0xfc,0x56,0x9e,0xb2,0x3f,
|
||||
0xc3,0x57,0x03,0x4a,0x22,0xf3,0xf1,0xac,0x3e,0x1a,0xda,0xf7,0xa3,0x50,0x64,0xdc,
|
||||
0x65,0xe2,0x43,0x26,0xb4,0x47,0x3f,0x79,0x3f,0x18,0x7b,0xe3,0x40,0x1f,0xc5,0xe4,
|
||||
0x80,0x1e,0x09,0x1d,0xc9,0x51,0x6f,0x80,0x07,0x72,0x2a,0x2f,0xad,0x0a,0x6d,0x6a,
|
||||
0x42,0xd2,0x52,0xb4,0x9e,0x0a,0x54,0x38,0x20,0xfd,0x2b,0xd5,0x3d,0x44,0x3d,0xe5,
|
||||
0x78,0x73,0xe0,0xfb,0x9e,0xb7,0xce,0xbe,0x59,0x9a,0x8d,0x88,0x6a,0x3f,0x4a,0x9c,
|
||||
0x6a,0xf3,0x1d,0xae,0x19,0x9e,0xe7,0x1d,0x91,0x31,0x09,0x1f,0x30,0x3c,0x71,0xe6,
|
||||
0x8f,0x9d,0x3d,0x8f,0xce,0x07,0x41,0x22,0xa1,0x3a,0x56,0x4b,0xa9,0x1a,0x71,0x91,
|
||||
0xe9,0x1e,0x6f,0x76,0xc4,0x72,0xdb,0x5b,0xd6,0x6c,0x82,0xd6,0xf7,0x93,0x26,0x23,
|
||||
0xdc,0x12,0x93,0xc0,0x29,0x52,0x48,0xec,0xa4,0xa9,0x24,0x29,0x2a,0x04,0x85,0x24,
|
||||
0x82,0x09,0x06,0xb9,0x3a,0x51,0xa5,0x39,0x3e,0xb6,0x67,0xb6,0xac,0x3b,0x10,0xb6,
|
||||
0xae,0xe9,0x7c,0xb9,0x39,0xd0,0xd3,0x49,0xec,0x94,0x24,0x77,0x53,0x8e,0x2b,0xd1,
|
||||
0x28,0x48,0xe4,0x95,0x1f,0x40,0x28,0x8b,0x14,0x65,0x97,0x24,0xbc,0x86,0x9a,0x42,
|
||||
0x9d,0x75,0xc5,0x04,0xa1,0x08,0x1c,0xa9,0x44,0xf6,0x00,0x01,0xea,0x6a,0x53,0xe9,
|
||||
0x07,0x86,0x56,0xbf,0x6a,0xec,0x18,0xb7,0x16,0x71,0x66,0xf1,0x3b,0x5c,0x8e,0xed,
|
||||
0xcc,0xca,0x1f,0xf8,0x23,0xc7,0xf1,0x16,0x42,0x54,0xf8,0x1e,0xe0,0xf9,0x7c,0x11,
|
||||
0xdc,0x72,0x2a,0xd4,0xf6,0x75,0xe1,0xf1,0x81,0xed,0x6a,0xd5,0x0e,0xeb,0x2a,0x34,
|
||||
0x7c,0xa7,0x51,0x14,0x80,0xa9,0x19,0x04,0xa6,0x82,0x84,0x55,0x94,0xf0,0xa4,0x44,
|
||||
0x4a,0x87,0xdd,0x24,0x72,0xa1,0xd7,0xfb,0x6a,0x04,0xf2,0x40,0x21,0x29,0x95,0x74,
|
||||
0x45,0x50,0x16,0xef,0x04,0x3c,0xe1,0xd8,0x69,0x5c,0xfd,0x4b,0xc7,0xe3,0x4c,0x23,
|
||||
0x95,0x35,0x1e,0x13,0xef,0x36,0x0f,0xfb,0xe7,0xa0,0x9f,0xf0,0xd6,0xbe,0xcf,0x7c,
|
||||
0x1d,0x75,0xd7,0x16,0x69,0x6f,0x58,0xde,0xc6,0xf3,0x26,0xc1,0x3d,0x2c,0xdb,0xee,
|
||||
0x06,0x3b,0xe4,0x7d,0x4a,0x64,0x21,0xb4,0x0f,0xd1,0x66,0xaf,0x02,0x94,0x45,0xe5,
|
||||
0xf3,0x3f,0xd3,0x4c,0xb3,0x4a,0xef,0xee,0xd9,0x33,0x0c,0x72,0xe7,0x8d,0x5d,0x5b,
|
||||
0x27,0x98,0xd7,0x38,0xcb,0x65,0x4a,0x00,0xf1,0xd4,0x9e,0xa1,0xc2,0xd2,0x7d,0x94,
|
||||
0x9e,0x41,0xf5,0x04,0x8a,0xce,0x76,0xbd,0xb6,0x4c,0xaf,0x75,0x5a,0x9b,0x1b,0x12,
|
||||
0xc6,0x52,0x98,0xcc,0x36,0x91,0x22,0xe7,0x76,0x7d,0x3c,0xb3,0x6f,0x8d,0xd4,0x02,
|
||||
0x9c,0x50,0xe4,0x75,0x28,0xf3,0xc2,0x50,0x0f,0x2a,0x3f,0x40,0x14,0xa4,0xfa,0x18,
|
||||
0xd5,0x6d,0x1d,0xc3,0x35,0xc3,0x13,0x7f,0x1b,0xce,0x71,0xe8,0x59,0x15,0xa5,0xce,
|
||||
0x4a,0x5a,0x94,0x8f,0x9d,0x95,0xf0,0x47,0x98,0xd3,0x83,0x85,0x36,0xb0,0x09,0x01,
|
||||
0x68,0x20,0xf7,0x3d,0xfb,0xd6,0xbf,0xda,0x6e,0xd2,0x31,0x6d,0xa2,0xe2,0x17,0xbb,
|
||||
0x16,0x37,0x2e,0x4d,0xd1,0x57,0x5b,0x92,0xe7,0x3d,0x70,0x9e,0x84,0x09,0x05,0xbe,
|
||||
0x3a,0x59,0x65,0x4a,0x48,0x01,0x41,0xb4,0xf3,0xdf,0x81,0xca,0x96,0xb5,0x00,0x9e,
|
||||
0xae,0x01,0x17,0x5d,0xb7,0x2d,0x8b,0xe9,0x36,0xda,0xed,0x71,0xfe,0xc3,0xc7,0x63,
|
||||
0xdd,0xf2,0x30,0x84,0x89,0x19,0x1d,0xe1,0xa4,0xbf,0x31,0xc5,0x8e,0x79,0x28,0x2a,
|
||||
0x1c,0x32,0x93,0xcf,0xec,0xb6,0x13,0xc8,0x03,0xa8,0xa8,0x8e,0x6a,0x41,0xd2,0x94,
|
||||
0x45,0xae,0xef,0x1b,0x7b,0xd3,0xab,0xee,0xa5,0xd8,0x75,0x0a,0x56,0x23,0x6d,0x19,
|
||||
0x9d,0x91,0xc7,0x1c,0x89,0x78,0x65,0x90,0xd3,0xc4,0xad,0xb5,0x36,0x7c,0xc2,0x9e,
|
||||
0x03,0xbc,0x05,0x12,0x9e,0xbe,0xae,0x93,0xdd,0x3c,0x1a,0xd8,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x14,0x2e,
|
||||
0xf1,0x31,0xd9,0xbb,0x3b,0x8c,0xd2,0xc7,0x72,0xcc,0x76,0x08,0x5e,0xa2,0x62,0xf1,
|
||||
0xd6,0xf4,0x5f,0x21,0xa2,0xa7,0x6e,0x51,0x07,0x2a,0x72,0x21,0xe3,0xba,0x95,0xea,
|
||||
0xb6,0xfb,0x13,0xd5,0xca,0x40,0x1e,0x61,0x23,0xb8,0xf0,0xe7,0xd9,0xd4,0x5d,0xb0,
|
||||
0xe9,0x2b,0x17,0x6b,0xd4,0x44,0x1d,0x45,0xc9,0x18,0x6e,0x45,0xd5,0xe5,0x77,0x54,
|
||||
0x36,0x8f,0xcc,0xdc,0x34,0x9e,0x3b,0x74,0x72,0x0a,0xf8,0xf5,0x73,0x9e,0xea,0x4a,
|
||||
0x51,0xc4,0xb9,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,
|
||||
0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,
|
||||
0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,
|
||||
0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x7f,0xff,0xd9};
|
|
@ -0,0 +1,318 @@
|
|||
//
|
||||
// ncc1701
|
||||
// Data size = 4912 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 77, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t ncc1701[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x48,
|
||||
0x00,0x48,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0x4d,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1d,0x00,0x00,0x01,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x06,0x07,0x08,0x09,0x04,0x03,0x02,0x0a,
|
||||
0xff,0xc4,0x00,0x40,0x10,0x00,0x01,0x03,0x03,0x02,0x03,0x06,0x03,0x05,0x04,0x09,
|
||||
0x05,0x01,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x11,0x06,0x07,0x12,0x21,
|
||||
0x31,0x08,0x13,0x41,0x51,0x61,0x71,0x09,0x22,0x81,0x14,0x32,0x91,0xa1,0xb1,0x15,
|
||||
0x42,0x52,0x62,0x16,0x23,0x24,0x53,0x63,0x72,0x73,0x82,0xb2,0x17,0x33,0x92,0xa2,
|
||||
0xd1,0xf0,0xff,0xc4,0x00,0x1a,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0xff,0xc4,
|
||||
0x00,0x23,0x11,0x00,0x02,0x02,0x01,0x05,0x01,0x00,0x02,0x03,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x02,0x11,0x12,0x03,0x21,0x31,0x41,0x51,0x04,0x05,0x13,
|
||||
0x22,0x32,0x61,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,0x3f,
|
||||
0x00,0xd5,0x3a,0x2b,0x2c,0xb5,0xcf,0x6f,0x7d,0xd3,0xb4,0x6f,0x56,0xa3,0x65,0x1a,
|
||||
0xa2,0xd5,0x67,0xb0,0x5b,0xae,0x92,0x21,0x26,0xcf,0x22,0x02,0x56,0xa8,0xe1,0xb5,
|
||||
0x94,0x29,0x0e,0x2f,0xf7,0xd4,0x38,0x4e,0x4e,0x71,0x9e,0x94,0xa9,0x74,0xed,0xfb,
|
||||
0x3e,0xee,0xdb,0xc1,0x1a,0xd1,0x49,0xe2,0xf9,0x55,0xf6,0x76,0x92,0xd8,0x48,0xf4,
|
||||
0xc5,0x5a,0x8d,0x91,0x97,0xf8,0x69,0xc1,0x21,0x23,0x24,0xe0,0x79,0x9a,0x4e,0xb8,
|
||||
0x6a,0x5b,0x4d,0xa5,0x95,0x3b,0x36,0xe7,0x12,0x2b,0x69,0xea,0xa7,0x9f,0x4a,0x40,
|
||||
0xe7,0x8f,0x13,0x59,0x3d,0x74,0xed,0x71,0x2a,0xf8,0x15,0x19,0x7a,0xaa,0xe1,0x29,
|
||||
0xb0,0x4a,0x80,0x0f,0x9c,0x67,0xd8,0x54,0x69,0x72,0xdc,0xa9,0xbb,0x85,0xaa,0x58,
|
||||
0xb6,0x37,0x71,0x90,0xa8,0xe9,0x52,0x78,0xbb,0xd7,0x4f,0xcd,0x9c,0xa9,0xc5,0x7b,
|
||||
0xf0,0x80,0x91,0xea,0xb2,0x7c,0x05,0x0e,0x2a,0x2a,0xdb,0x1c,0x5c,0xa5,0x25,0x14,
|
||||
0xb7,0x66,0xd0,0x23,0x5d,0x58,0x1e,0x68,0xba,0xcd,0xd2,0x3c,0x96,0x87,0x55,0xb0,
|
||||
0xae,0xf0,0x0f,0x72,0x33,0x4a,0xb0,0x6e,0x71,0x2e,0x6d,0x97,0x22,0x49,0x6a,0x4a,
|
||||
0x07,0x52,0xd2,0xc2,0xb1,0xef,0xe5,0x59,0x85,0x62,0xd7,0x57,0x6d,0x31,0x6f,0x61,
|
||||
0x88,0xb3,0x1c,0x8c,0xd0,0x48,0x09,0x6a,0x2b,0x9c,0x28,0x23,0xa6,0x08,0x14,0xbb,
|
||||
0xa1,0xb7,0x73,0x50,0x6d,0xfe,0xa9,0x62,0xfb,0x0e,0x5a,0xd6,0x90,0xa1,0xf6,0xa8,
|
||||
0xae,0x2f,0xfa,0xb9,0x0d,0xe7,0xe6,0x0a,0xf5,0xc7,0x43,0xd4,0x57,0x04,0x3e,0x87,
|
||||
0x39,0xe3,0x8e,0xde,0x9e,0xcc,0xff,0x00,0x1e,0xe3,0x06,0xf2,0xdd,0x75,0x46,0x94,
|
||||
0xd4,0x4d,0xbe,0x1d,0xa7,0x74,0x46,0xc1,0x47,0x57,0xf4,0x8e,0x54,0x97,0xe7,0xf7,
|
||||
0x1f,0x69,0x16,0xeb,0x7b,0x05,0xe7,0xcb,0x5c,0x5c,0x3c,0x64,0x0e,0x41,0x39,0xe5,
|
||||
0x92,0x6a,0x4e,0xb4,0x5c,0x9b,0xbc,0xda,0xa1,0x4f,0x64,0x29,0x2c,0xca,0x61,0x0f,
|
||||
0xa0,0x2f,0xa8,0x4a,0x92,0x14,0x33,0xeb,0x83,0x55,0xb3,0xb6,0x8f,0x64,0x16,0xfb,
|
||||
0x43,0x69,0xe5,0x5d,0x74,0xf3,0xa9,0xb6,0xeb,0x78,0xcd,0xa1,0x94,0x48,0x2e,0x14,
|
||||
0x22,0x5c,0x74,0x92,0xae,0xe1,0x67,0xa0,0xe6,0x72,0x0e,0x3a,0xfa,0x1a,0xed,0x47,
|
||||
0x8e,0xef,0xa2,0x3c,0x87,0xf1,0x5d,0xd0,0x37,0x1b,0xdc,0x78,0x4c,0x69,0x2d,0x42,
|
||||
0x86,0x1d,0x59,0x4f,0xda,0x5f,0x4b,0x48,0x03,0xc8,0xf0,0xf1,0x13,0x52,0x2a,0x7b,
|
||||
0x76,0xe8,0x76,0x16,0x15,0x36,0xf1,0x62,0x8a,0xc9,0x03,0x90,0xb8,0x95,0x2c,0x79,
|
||||
0xe4,0x70,0x01,0xf9,0xd6,0x7c,0x5c,0x3e,0x17,0xbb,0xbd,0x76,0x9a,0xa9,0x32,0x74,
|
||||
0xeb,0xfc,0x44,0xf3,0x4a,0x2e,0xd1,0x42,0x4f,0xfe,0xf5,0xf2,0x9f,0x85,0x8e,0xe7,
|
||||
0x05,0x64,0xe8,0xf5,0xaf,0x3f,0xc5,0x79,0x8c,0x3f,0x45,0xd5,0xac,0x48,0xdc,0xbe,
|
||||
0x37,0x0f,0x88,0xee,0xd5,0x5b,0xd4,0xb4,0x1d,0x49,0x09,0xf5,0x85,0x72,0xee,0x3e,
|
||||
0x6e,0x5e,0x5f,0x7b,0xf3,0xa6,0xfb,0x7f,0x12,0x8d,0x03,0x32,0x52,0x1a,0x8d,0x70,
|
||||
0x95,0x21,0xd5,0xa4,0x84,0xa1,0xa6,0x40,0x41,0xc7,0x89,0x51,0x49,0xc7,0xe3,0x55,
|
||||
0x1d,0x9f,0x87,0x06,0xf3,0x45,0x42,0x5a,0x6b,0x4b,0x0e,0xe9,0x09,0x09,0x40,0xfd,
|
||||
0xb1,0x1c,0x60,0x0f,0xf7,0xd3,0x23,0x78,0x3b,0x2d,0xee,0x3e,0xc8,0x59,0x61,0xcf,
|
||||
0xd4,0x56,0x25,0x43,0x8f,0x31,0xd3,0x1d,0x90,0xdd,0xd1,0x32,0x14,0x55,0x8e,0x25,
|
||||
0x7c,0x89,0x59,0xe5,0x81,0xcc,0xe3,0x1d,0x3c,0xc5,0x52,0x51,0x25,0xe4,0x5e,0xb9,
|
||||
0x5d,0xbe,0x6c,0xf7,0x04,0xb4,0x44,0x47,0xca,0x51,0xf3,0x25,0x62,0x62,0x9b,0xe2,
|
||||
0xf7,0xe0,0xc6,0x7e,0xb5,0x0e,0xeb,0x8e,0xda,0x2b,0xd7,0x9b,0x8b,0x21,0xa4,0x5b,
|
||||
0xdb,0x72,0xdf,0x67,0x8a,0xca,0x61,0x43,0x7d,0xe5,0x29,0x0f,0x4e,0x7d,0x44,0x77,
|
||||
0xce,0xf5,0xe2,0x4b,0x68,0x4f,0xca,0x8e,0x9c,0x4a,0xc9,0x04,0xa4,0x62,0xb3,0xed,
|
||||
0xa7,0x67,0xdd,0xd2,0xde,0x0d,0x38,0xab,0xc6,0x8d,0xd2,0x53,0x6f,0x36,0xa6,0x9e,
|
||||
0x54,0x55,0x4b,0x44,0x86,0x5b,0x47,0x7a,0x8f,0xbc,0x91,0xc6,0xe2,0x49,0xc6,0x7c,
|
||||
0x05,0x3a,0xae,0x7d,0x8d,0x77,0x77,0x44,0xc0,0x73,0x53,0x5c,0xf4,0xa3,0x36,0x70,
|
||||
0x90,0x95,0x2c,0x4a,0xbc,0xc6,0xef,0x57,0xc1,0x92,0x02,0x51,0xde,0x7c,0xca,0xeb,
|
||||
0x80,0x32,0x4d,0x14,0xba,0x1a,0x6d,0x34,0xe4,0x4d,0x32,0x37,0x09,0xf9,0x17,0x98,
|
||||
0xd3,0xad,0x89,0x5d,0xa2,0x60,0x56,0x59,0x76,0x1b,0x84,0x38,0x95,0x79,0xf1,0x0e,
|
||||
0x64,0x9f,0x1f,0x3a,0xb8,0x9b,0x5f,0xda,0x21,0x2e,0x6d,0x4a,0xae,0x5a,0xb0,0x3d,
|
||||
0xfb,0x7e,0x0a,0x9c,0x60,0xb2,0xdc,0x65,0x87,0x26,0xf0,0xa4,0x14,0x2d,0x29,0xc7,
|
||||
0xef,0x03,0x83,0xe1,0x90,0x6b,0x3d,0xf4,0x9e,0xe0,0xea,0x7d,0x1f,0x2a,0x35,0xd2,
|
||||
0x26,0x9c,0x96,0xd4,0xb0,0x8e,0x5c,0x6c,0xa5,0x4a,0x46,0x7a,0x8c,0x78,0x7e,0x19,
|
||||
0xa5,0xbd,0x6b,0xda,0xf3,0x77,0xae,0x31,0x5e,0x8f,0x06,0xcf,0x2d,0xb0,0xe8,0x21,
|
||||
0x45,0x0c,0x84,0xf5,0xf5,0x3e,0xc2,0xb0,0xd3,0xd0,0x92,0x79,0x49,0xf3,0xd1,0xea,
|
||||
0x7d,0x9f,0x6e,0x9e,0xb2,0x5a,0x70,0x82,0x55,0xd9,0xe1,0xda,0xb3,0xb5,0xe6,0xe5,
|
||||
0x6b,0x2b,0xf1,0x6f,0x4d,0xdb,0xee,0x96,0x48,0x2c,0x8e,0x14,0xa2,0x52,0xd2,0x86,
|
||||
0xc1,0x1e,0x21,0x23,0x1f,0x89,0xc9,0xa8,0x0b,0x47,0x76,0xbb,0xdf,0xad,0xb3,0xd4,
|
||||
0x0c,0x5c,0xe2,0x6b,0x34,0x84,0x21,0xde,0xf1,0xdb,0x6c,0xb7,0x9b,0x5c,0x47,0xc7,
|
||||
0x8a,0x56,0xdf,0xaf,0x98,0xc1,0xf5,0xa6,0xce,0xb0,0xb5,0xee,0x7e,0xb8,0x94,0xeb,
|
||||
0xb3,0xad,0xf2,0xd6,0x56,0x4a,0x88,0x53,0xcd,0xa0,0x7f,0xca,0x9a,0xe7,0x63,0xf5,
|
||||
0x8c,0x97,0x56,0xa7,0x2d,0xcc,0x45,0x49,0x51,0x20,0x3d,0x2d,0x2a,0xe1,0x19,0xe4,
|
||||
0x39,0x12,0x6b,0xa1,0xa5,0xc2,0x3c,0xa4,0xfd,0x35,0xbb,0x63,0xbe,0x27,0xdb,0x69,
|
||||
0xb8,0x8c,0xd9,0xad,0x9a,0xad,0xd3,0xa4,0xb5,0x34,0xc2,0x86,0x1c,0x4a,0xb2,0xe4,
|
||||
0x12,0xe9,0x38,0xf9,0x5e,0xc0,0xc2,0x49,0xfe,0x20,0x31,0x9a,0xb9,0x48,0x5a,0x5d,
|
||||
0x42,0x56,0x85,0x05,0xa1,0x43,0x21,0x49,0x39,0x04,0x79,0x8a,0xfc,0xe9,0x7f,0xd0,
|
||||
0x8b,0xe1,0x6b,0x8a,0x7d,0xce,0x04,0x56,0x5b,0x19,0x21,0x2b,0x5b,0x9c,0x3f,0x4e,
|
||||
0x11,0xe7,0x56,0xf7,0x6a,0x7b,0x6d,0xee,0x26,0xd6,0xe8,0x4b,0x46,0x91,0x6f,0x53,
|
||||
0x37,0xa8,0x51,0x6d,0x68,0x47,0x8d,0x21,0x56,0xd0,0xe3,0x81,0xb1,0xf7,0x52,0xa5,
|
||||
0xa8,0x92,0xae,0x11,0xcb,0x9f,0x30,0x00,0x15,0x38,0x37,0xc1,0x59,0xa3,0x5c,0xa8,
|
||||
0xac,0xd7,0x8b,0xf1,0x26,0xdc,0x88,0x6e,0x23,0xbc,0xd3,0x16,0x8b,0x82,0x70,0x12,
|
||||
0x43,0xa5,0x4d,0x0c,0xff,0x00,0x17,0x25,0x79,0x53,0xd2,0xd5,0xf1,0x34,0xb8,0x96,
|
||||
0x12,0x2e,0x1b,0x7f,0x1c,0xba,0x4f,0x35,0x47,0xba,0x10,0x91,0xf4,0x2d,0x9f,0xd6,
|
||||
0xa7,0x09,0x0f,0x34,0x5f,0x4a,0x2a,0x87,0x5c,0xbe,0x23,0xd7,0x79,0x89,0x79,0x36,
|
||||
0xcd,0x2f,0x02,0x0a,0xd4,0x9c,0x36,0x66,0x3a,0xb7,0x78,0x4f,0x99,0xe1,0x23,0x3f,
|
||||
0x80,0xaf,0x58,0x3f,0x11,0xab,0x83,0xa9,0xee,0x9c,0xb3,0x59,0x97,0x25,0xbc,0x25,
|
||||
0xd0,0x97,0xdc,0x4f,0xcd,0xec,0x7a,0x51,0x84,0xbc,0x1e,0x51,0xf4,0xbd,0x94,0x55,
|
||||
0x2a,0x8f,0xdb,0xf6,0xed,0x24,0x9e,0x0d,0x39,0x6b,0x5e,0x3a,0xf0,0xc9,0x59,0xae,
|
||||
0x94,0xf6,0xf0,0xbc,0xf1,0x27,0x3a,0x6a,0xdf,0x8f,0x1c,0x3c,0xba,0x7f,0xae,0x5e,
|
||||
0x13,0x9c,0x4b,0x99,0x45,0x54,0xf8,0xbd,0xb9,0xdc,0x9a,0xf2,0x1a,0x6b,0x48,0x27,
|
||||
0x8d,0x47,0x1f,0x3d,0xc5,0x28,0x1f,0x8a,0x92,0x00,0xfa,0xd2,0xa0,0xed,0xc7,0x69,
|
||||
0x8f,0x29,0x6c,0xcc,0xd2,0xd2,0xd8,0xe1,0x1f,0x79,0x99,0x8d,0xbb,0xcf,0xcb,0x90,
|
||||
0x03,0x1e,0xa0,0xd2,0xc2,0x5e,0x0f,0x38,0x96,0x72,0x8a,0x80,0xed,0xbd,0xb4,0xf6,
|
||||
0xfe,0x67,0x00,0x92,0xdd,0xd6,0x02,0x8e,0x02,0x8b,0xb1,0x92,0xa4,0x8c,0xf5,0xe6,
|
||||
0x95,0x13,0x81,0xed,0x52,0x86,0x90,0xdd,0x7d,0x21,0xaf,0x55,0xc1,0x61,0xbf,0xc3,
|
||||
0xb8,0x3d,0x8c,0xf7,0x09,0x5f,0x03,0xb8,0xff,0x00,0x22,0xb0,0xaf,0xca,0x93,0x8b,
|
||||
0x5c,0xa2,0x93,0x4f,0x82,0xa9,0xf6,0x87,0xf8,0x68,0xe9,0xfd,0xd4,0xd6,0x37,0x3d,
|
||||
0x53,0xa5,0xee,0x31,0xec,0x57,0x0b,0xa3,0xcb,0x95,0x36,0x14,0xd6,0x4b,0xac,0x38,
|
||||
0xfa,0xce,0x56,0xea,0x54,0x0e,0x50,0x54,0x79,0x90,0x01,0x19,0xe7,0xca,0xab,0xad,
|
||||
0xfb,0xe1,0x55,0xb8,0x36,0xe0,0xe7,0xd9,0x53,0x62,0xbd,0x80,0x0f,0x09,0x62,0x62,
|
||||
0x9b,0x51,0xc7,0x41,0xfd,0x60,0x4e,0x0f,0xd6,0xb5,0x8a,0x8a,0x2f,0xa1,0xa6,0xd3,
|
||||
0x4e,0x2d,0xa6,0x8c,0x4d,0xba,0x76,0x16,0xdd,0x1d,0x21,0x24,0xba,0x8d,0xbd,0xba,
|
||||
0x2d,0x64,0x60,0x2e,0x08,0xfb,0x42,0x79,0xf2,0xe7,0xc2,0xa3,0x8a,0x61,0xc4,0xd2,
|
||||
0x3a,0xa3,0x6e,0x35,0x93,0x73,0x2f,0x7a,0x76,0xe1,0x6b,0x0c,0xab,0x81,0xc6,0xe6,
|
||||
0xc6,0x5b,0x7c,0xf0,0x46,0x32,0x46,0x39,0xa4,0x9f,0xc0,0x56,0xf7,0x57,0x2d,0xc2,
|
||||
0xd7,0x0e,0xec,0xc8,0x66,0x74,0x46,0x26,0x34,0x0e,0x7b,0xb9,0x0d,0xa5,0x69,0xcf,
|
||||
0xb1,0x14,0x95,0x25,0x55,0xb0,0xdc,0xa7,0x29,0x29,0xb9,0x36,0xd7,0xbb,0x99,0x3f,
|
||||
0x66,0xb8,0xc2,0xd4,0x76,0xc6,0x54,0xc3,0x8c,0x92,0x47,0xca,0x19,0x1c,0xc7,0xf9,
|
||||
0xbc,0xa9,0xd5,0xa4,0x34,0x74,0x9d,0x6f,0xa9,0xed,0xda,0x66,0xd6,0xeb,0x6e,0xdc,
|
||||
0xa7,0x28,0xf0,0x24,0x91,0xf2,0xb6,0x92,0x38,0xdc,0x50,0xeb,0xc2,0x07,0x3a,0x92,
|
||||
0x3b,0x54,0xfc,0x3b,0xd7,0x74,0x5c,0xfd,0x55,0xb4,0x6f,0xae,0xcf,0x70,0x73,0x89,
|
||||
0xe9,0x56,0x16,0x5d,0x2d,0xb6,0xe9,0xea,0x54,0xc1,0xe8,0x95,0x1f,0xe0,0x3c,0x8f,
|
||||
0x86,0x2a,0x95,0xec,0x47,0x66,0x6d,0xe6,0xbc,0xeb,0xbf,0xdb,0xf6,0x19,0x57,0x2d,
|
||||
0x33,0x78,0xb5,0xc8,0x52,0x11,0x7e,0xbb,0x3c,0xb6,0x92,0xca,0x81,0xc2,0x90,0x94,
|
||||
0x9f,0x9d,0x44,0x10,0x41,0x00,0x11,0xe0,0x48,0xae,0x58,0xfc,0xdf,0xca,0xd3,0xb5,
|
||||
0xe1,0xef,0x4b,0xf3,0x2f,0xf5,0xe2,0xe0,0x94,0xaa,0xac,0xdc,0x0b,0x3d,0xb5,0x16,
|
||||
0x6b,0x44,0x1b,0x7b,0x6a,0x2b,0x6e,0x2b,0x08,0x61,0x2a,0x57,0x52,0x12,0x90,0x90,
|
||||
0x7f,0x2a,0xeb,0x52,0x82,0x41,0x24,0x80,0x07,0x52,0x6a,0x09,0xb5,0x6a,0x5d,0x64,
|
||||
0x34,0x75,0xae,0xd9,0x7a,0xd4,0x31,0x9d,0xbb,0x30,0xc2,0x1b,0x99,0x73,0xb7,0xb1,
|
||||
0xdd,0x2a,0x4a,0xc0,0xe6,0xac,0x12,0x78,0x73,0xe9,0x49,0x93,0xe3,0x5c,0xae,0x4b,
|
||||
0xef,0x24,0xce,0x97,0x2d,0x58,0xe1,0x0b,0x5b,0xe5,0x39,0x1e,0xc2,0xbb,0xd6,0x93,
|
||||
0x7c,0x9f,0x36,0xf5,0x11,0x36,0xdd,0x75,0xd6,0x9e,0xb2,0x8c,0xcd,0xbc,0x43,0x63,
|
||||
0xd0,0xba,0x09,0xfc,0x05,0x34,0x6e,0x5d,0xa1,0x34,0x8c,0x0e,0x30,0xd3,0xf2,0xa6,
|
||||
0xad,0x3d,0x03,0x11,0xd5,0x85,0x7b,0x28,0xe0,0x54,0x50,0xe5,0x85,0xb6,0x1c,0x19,
|
||||
0x86,0xda,0x41,0xf1,0x48,0xfd,0x4d,0x76,0x31,0xa7,0xe1,0x05,0x25,0x6f,0xa5,0xa0,
|
||||
0x8f,0xe1,0x51,0xe5,0x8f,0xa5,0x68,0xb4,0x57,0x6c,0x87,0xa8,0xfa,0x16,0xa7,0x76,
|
||||
0xa5,0xef,0x90,0xeb,0x76,0xbd,0x33,0x29,0xd9,0x05,0x24,0x37,0xdf,0x38,0x30,0x15,
|
||||
0xfb,0xa4,0x84,0xe7,0x97,0xa6,0x6a,0xad,0xee,0x26,0xc5,0x6b,0x0d,0xfa,0xd4,0xcd,
|
||||
0xdd,0xf5,0x6d,0xd5,0x57,0x15,0xb4,0xf2,0xdd,0x8a,0xc4,0xf6,0xdd,0xee,0xa2,0x71,
|
||||
0x63,0x21,0x96,0x92,0xe8,0x08,0x18,0x03,0xdf,0x1c,0xce,0x6a,0xd1,0x31,0x36,0xc7,
|
||||
0x68,0xc0,0x8e,0xdb,0x09,0x23,0xc7,0x19,0x35,0xe8,0xf6,0xb6,0xb4,0x32,0x14,0xa2,
|
||||
0xf2,0x42,0xfc,0xea,0xd4,0x12,0xe1,0x12,0xe6,0xd9,0x18,0xed,0x46,0xd6,0xcd,0xd9,
|
||||
0x2d,0x22,0x2c,0x76,0x1b,0xc4,0xcb,0x45,0xb5,0x4a,0x5b,0xce,0xc5,0x8e,0xea,0x92,
|
||||
0xd2,0x9d,0x51,0xca,0xd6,0x02,0x8a,0x94,0x92,0x7d,0x15,0x49,0x1a,0xa6,0xd9,0x1d,
|
||||
0xc7,0x9c,0x71,0xf5,0xb9,0x31,0xf5,0x73,0x5b,0xaf,0x2c,0xa8,0x9f,0x52,0x4d,0x3c,
|
||||
0xf5,0x16,0xbb,0x87,0x27,0x88,0x21,0xf4,0x91,0x51,0xd5,0xe6,0xf4,0xdc,0xc2,0xae,
|
||||
0xed,0xc0,0xa1,0xe7,0x4d,0x40,0x97,0x21,0x87,0x7c,0x8e,0xc3,0x3c,0x5c,0x08,0x09,
|
||||
0x1e,0x43,0xa5,0x31,0xee,0x6f,0x36,0xd8,0x21,0x29,0x19,0xf1,0xe5,0x4f,0x6b,0xcb,
|
||||
0x0e,0x49,0x51,0x3c,0x49,0x03,0xde,0x9a,0x33,0xac,0xea,0x71,0x44,0x95,0xa7,0x1e,
|
||||
0xf4,0xe8,0x56,0x32,0x2e,0xb3,0x9c,0x42,0x95,0xc0,0x9e,0x25,0x63,0x09,0x40,0x20,
|
||||
0x64,0xf9,0x53,0x26,0xe1,0x71,0xbb,0xcd,0x9c,0x88,0xd8,0x10,0xf8,0x82,0xb0,0x09,
|
||||
0x07,0x8b,0xeb,0xed,0xfc,0x39,0xa7,0x3e,0xbe,0xdb,0x39,0xba,0x9e,0xf5,0x64,0x53,
|
||||
0x72,0x12,0xd5,0xba,0x3a,0xdc,0x54,0xa2,0x97,0x8b,0x6b,0xc1,0x03,0x87,0x87,0x1d,
|
||||
0x4e,0x45,0x23,0xbb,0xb5,0x37,0x5f,0xe9,0x55,0x9e,0x7b,0x97,0xa6,0xa7,0x43,0xb7,
|
||||
0x95,0xe0,0xba,0xde,0x1f,0x29,0x50,0xfb,0xa4,0x8e,0x4a,0xe9,0xd7,0x95,0x4d,0x31,
|
||||
0xec,0x21,0xbd,0x6e,0x6a,0xc7,0x0d,0x72,0xa6,0x4a,0x71,0xb6,0x9a,0x1c,0x4e,0x2b,
|
||||
0xbd,0x52,0x5b,0x03,0xa6,0x4f,0x32,0x6b,0x88,0xdf,0x2d,0xe5,0x02,0x42,0x1c,0x52,
|
||||
0x9a,0x73,0x07,0xbf,0x43,0x2a,0x29,0x20,0xf4,0xca,0xb1,0x52,0xc4,0xab,0x03,0x0e,
|
||||
0xa1,0x6d,0x38,0xd2,0x56,0xda,0xc7,0x09,0x0b,0x19,0x04,0x79,0x1a,0x6e,0x5b,0x74,
|
||||
0x13,0x36,0x10,0xf3,0x10,0x6e,0x12,0x23,0xc5,0x5a,0xb8,0x93,0x14,0x84,0xb8,0x86,
|
||||
0xfd,0x11,0xc4,0x09,0x03,0xd2,0x96,0x3b,0x8d,0x31,0xb5,0x3d,0x52,0xe1,0xc2,0x5b,
|
||||
0xcc,0xc4,0x5c,0xe5,0x80,0x08,0x65,0xb2,0x02,0x95,0xed,0x9e,0x54,0x8d,0x6d,0xd4,
|
||||
0x12,0x6e,0x0f,0x04,0x2a,0x13,0x71,0x95,0x9c,0x29,0xb7,0x1f,0xe1,0x75,0x1e,0xe9,
|
||||
0x20,0x7e,0x44,0xd4,0x93,0x6f,0xb0,0x45,0xb5,0xf7,0xc3,0xbe,0x93,0x20,0xba,0xae,
|
||||
0x35,0x17,0xd6,0x55,0x83,0xfc,0xa3,0xc0,0x7a,0x57,0xa4,0x88,0xf6,0xd7,0x14,0x92,
|
||||
0xf4,0x56,0xde,0x52,0x7a,0x17,0x10,0x0e,0x3d,0xa8,0x61,0x63,0x37,0xbc,0x4d,0xd1,
|
||||
0x2e,0xc5,0x85,0x21,0x0e,0x4c,0x68,0x82,0xb4,0x21,0xdc,0x60,0x7a,0x9c,0x1f,0xd2,
|
||||
0x95,0x2d,0x5a,0x14,0x45,0x8e,0x1a,0x69,0xa8,0xe9,0x6c,0xfc,0xca,0x41,0x6b,0x04,
|
||||
0xa8,0xf5,0xf9,0x93,0x8f,0xd2,0x9c,0x91,0xdc,0x84,0xc8,0xc3,0x30,0xd9,0x68,0xff,
|
||||
0x00,0x2a,0x42,0x6b,0xb1,0x2f,0x36,0xae,0x7c,0x21,0x20,0x78,0xf1,0x60,0x53,0xb1,
|
||||
0x1c,0x10,0x34,0xb3,0x4d,0xa9,0xb5,0xc8,0xc3,0x65,0xa5,0x85,0xa5,0x0d,0xa8,0x29,
|
||||
0x3c,0xbd,0x70,0x0d,0x3a,0x59,0x9e,0xdb,0x43,0x09,0xe2,0x5f,0xb8,0xe5,0x4d,0xb9,
|
||||
0x7a,0xae,0xcb,0x6e,0x04,0x49,0xba,0xc3,0x60,0x8e,0xa8,0x5b,0xe9,0xe2,0xfc,0x33,
|
||||
0x9a,0x48,0x97,0xbc,0xda,0x62,0x08,0xf9,0x25,0x3b,0x2d,0x63,0xf7,0x63,0xc7,0x51,
|
||||
0xfc,0xd5,0x81,0xf9,0xd5,0x58,0x89,0x05,0x13,0x14,0x47,0xdd,0x56,0x3d,0xab,0xec,
|
||||
0xc8,0x56,0x32,0x52,0xa3,0xee,0x2a,0x1a,0xb9,0xf6,0x89,0x4b,0x43,0x86,0x05,0x99,
|
||||
0xd5,0xf9,0x2e,0x4b,0xa1,0x03,0xff,0x00,0x14,0xe7,0xf5,0xa6,0x8d,0xd3,0x7d,0x35,
|
||||
0x75,0xcd,0xc0,0xdc,0x47,0x58,0x82,0x5c,0x3c,0x09,0x6e,0x33,0x3c,0x4a,0x24,0xf4,
|
||||
0x00,0xab,0x27,0x3e,0xd4,0xc2,0x8b,0x11,0x32,0xe0,0xcc,0x46,0x94,0xe4,0x82,0x19,
|
||||
0x6c,0x75,0x5b,0x98,0x4a,0x7f,0x13,0x5c,0x7b,0x75,0xaa,0xae,0x3a,0xff,0x00,0x72,
|
||||
0x6d,0x5a,0x6f,0x6e,0xa3,0x3d,0x7b,0xd4,0xaa,0x79,0x2b,0x0f,0xc6,0x25,0x2c,0x42,
|
||||
0x4a,0x48,0x2a,0x79,0xd7,0x47,0x24,0xa5,0x3e,0x9c,0xc9,0xe4,0x3a,0xd4,0x17,0xa2,
|
||||
0xf6,0x77,0x72,0xb7,0xff,0x00,0x51,0xa2,0xd1,0x69,0x6a,0x5d,0xf6,0xe4,0xb5,0x61,
|
||||
0xc4,0x38,0xe9,0x53,0x71,0xd3,0xc7,0xc2,0x56,0xea,0x87,0xca,0xda,0x41,0x0a,0xeb,
|
||||
0xcc,0xf0,0xf2,0x07,0x23,0x3a,0xf5,0xd8,0xfb,0xb2,0x9d,0xab,0xb2,0xde,0xdf,0x2a,
|
||||
0xdc,0x97,0x5b,0xb9,0x6a,0x5b,0x82,0x83,0xd7,0x4b,0x9a,0x51,0x8e,0xf1,0x5e,0x0d,
|
||||
0xa3,0xc4,0x36,0x9f,0x0f,0x3e,0xa6,0xb3,0x9c,0xf1,0x5b,0x1a,0x46,0x17,0xc9,0x3e,
|
||||
0x51,0x45,0x15,0xc6,0x74,0x85,0x14,0x51,0x40,0x05,0x55,0xfe,0xd0,0xba,0xf9,0xce,
|
||||
0xcf,0x97,0x01,0x7c,0xbc,0x69,0x89,0xd7,0xbd,0x1d,0x35,0xc2,0x57,0x76,0xb5,0x94,
|
||||
0x95,0xc2,0x75,0x47,0xee,0x3c,0xd9,0xc7,0xca,0x7c,0x16,0x0f,0x3e,0x98,0xcf,0x5b,
|
||||
0x41,0x5c,0x37,0xcb,0x24,0x0d,0x4b,0x68,0x97,0x6b,0xba,0x44,0x6a,0x7d,0xba,0x5b,
|
||||
0x6a,0x65,0xf8,0xcf,0xa4,0x29,0x0e,0x20,0x8c,0x10,0x41,0xaa,0x8c,0xb1,0x76,0x4c,
|
||||
0x96,0x48,0xa5,0x56,0xee,0xd9,0x3b,0x59,0xa9,0xec,0xb2,0x58,0x6f,0x50,0x0d,0x2d,
|
||||
0x74,0x79,0xa5,0xa1,0xa7,0x2e,0x30,0x96,0x52,0xc2,0x88,0x21,0x0b,0x3c,0x40,0x05,
|
||||
0x63,0x92,0xb1,0x9c,0x78,0x52,0x96,0xda,0x6e,0x76,0x90,0xb6,0xda,0xdd,0x8d,0x2b,
|
||||
0x77,0xad,0x5a,0xad,0xe7,0x5c,0xef,0x10,0xfc,0x97,0x1b,0x65,0x4d,0x8e,0x10,0x0a,
|
||||
0x40,0x07,0x98,0xc8,0x27,0x9f,0x4c,0xe3,0xa5,0x32,0x77,0xa7,0xe1,0x76,0x65,0x4b,
|
||||
0x95,0x73,0xdb,0x6b,0xf2,0x18,0x4a,0xfe,0x64,0xd9,0x6f,0x0a,0x51,0x4a,0x7f,0x95,
|
||||
0x0f,0x0c,0x90,0x3c,0x82,0x81,0xf7,0xaa,0x21,0xaa,0xf6,0xf2,0xf9,0xa4,0x2e,0x37,
|
||||
0x08,0x17,0x6b,0x7f,0x03,0xb0,0x5e,0x5c,0x77,0xd4,0x82,0x1c,0x42,0x56,0x95,0x70,
|
||||
0xab,0x98,0xf0,0xc8,0xeb,0x5d,0x29,0xa9,0x3b,0x39,0x9c,0x69,0xee,0x6a,0x45,0xcf,
|
||||
0x77,0xf4,0x4c,0x56,0xcf,0x1e,0xad,0xb4,0xab,0x87,0xf8,0x25,0x20,0x9f,0xc8,0xd3,
|
||||
0x06,0xe7,0xda,0x0f,0x44,0x7d,0xa1,0x48,0x4d,0xcd,0x0e,0x0c,0xff,0x00,0xdc,0x4f,
|
||||
0x43,0xf5,0xac,0xcc,0x30,0x1b,0xea,0x1b,0x4e,0x09,0xea,0x12,0x2b,0xe5,0x71,0x50,
|
||||
0x79,0x84,0x0e,0x5e,0x95,0xa5,0x3e,0x84,0x69,0x2a,0xf7,0xcf,0x44,0xbc,0x33,0xfb,
|
||||
0x4e,0x3a,0x4f,0xf3,0xba,0x69,0x12,0xe5,0xbc,0xfa,0x31,0xc2,0x4a,0x6e,0x70,0xb0,
|
||||
0x7a,0x9e,0xfb,0x15,0x9f,0x08,0x8e,0x85,0x27,0x9a,0x46,0x7d,0x2b,0xe7,0xec,0x8d,
|
||||
0x92,0x07,0x00,0x3f,0x4a,0x6a,0xc5,0x45,0xf3,0x7f,0x72,0xf4,0xb4,0xb1,0xf2,0x5d,
|
||||
0xe0,0xe0,0xf9,0xc8,0x02,0x93,0xe4,0xeb,0xab,0x09,0x4f,0xcb,0x78,0x82,0x07,0xa4,
|
||||
0x94,0xff,0x00,0xf6,0xa8,0xda,0xa1,0x35,0xfd,0xd2,0x4f,0xfb,0x6b,0xc9,0x70,0x9a,
|
||||
0x07,0x3d,0xca,0x39,0x7f,0x28,0xa7,0xb8,0x51,0x73,0x26,0xee,0x16,0x9b,0x64,0x10,
|
||||
0xe5,0xee,0x02,0x47,0x8f,0xf6,0x81,0xff,0x00,0xda,0x6d,0xcf,0xdc,0xed,0x1a,0xa5,
|
||||
0x80,0xe6,0xa0,0x82,0x02,0x7f,0x75,0x2e,0xe6,0xaa,0xc3,0x30,0x92,0xe8,0x77,0x87,
|
||||
0xba,0x6f,0xbb,0x47,0x1f,0xce,0x40,0xe2,0xe6,0x06,0x07,0x99,0xe7,0xf9,0x1a,0xf7,
|
||||
0xb4,0xbf,0x1a,0x04,0xf4,0xbd,0x32,0x02,0x2e,0x4c,0x00,0x41,0x8e,0xb5,0xa9,0x00,
|
||||
0x9f,0x03,0x94,0xf3,0xe5,0x49,0x95,0x45,0x96,0x67,0x7b,0xf4,0x55,0xac,0xb9,0xc3,
|
||||
0x32,0x24,0xd2,0xac,0x60,0xa9,0x95,0xb9,0xc3,0xec,0x07,0x2f,0xc7,0x35,0xc7,0x73,
|
||||
0xed,0x1f,0xa6,0x9f,0x8e,0xa6,0x12,0x94,0x94,0x1f,0x06,0x2d,0x49,0x42,0xbe,0x8b,
|
||||
0xe0,0x07,0xf3,0xa8,0x16,0x05,0xfe,0x1d,0xbe,0xe1,0x36,0x48,0xd3,0xd6,0xf9,0x2c,
|
||||
0xbe,0x41,0x6e,0x3c,0x9e,0x35,0xa1,0x8c,0x67,0x92,0x79,0xe4,0xf5,0xf1,0xf2,0xae,
|
||||
0x58,0x17,0x75,0x5b,0x98,0x98,0xd2,0x21,0xc3,0x73,0xed,0x23,0x05,0x6f,0x34,0x16,
|
||||
0xa6,0xc7,0xf2,0x13,0xf7,0x69,0x6f,0xe0,0x52,0x25,0xd9,0x9b,0xfb,0x64,0x57,0x10,
|
||||
0x6a,0xdd,0x39,0xe3,0xfe,0x54,0x27,0xf5,0x55,0x23,0x48,0xde,0xe5,0x38,0x4f,0xd9,
|
||||
0xac,0xc4,0x8f,0xf1,0xdf,0x03,0xf4,0x06,0x9b,0x36,0xd6,0xf5,0x36,0xa2,0xb3,0x47,
|
||||
0xb5,0xb3,0x66,0x99,0x3a,0xd4,0xd2,0xd2,0x95,0x18,0x16,0xe2,0xb7,0x3a,0xe7,0x1c,
|
||||
0x69,0x49,0x39,0xf7,0xa7,0x23,0x1d,0x9c,0x37,0x2e,0xf2,0xf8,0xfd,0x8d,0xb6,0xba,
|
||||
0xc1,0x4c,0x72,0x41,0xfb,0x5d,0xb1,0xd4,0x9e,0x23,0xea,0x50,0x90,0x07,0xff,0x00,
|
||||
0xb3,0x45,0xfa,0x15,0xe0,0x9d,0x3b,0x77,0x6f,0x0a,0x51,0x42,0x2d,0xd0,0xe3,0x2b,
|
||||
0xc7,0x8c,0xad,0x64,0x7f,0xc6,0x92,0x9f,0xdc,0x4d,0x41,0x27,0xac,0xa8,0xec,0x7f,
|
||||
0xa1,0x1c,0x0f,0xf9,0x15,0x54,0xb3,0x66,0xec,0x25,0xbe,0xd7,0xe7,0x12,0xb5,0x68,
|
||||
0x59,0x11,0x92,0xb5,0xf0,0x97,0x27,0x4d,0x8e,0xde,0x3d,0x48,0x2e,0x71,0x63,0xe8,
|
||||
0x6a,0x43,0xb1,0x7c,0x2f,0xf7,0x6e,0xe8,0xd2,0x1c,0x9f,0x37,0x4e,0xd9,0xc1,0x23,
|
||||
0x2d,0xbb,0x2d,0xc7,0x56,0x91,0xe3,0xf7,0x5b,0xc6,0x7d,0x33,0xf5,0xa9,0xb8,0x2e,
|
||||
0x58,0xd4,0x59,0x53,0x65,0x6a,0x1b,0xc4,0xac,0xf7,0xb7,0x69,0x58,0xff,0x00,0x0d,
|
||||
0x61,0xbf,0xf8,0x01,0x49,0x52,0x0a,0xe5,0x1c,0x3e,0xf3,0xd2,0x3f,0xd6,0x75,0x4b,
|
||||
0xfd,0x49,0xad,0x12,0xd3,0xff,0x00,0x09,0x77,0x16,0x84,0x1b,0xf6,0xe1,0xe0,0x92,
|
||||
0x0a,0xdb,0xb6,0xdb,0xf1,0x81,0xe2,0x02,0x96,0xa3,0x9f,0x7c,0x54,0xa7,0xa5,0xfe,
|
||||
0x17,0x7b,0x49,0x66,0x09,0x55,0xd2,0x4d,0xf2,0xfe,0xe0,0xe6,0x7b,0xf9,0x9d,0xca,
|
||||
0x49,0xf6,0x6c,0x0e,0x55,0x2f,0x52,0x0b,0x82,0xb0,0x66,0x4a,0x70,0x36,0xdf,0x2c,
|
||||
0x25,0x23,0xa7,0x95,0x38,0x74,0xbe,0xdb,0xea,0xbd,0x6f,0x25,0x2c,0x69,0xfd,0x35,
|
||||
0x74,0xbc,0x3a,0xa3,0x84,0x88,0x71,0x16,0xbc,0x9f,0x70,0x31,0x5b,0x61,0xa4,0xbb,
|
||||
0x26,0x6d,0x0e,0x89,0x71,0xa7,0x6d,0x5a,0x06,0xcc,0x87,0xdb,0xe6,0x97,0xdf,0x60,
|
||||
0x3c,0xbc,0xf9,0x92,0xbc,0xd4,0xa7,0x06,0xdb,0x12,0xd6,0xc7,0x73,0x0a,0x2b,0x31,
|
||||
0x19,0xfe,0xed,0x86,0xc2,0x13,0xf8,0x01,0x52,0xf5,0xbc,0x45,0x2d,0x3f,0x59,0x8f,
|
||||
0x9b,0x73,0xf0,0xda,0xde,0x2d,0x7e,0x94,0x48,0xb8,0xc1,0x87,0xa3,0xe1,0xab,0x18,
|
||||
0x37,0x97,0x48,0x77,0x1f,0xe9,0xa0,0x29,0x40,0xfb,0x81,0x56,0xa7,0x68,0xfe,0x15,
|
||||
0x3a,0x13,0x4b,0x38,0xd4,0xdd,0x71,0x78,0x99,0xab,0xe6,0xa0,0x85,0x08,0x91,0xc9,
|
||||
0x87,0x10,0x7a,0x1e,0x13,0xde,0x2b,0xdf,0x89,0x3e,0xd5,0x78,0xe8,0xac,0x9e,0xa4,
|
||||
0x99,0x6a,0x09,0x08,0x9a,0x47,0x44,0xe9,0xfd,0x03,0x67,0x6a,0xd5,0xa6,0xec,0xb0,
|
||||
0x6c,0x76,0xe6,0xc7,0xcb,0x1a,0x03,0x09,0x69,0x1e,0xe4,0x24,0x73,0x3e,0xa7,0x9d,
|
||||
0x2d,0xd1,0x45,0x66,0x58,0x51,0x45,0x14,0x00,0x51,0x45,0x14,0x00,0x51,0x45,0x14,
|
||||
0x00,0x56,0x4f,0xf6,0xd5,0xec,0xeb,0xaf,0xb6,0xd3,0x57,0xea,0x7d,0x4c,0xd2,0x15,
|
||||
0x77,0xd0,0xf7,0x99,0x8f,0xc9,0x12,0x98,0x1c,0x46,0x27,0x7c,0xa2,0xa2,0xdb,0xc3,
|
||||
0x19,0x00,0x15,0x10,0x15,0xd0,0xfe,0x55,0xac,0x15,0xcd,0x71,0xb7,0x45,0xbb,0xc1,
|
||||
0x7e,0x14,0xd8,0xed,0x4b,0x88,0xfa,0x0b,0x6e,0xb0,0xf2,0x02,0x90,0xb4,0x9e,0xa0,
|
||||
0x83,0xc8,0x8a,0x69,0xd1,0x2d,0x59,0x83,0xfb,0x7b,0x7f,0x46,0x95,0xb7,0x2e,0x23,
|
||||
0xe8,0x6f,0x84,0xba,0xa3,0xc0,0xac,0x12,0x72,0x07,0x3c,0x53,0xe0,0xdd,0x2c,0xb2,
|
||||
0x59,0x43,0xaf,0x42,0x85,0x21,0x2a,0xe6,0x4f,0x74,0x9c,0x8e,0x59,0xc1,0xe5,0xd7,
|
||||
0xad,0x5c,0x9e,0xd1,0x7f,0x0d,0x6b,0x56,0xa6,0x6a,0x75,0xe3,0x6c,0xe4,0x22,0xcd,
|
||||
0x71,0x70,0x97,0x15,0x63,0x94,0xaf,0xec,0x6e,0x9f,0x10,0xda,0xba,0xb6,0x7f,0x11,
|
||||
0xed,0x59,0xe7,0xb8,0x3a,0x23,0x59,0xed,0x05,0xe9,0xcb,0x15,0xde,0xcf,0x2e,0xd3,
|
||||
0x73,0x8e,0x38,0x97,0x12,0x6a,0x72,0x1c,0x18,0xe6,0xa6,0xd6,0x39,0x29,0x27,0x00,
|
||||
0xe4,0x12,0x3a,0xd6,0xb9,0x78,0x65,0x85,0xbd,0xc7,0x55,0xcd,0x16,0x37,0x50,0x54,
|
||||
0xdd,0xba,0x33,0x5c,0xce,0x0a,0x46,0x29,0x8b,0xaa,0xef,0x56,0xbb,0x0c,0x17,0x1c,
|
||||
0x10,0xdb,0x53,0xbd,0x10,0x90,0x4f,0x33,0xf8,0xd3,0x73,0xfa,0x7c,0xb4,0xa9,0x09,
|
||||
0x9c,0xc2,0xd8,0x56,0x70,0x49,0x1c,0x89,0xf4,0x22,0x91,0xf5,0x5b,0x12,0x75,0x0b,
|
||||
0x46,0x6b,0x2e,0xb0,0x22,0x36,0x33,0xfd,0x63,0xc1,0x27,0x1e,0x60,0x78,0xd2,0x53,
|
||||
0xbe,0x19,0x52,0xd2,0x94,0x3f,0xb2,0x17,0x74,0x74,0x88,0x97,0x16,0x1c,0x76,0xf5,
|
||||
0x71,0x54,0x75,0xac,0x15,0x21,0x09,0x01,0x28,0x6c,0x7b,0xe3,0x34,0xc0,0xd5,0x5a,
|
||||
0xd5,0xe8,0x17,0x75,0x33,0x6d,0x9a,0xf4,0x98,0xe9,0x56,0x12,0xa5,0x21,0x23,0x8c,
|
||||
0x67,0xc0,0x63,0x3c,0xeb,0xc3,0x58,0x4e,0x0c,0xd9,0x22,0x77,0x04,0x84,0xb8,0x03,
|
||||
0x79,0x1d,0x30,0x2b,0xc7,0x4c,0x14,0xaa,0x0f,0xda,0xcb,0x48,0x32,0x16,0x4b,0x69,
|
||||
0x59,0x4f,0x34,0x24,0x63,0x24,0x7a,0x9c,0xe3,0x3e,0x94,0xa5,0x27,0xc2,0x2a,0x31,
|
||||
0x4f,0x73,0x58,0xfb,0x1c,0x5d,0xbb,0x29,0xf6,0x83,0xb5,0xc4,0xb3,0x44,0xd0,0xb0,
|
||||
0xed,0x3a,0xd9,0x2c,0x20,0xc9,0xb4,0xdf,0x54,0xea,0xdd,0x7d,0x69,0x4f,0xce,0xb6,
|
||||
0x14,0xb5,0x90,0xb1,0xc8,0x9c,0x27,0x04,0x78,0x8a,0xb6,0x96,0xee,0xca,0x3b,0x3b,
|
||||
0x6a,0x5a,0xd4,0xc6,0xdb,0x69,0xc5,0x95,0x8c,0x11,0x22,0x02,0x1e,0x1f,0x40,0xb0,
|
||||
0x40,0xfa,0x56,0x1e,0x6d,0x3e,0xb3,0xb9,0xed,0x3e,0xe0,0xe9,0x9d,0x55,0x09,0xb7,
|
||||
0x13,0x3a,0xd7,0x31,0xb9,0x8d,0x26,0x40,0xe4,0xb0,0x0f,0x3e,0xbe,0x0a,0x49,0x52,
|
||||
0x7e,0xb5,0xfa,0x18,0x42,0xb8,0xd0,0x95,0x74,0xc8,0xcd,0x4d,0xbf,0x4a,0xa4,0x30,
|
||||
0xad,0xfd,0x9f,0x76,0xc2,0xd4,0xea,0x9d,0x87,0xb7,0x7a,0x56,0x3b,0x8a,0x1c,0x25,
|
||||
0x4d,0xd9,0xa3,0x82,0x47,0x97,0xdc,0xa7,0x0c,0x0d,0x05,0xa6,0x2d,0x51,0xc4,0x78,
|
||||
0x5a,0x72,0xd3,0x0d,0x80,0x4a,0x83,0x4c,0x41,0x69,0x09,0x04,0xf5,0x38,0x09,0xc5,
|
||||
0x2f,0x51,0x4a,0xc6,0x7c,0xa1,0xb4,0x34,0x90,0x94,0x24,0x21,0x20,0x60,0x04,0x8c,
|
||||
0x01,0x5f,0x54,0x51,0x48,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x9a,0xbb,0x8d,0xb5,0xba,0x57,
|
||||
0x76,0xb4,0xfb,0x96,0x6d,0x59,0x64,0x8b,0x79,0x82,0xa0,0x78,0x43,0xe8,0xf9,0xda,
|
||||
0x51,0x18,0xe2,0x6d,0x63,0xe6,0x42,0xbd,0x52,0x45,0x3a,0xa8,0xa0,0x0c,0xbf,0xed,
|
||||
0x0d,0xf0,0xca,0xbd,0xe9,0x61,0x2a,0xef,0xb7,0x4f,0x2f,0x52,0xd9,0xf9,0xad,0x56,
|
||||
0x99,0x18,0x13,0x19,0x1e,0x49,0x3d,0x1d,0xfc,0x8f,0xa1,0xaa,0x3d,0xaa,0xb4,0xd4,
|
||||
0xbb,0x0b,0x13,0x2d,0xb3,0x60,0x3b,0x0a,0x4b,0x20,0xb6,0xb8,0xef,0x34,0x5b,0x71,
|
||||
0x18,0xe5,0x8c,0x1f,0x2a,0xfd,0x10,0xd4,0x7d,0xb9,0x7b,0x05,0xa0,0x37,0x79,0xa2,
|
||||
0x35,0x56,0x98,0x83,0x73,0x7b,0x84,0xa5,0x32,0x8b,0x7c,0x0f,0xa7,0x3e,0x4b,0x4e,
|
||||
0x0d,0x5a,0x95,0x72,0x43,0x8f,0x87,0xe7,0x93,0x54,0x58,0xbe,0xd3,0xa3,0xa3,0xbb,
|
||||
0x1c,0x97,0x97,0x19,0x5c,0x4b,0x09,0x1d,0x12,0x7a,0xfe,0x1c,0xa9,0x17,0x4a,0x4b,
|
||||
0x47,0xd8,0x8b,0x7c,0x40,0x38,0xda,0x8e,0x53,0x9e,0x7c,0x27,0x9e,0x47,0xd6,0xb6,
|
||||
0x3f,0x5b,0x7c,0x27,0x36,0xce,0x7f,0xda,0xa5,0xd8,0xb5,0x1e,0xa2,0xd3,0x8a,0x21,
|
||||
0x4a,0x0c,0xb4,0xea,0x1f,0x6f,0xd8,0x85,0xa7,0x24,0x7d,0x6a,0x06,0xec,0xd9,0xf0,
|
||||
0xea,0xd2,0xba,0x87,0x7b,0xae,0x0a,0xbf,0xde,0xd5,0x73,0xb6,0x69,0xa9,0x8d,0xa9,
|
||||
0x56,0xf4,0x40,0x0d,0x26,0x69,0x1f,0x36,0x16,0x7b,0xc5,0x61,0x27,0x1c,0xc0,0x1c,
|
||||
0xfc,0xe8,0x74,0xf7,0x43,0x8d,0xad,0x99,0x07,0xf6,0x3c,0xec,0xfd,0xa9,0x7b,0x47,
|
||||
0xee,0x15,0x9e,0xdc,0x96,0x26,0x23,0x46,0xc0,0x90,0x89,0x57,0x49,0xef,0xa5,0x45,
|
||||
0x80,0xda,0x54,0x09,0x6d,0x24,0xf2,0x2b,0x5e,0x38,0x40,0x1e,0x79,0x3d,0x2b,0x73,
|
||||
0xc0,0x09,0x00,0x0e,0x40,0x57,0x15,0x96,0xc5,0x6d,0xd3,0x76,0xe6,0xa0,0x5a,0x60,
|
||||
0x46,0xb6,0x41,0x6b,0x92,0x23,0x44,0x65,0x2d,0x36,0x9f,0x64,0xa4,0x01,0x5d,0xd5,
|
||||
0x05,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,
|
||||
0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x1f,0xff,0xd9};
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,61 @@
|
|||
// JPEGDEC example for Adafruit GFX displays
|
||||
|
||||
#include "JPEGDEC.h"
|
||||
// Sample image (truncated) containing a 320x240 Exif thumbnail
|
||||
// if an image doesn't display, it may have been created using progressive, open gimp, export as a jpg, remove progressive.
|
||||
|
||||
#include "thumb_test.h"
|
||||
//#include "ncc1701.h" //http://clipart-library.com/clip-art/uss-enterprise-silhouette-11.htm
|
||||
//#include "batman.h" //http://clipart-library.com/clipart/batman-clip-art_19.htm
|
||||
|
||||
#include <M5Stack.h>
|
||||
|
||||
#define DISPLAY_WIDTH 320
|
||||
#define DISPLAY_HEIGHT 240
|
||||
|
||||
|
||||
JPEGDEC jpeg;
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
|
||||
M5.Lcd.drawBitmap((int16_t)pDraw->x, (int16_t)pDraw->y, (int16_t)pDraw->iWidth, (int16_t)pDraw->iHeight, pDraw->pPixels);
|
||||
return 1;
|
||||
} /* JPEGDraw() */
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
|
||||
Serial.println("Starting...");
|
||||
|
||||
M5.begin();
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
} /* setup() */
|
||||
|
||||
void loop() {
|
||||
int i;
|
||||
long lTime;
|
||||
int iOption[4] = {0, JPEG_SCALE_HALF, JPEG_SCALE_QUARTER, JPEG_SCALE_EIGHTH};
|
||||
int iCenterX[4] = {0,80,120,140};
|
||||
int iCenterY[4] = {0,60,90,105};
|
||||
|
||||
for (i=0; i<4; i++)
|
||||
{
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
M5.Lcd.startWrite(); // Not sharing TFT bus on PyPortal, just CS once and leave it
|
||||
if (jpeg.openFLASH((uint8_t *)thumb_test, sizeof(thumb_test), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)ncc1701, sizeof(ncc1701), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)batman, sizeof(batman), JPEGDraw))
|
||||
|
||||
{
|
||||
lTime = micros();
|
||||
if (jpeg.hasThumb()) {jpeg.decode(iCenterX[i],iCenterY[i],JPEG_EXIF_THUMBNAIL | iOption[i]); } else { jpeg.decode(iCenterX[i],iCenterY[i], iOption[i]); }
|
||||
{
|
||||
lTime = micros() - lTime;
|
||||
Serial.printf("%d x %d image, decode time = %d us\n", jpeg.getWidth() >> i, jpeg.getHeight() >> i, (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
delay(2000); // pause between images
|
||||
} // for i
|
||||
} /* loop() */
|
|
@ -0,0 +1,845 @@
|
|||
//
|
||||
// batman-5
|
||||
// Data size = 13342 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 240, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t batman[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x47,
|
||||
0x00,0x47,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0xf0,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1e,0x00,0x01,0x00,0x02,0x02,0x03,0x01,0x01,0x01,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x09,0x06,0x07,0x04,0x05,0x0a,0x03,0x01,
|
||||
0x02,0xff,0xc4,0x00,0x49,0x10,0x00,0x01,0x03,0x03,0x03,0x02,0x04,0x03,0x05,0x04,
|
||||
0x05,0x0a,0x04,0x07,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x06,0x07,0x08,0x11,
|
||||
0x12,0x21,0x09,0x13,0x31,0x41,0x14,0x22,0x51,0x15,0x23,0x61,0x71,0x81,0x32,0x42,
|
||||
0x52,0x62,0x24,0x33,0x82,0x91,0x92,0x16,0x17,0x18,0x53,0x63,0x72,0xa1,0xb1,0xb2,
|
||||
0xc1,0x73,0x93,0xa2,0xc2,0x19,0x34,0x43,0x44,0x83,0x84,0xc3,0xff,0xc4,0x00,0x1c,
|
||||
0x01,0x01,0x00,0x01,0x05,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x03,0x01,0x04,0x05,0x06,0x07,0x02,0x08,0xff,0xc4,0x00,0x38,0x11,0x00,
|
||||
0x01,0x03,0x02,0x05,0x01,0x06,0x03,0x06,0x06,0x03,0x01,0x00,0x00,0x00,0x00,0x01,
|
||||
0x00,0x02,0x03,0x04,0x11,0x05,0x06,0x12,0x21,0x31,0x51,0x13,0x22,0x41,0x61,0x71,
|
||||
0x81,0x07,0x32,0x91,0x15,0x42,0x62,0x92,0xa1,0xb1,0x14,0x23,0x52,0x72,0x82,0xa2,
|
||||
0x33,0xb2,0xc1,0xf0,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,
|
||||
0x3f,0x00,0xb5,0x3a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,
|
||||
0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,
|
||||
0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,
|
||||
0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,
|
||||
0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0xa2,0xae,0xf8,
|
||||
0x37,0xe7,0x8d,0x6d,0x27,0x1e,0x36,0xd8,0x69,0x66,0xff,0x00,0xa8,0xd3,0xd8,0x2b,
|
||||
0xb7,0xd9,0x4a,0x8f,0x97,0x1d,0x27,0x90,0x24,0x49,0x20,0x82,0x96,0xc1,0x1d,0x92,
|
||||
0x08,0x52,0xc8,0xe0,0x70,0x3a,0x94,0x92,0x29,0x55,0x4a,0xf3,0xf3,0xa5,0x5e,0x23,
|
||||
0xba,0xd3,0xa6,0xda,0xbb,0x71,0xce,0x66,0xe4,0x6f,0xe5,0x48,0xbb,0xbc,0x17,0x75,
|
||||
0xb2,0x5d,0x1c,0x26,0x1c,0x84,0x03,0xd9,0x2d,0x20,0x76,0x8e,0x52,0x3b,0x25,0x4d,
|
||||
0x81,0xc7,0x60,0x42,0x87,0x29,0x37,0x13,0xb5,0xfd,0xec,0xe9,0xa6,0xea,0xad,0x4d,
|
||||
0x8c,0x6e,0xe8,0x2d,0xb9,0x3a,0x1a,0x2e,0x4b,0xc6,0x6e,0x4a,0x4a,0x26,0xb3,0xc1,
|
||||
0xe1,0x4a,0x48,0xe7,0x87,0x5b,0xf4,0x3d,0x68,0x27,0x80,0xa1,0xd4,0x12,0x4f,0x48,
|
||||
0x22,0xdf,0xb4,0xa5,0x28,0x89,0x4a,0x56,0xa2,0xdc,0xd6,0xe0,0xa0,0xed,0xab,0x0a,
|
||||
0xb2,0xe5,0xd7,0x68,0xe1,0xfb,0x23,0xb7,0xc8,0x96,0xdb,0x82,0x81,0x3d,0x4c,0xb0,
|
||||
0xf7,0x52,0x54,0xf2,0x78,0xe7,0x92,0x8e,0x02,0xf8,0xe3,0xe6,0x09,0x29,0xec,0x48,
|
||||
0x20,0x8b,0x6e,0xd2,0xb5,0xde,0x79,0xb8,0x9d,0x2f,0xd3,0x06,0x63,0x39,0x95,0xea,
|
||||
0x06,0x39,0x62,0x32,0x99,0x4c,0x88,0xed,0x4b,0xb9,0x34,0x97,0x5f,0x69,0x43,0x94,
|
||||
0xb8,0xdb,0x7d,0x5d,0x4b,0x49,0x1f,0xbc,0x90,0x47,0x7a,0xc5,0xac,0x7b,0xdb,0xd0,
|
||||
0x4c,0x86,0x40,0x62,0x26,0xad,0xe2,0x69,0x70,0x9e,0x00,0x97,0x72,0x6e,0x30,0x27,
|
||||
0xe8,0x0b,0xa5,0x22,0x88,0xb7,0x6d,0x2b,0x52,0xe8,0xc6,0xe2,0xf1,0xfd,0x72,0xcd,
|
||||
0x75,0x22,0xcb,0x8e,0x2d,0xb9,0x50,0xf0,0xdb,0x83,0x36,0xc5,0xcf,0x69,0xd0,0xe2,
|
||||
0x25,0x3a,0xa6,0xca,0x96,0xb4,0x11,0xdb,0xa5,0x2b,0x0a,0x6c,0x7a,0xf2,0x5b,0x51,
|
||||
0xe7,0x82,0x2b,0x6d,0x51,0x12,0x94,0xa5,0x11,0x29,0x51,0xd3,0x74,0xdb,0xec,0xd3,
|
||||
0x3d,0xab,0x5b,0xdf,0x8f,0x79,0xb8,0x0b,0xee,0x5f,0xd0,0x15,0x1f,0x17,0xb6,0x38,
|
||||
0x15,0x29,0x44,0x8e,0x52,0x5e,0x3d,0xc3,0x08,0x3c,0x83,0xd4,0xbe,0xe4,0x77,0x4a,
|
||||
0x55,0xe9,0x55,0x05,0x9d,0x78,0x8f,0xeb,0x7e,0x67,0xac,0xb0,0x35,0x05,0x8c,0x9d,
|
||||
0xcb,0x12,0xed,0xab,0xe2,0x05,0x86,0xde,0xa5,0x26,0xda,0xd3,0x24,0x82,0xa6,0x9c,
|
||||
0x68,0x9f,0xbe,0xeb,0xe3,0xe6,0x52,0xf9,0x51,0xed,0xc1,0x48,0x4a,0x42,0x48,0xbd,
|
||||
0x04,0x52,0xa3,0x3e,0xca,0xf7,0xc7,0x8a,0x6e,0xef,0x15,0x2d,0x37,0xe5,0x58,0xf3,
|
||||
0xdb,0x73,0x21,0x77,0x5c,0x79,0x4b,0xe4,0xf4,0x8e,0x01,0x91,0x1c,0x9f,0xdb,0x64,
|
||||
0xa9,0x40,0x7f,0x12,0x09,0x01,0x5e,0xa9,0x52,0xe4,0xc5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xad,
|
||||
0x05,0xbc,0xed,0xd9,0xd9,0x36,0x91,0xa5,0x0e,0xdf,0xa5,0xa5,0xa9,0xf9,0x35,0xc7,
|
||||
0xae,0x35,0x8a,0xd0,0xb5,0x11,0xf1,0x52,0x00,0x1c,0xad,0x5c,0x77,0x0d,0x36,0x14,
|
||||
0x95,0x2c,0xf6,0xf5,0x4a,0x41,0x05,0x69,0xa2,0x2c,0x1b,0x7f,0x1b,0xec,0xb4,0xed,
|
||||
0x3f,0x11,0xfb,0x22,0xcc,0xa6,0x2e,0x9a,0x95,0x76,0x60,0x9b,0x7d,0xbd,0x47,0xa9,
|
||||
0x10,0x9b,0x3c,0x8f,0x8a,0x7c,0x7f,0x08,0x23,0xe5,0x41,0xee,0xb2,0x0f,0xb0,0x51,
|
||||
0x14,0xdb,0x61,0xd1,0xad,0x69,0xdc,0xee,0x55,0x3b,0x22,0x83,0x8c,0x5f,0xf2,0xeb,
|
||||
0x9d,0xdd,0xe5,0x4a,0x93,0x7b,0x90,0xc9,0x6d,0x87,0x5c,0x57,0x72,0x4c,0x87,0x3a,
|
||||
0x5a,0x1f,0x82,0x7a,0x87,0x00,0x70,0x07,0x02,0xb9,0x38,0x46,0xb8,0x67,0x39,0x56,
|
||||
0xb3,0x4f,0xc8,0x95,0x61,0xb3,0xea,0x26,0xa4,0x65,0x33,0x1b,0x6e,0x34,0xbc,0x82,
|
||||
0x07,0xc6,0xb8,0xd4,0x85,0x2b,0x84,0x79,0x0c,0xa9,0x41,0x94,0x9f,0xd8,0x4a,0x7a,
|
||||
0x90,0x42,0x12,0x84,0x84,0xf4,0x00,0x79,0xbc,0x7d,0x2d,0xb4,0xe5,0x36,0x4d,0x3f,
|
||||
0xb2,0x43,0xcd,0xaf,0x8d,0xe4,0x59,0x5a,0x18,0xea,0xb8,0xdc,0x19,0x61,0xb6,0x1a,
|
||||
0x5b,0xca,0x25,0x45,0x28,0x42,0x12,0x91,0xd0,0x8e,0x7a,0x01,0xe9,0x04,0x84,0x82,
|
||||
0x7b,0x93,0x5c,0xb7,0x39,0xe6,0xfa,0x8c,0xb2,0xd6,0x36,0x18,0x9a,0xe7,0x3f,0x8d,
|
||||
0x4e,0x37,0xf3,0x3a,0x40,0xe0,0x71,0x72,0xe0,0x6f,0xc0,0x22,0xe4,0x5c,0x45,0x10,
|
||||
0x93,0x92,0xa9,0xd1,0xdf,0x0c,0xcd,0xc1,0x37,0x13,0xce,0x18,0x8c,0x47,0x17,0xc7,
|
||||
0x3e,0x42,0x6f,0x11,0x3a,0xff,0x00,0xe2,0xe0,0x1f,0xf1,0xad,0x0b,0x95,0xe1,0x99,
|
||||
0x9e,0x8b,0x65,0xe9,0x83,0x7d,0xb6,0x5d,0x71,0x1c,0x8a,0x12,0xc3,0xad,0x79,0xc9,
|
||||
0x5c,0x77,0x90,0x41,0xec,0xe3,0x4b,0x1c,0x72,0x39,0x1d,0x96,0x82,0x41,0xf6,0x35,
|
||||
0xe8,0xbe,0xa3,0xbe,0xfd,0x34,0x72,0xc9,0xab,0x5b,0x6d,0xcb,0x9e,0xb8,0x45,0x42,
|
||||
0xae,0xb8,0xe4,0x07,0xef,0x56,0xc9,0xc1,0x3f,0x7b,0x1d,0xc6,0x51,0xe6,0x38,0x90,
|
||||
0x7f,0x85,0xc4,0x20,0xa5,0x43,0xd0,0xf6,0x3c,0x72,0x94,0x91,0xcf,0xb0,0x3f,0x8a,
|
||||
0x35,0xb3,0xd7,0x47,0x4f,0x89,0x44,0xcd,0x0f,0x20,0x5d,0xa0,0x82,0xdb,0x9b,0x5f,
|
||||
0x72,0x6e,0x3a,0xf0,0x7f,0x65,0x33,0xe9,0xc0,0x17,0x69,0x50,0x8f,0x6f,0x3e,0x2f,
|
||||
0x7a,0x9d,0xa6,0x2c,0x47,0xb5,0x67,0xf0,0xda,0xd4,0x9b,0x2b,0x69,0x4b,0x68,0x94,
|
||||
0xfb,0xa2,0x35,0xc9,0xa4,0x8e,0x07,0x77,0x82,0x48,0x77,0xb0,0x3f,0xd6,0x24,0xa9,
|
||||
0x47,0xd5,0x75,0x62,0xda,0x35,0xe2,0x3d,0xa0,0xda,0xd2,0xa6,0x63,0x43,0xcc,0x5a,
|
||||
0xc6,0x2e,0xce,0x27,0xab,0xec,0xcc,0xa1,0x22,0x03,0x80,0xf3,0xc7,0x48,0x71,0x44,
|
||||
0xb2,0xa5,0x7f,0x2a,0x1c,0x51,0x3f,0x4a,0xa0,0xf9,0x98,0x65,0xd2,0x0e,0x15,0x6a,
|
||||
0xca,0x9e,0x64,0x26,0xd1,0x72,0x9d,0x2a,0xdf,0x1d,0xce,0x7b,0x97,0x63,0xa1,0x85,
|
||||
0xb9,0xc8,0xfa,0x71,0x25,0xbe,0x0f,0xb9,0x0a,0xfa,0x57,0x47,0x5f,0x48,0x31,0xed,
|
||||
0x90,0x5d,0x86,0xfc,0x8f,0x70,0x6c,0x7e,0x85,0x58,0xaf,0x54,0x51,0x25,0xb1,0x3e,
|
||||
0x33,0x72,0x23,0x3c,0xdc,0x98,0xee,0x0e,0xa4,0x3a,0xd2,0xc2,0x90,0xa1,0xf5,0x04,
|
||||
0x76,0x22,0xa0,0xc7,0x8c,0xac,0xaf,0x87,0xda,0x4c,0x06,0xf9,0xe3,0xcf,0xca,0x21,
|
||||
0xb7,0xf9,0xfd,0xcc,0x95,0x7f,0xed,0xaa,0x78,0xd3,0xdd,0x6b,0xcf,0xf4,0x99,0x6e,
|
||||
0x1c,0x33,0x34,0xbf,0x62,0xe9,0x75,0x41,0x6e,0xb5,0x6a,0xb8,0x3a,0xc3,0x6e,0x91,
|
||||
0xe8,0x56,0x84,0xa8,0x25,0x5f,0xa8,0x35,0x98,0xea,0xc6,0xf0,0xb5,0x77,0x5c,0xf0,
|
||||
0x48,0x98,0x7e,0x77,0x98,0x3b,0x91,0xd8,0xa2,0x4d,0x6e,0xe0,0xc3,0x52,0x22,0x47,
|
||||
0x43,0x89,0x79,0x08,0x71,0x01,0x45,0xd4,0x36,0x95,0xab,0xe5,0x75,0x7d,0x94,0x48,
|
||||
0xf4,0xfa,0x57,0xb4,0x5a,0x6d,0x4b,0x52,0xcf,0x2a,0x25,0x47,0x80,0x39,0x27,0xd8,
|
||||
0x76,0x15,0xf9,0x5d,0xd5,0xa3,0x09,0xc8,0x2f,0xf6,0x1b,0xb5,0xee,0xd9,0x64,0xb8,
|
||||
0x5c,0x6d,0x16,0x8f,0x2f,0xed,0x19,0xd1,0x23,0x2d,0xd6,0x61,0xf9,0x9d,0x5e,0x59,
|
||||
0x79,0x49,0x04,0x36,0x15,0xd0,0xbe,0x0a,0xb8,0x07,0xa4,0xfd,0x2b,0x8f,0x8e,0xe3,
|
||||
0x37,0x8c,0xc2,0xf1,0x1e,0xd3,0x61,0xb5,0x4d,0xbd,0xdd,0x24,0x1e,0x96,0x60,0xdb,
|
||||
0xa3,0xae,0x43,0xee,0x1f,0xa2,0x50,0x80,0x54,0x7f,0x41,0x44,0x56,0x51,0xe0,0x7b,
|
||||
0x95,0xb7,0x17,0x33,0xd5,0x5c,0x65,0x47,0x97,0x67,0x5b,0xe0,0xdc,0x5b,0x04,0xfa,
|
||||
0x06,0x1c,0x75,0xb5,0xf0,0x3f,0xfd,0x94,0x73,0xf9,0x0a,0xb6,0x79,0xd3,0xa3,0x5b,
|
||||
0x22,0x3b,0x2a,0x64,0x86,0xa2,0x45,0x69,0x3d,0x4e,0x3e,0xfa,0xc2,0x10,0x81,0xf5,
|
||||
0x2a,0x3d,0x80,0xaf,0x35,0x18,0x7e,0xa1,0x6a,0x66,0xd6,0x33,0xab,0xdb,0x76,0x1b,
|
||||
0x8c,0xfc,0x1b,0x2b,0xf8,0x75,0x5a,0xee,0x28,0x0d,0x20,0x48,0x6d,0xb5,0x29,0x0e,
|
||||
0x29,0xa5,0x05,0xa4,0xf4,0x2b,0xa9,0x08,0x27,0x8e,0x14,0x08,0xe3,0xb7,0x71,0x5d,
|
||||
0x26,0xa0,0x6b,0x0e,0x75,0xaa,0xef,0xb4,0xee,0x67,0x98,0xdf,0x32,0x95,0x34,0x4a,
|
||||
0x9a,0x17,0x6b,0x83,0xb2,0x12,0xd1,0xfe,0x44,0xad,0x44,0x23,0xfb,0x20,0x51,0x15,
|
||||
0xea,0x6b,0x3f,0x89,0x5e,0x83,0x68,0xd2,0xa4,0xc5,0x73,0x2c,0x4e,0x5d,0x78,0x65,
|
||||
0x3c,0xfd,0x9d,0x8b,0x24,0x4d,0x24,0xff,0x00,0x09,0x78,0x10,0xca,0x48,0x3e,0xa0,
|
||||
0xb9,0xc8,0xfa,0x7b,0x55,0x72,0xee,0x1f,0xc5,0xc3,0x55,0x35,0x61,0x99,0x16,0xac,
|
||||
0x25,0x96,0xf4,0xce,0xc2,0xea,0x14,0xda,0xdc,0x80,0xf1,0x7a,0xe4,0xe0,0x3d,0x89,
|
||||
0xf8,0x92,0x13,0xe5,0xf6,0xe3,0x8f,0x29,0x29,0x50,0x3c,0xfc,0xe7,0xb7,0x10,0x5a,
|
||||
0x94,0x45,0xf5,0x99,0x31,0xfb,0x84,0xa7,0xa5,0x4a,0x7d,0xc9,0x32,0x5e,0x59,0x71,
|
||||
0xc7,0x9e,0x59,0x5a,0xd6,0xa2,0x79,0x25,0x44,0xf7,0x24,0xfd,0x4d,0x7c,0xab,0xed,
|
||||
0x0a,0x2a,0xe7,0x4c,0x62,0x32,0x3b,0xad,0xe7,0x12,0xda,0x7f,0x32,0x78,0x1f,0xf3,
|
||||
0xac,0x9b,0x57,0x30,0xe4,0xe9,0xe6,0xaa,0xe6,0x38,0xba,0x09,0x2d,0x59,0x6f,0x12,
|
||||
0xed,0xe8,0x51,0x24,0xf5,0x21,0xa7,0x96,0x84,0x9e,0xff,0x00,0x50,0x90,0x6a,0x13,
|
||||
0x2b,0x04,0xa2,0x1b,0xf7,0x88,0x27,0xd8,0x58,0x1f,0xdc,0x2a,0xdb,0xc5,0x7f,0x78,
|
||||
0x2d,0xdf,0x35,0xd3,0x19,0xd6,0x9d,0x47,0xc5,0xcd,0xd2,0xca,0xab,0x6d,0xc3,0xc9,
|
||||
0x87,0x90,0x46,0x65,0x61,0x84,0x4a,0x4a,0x42,0xd4,0xcf,0x99,0xc7,0x42,0x89,0x42,
|
||||
0x87,0x53,0x67,0x9e,0xa4,0x2f,0x85,0x02,0x95,0x77,0xbd,0x7d,0x8b,0x6f,0x7e,0xc7,
|
||||
0xbb,0xac,0x1d,0x4c,0xcb,0x11,0xec,0xfa,0x87,0x69,0x69,0x3f,0x6b,0xd9,0x90,0xae,
|
||||
0x10,0xe8,0xf4,0xf8,0xa8,0xc0,0x92,0xa5,0x34,0xa3,0xc7,0x23,0xb9,0x6d,0x44,0x25,
|
||||
0x44,0x82,0x85,0x2f,0x45,0x6c,0x47,0x43,0xf4,0xda,0xfd,0xb4,0xb9,0x96,0x98,0xd7,
|
||||
0x57,0x73,0xac,0x67,0x2d,0x77,0xcf,0xbb,0x5b,0xee,0x4d,0x25,0xb1,0x0e,0x58,0x69,
|
||||
0xb4,0x3a,0xc8,0x42,0x4f,0x28,0x5a,0x14,0x84,0x90,0xbe,0x79,0x3c,0x36,0xb4,0x9e,
|
||||
0x3a,0x49,0x83,0x3a,0xe5,0xa3,0x99,0xdf,0x87,0x9e,0xbe,0xd9,0xf2,0x7c,0x4a,0xe7,
|
||||
0x24,0x5b,0x04,0x85,0x4a,0xb0,0x5e,0xf8,0xe4,0x38,0x80,0x7e,0x78,0xb2,0x40,0xe0,
|
||||
0x15,0x74,0x9e,0x95,0xa7,0xd1,0x69,0x57,0x23,0x8e,0x4a,0x53,0xa3,0x61,0x19,0xc2,
|
||||
0x8f,0x13,0xc4,0xe7,0xc2,0x5c,0x34,0x48,0xc2,0x43,0x6f,0x71,0xa8,0x0e,0x76,0x36,
|
||||
0x21,0xc3,0x7b,0x8e,0x9b,0x8f,0x1b,0x4a,0xe8,0x8b,0x5a,0x1c,0xaf,0xf6,0x95,0xa4,
|
||||
0x76,0x8d,0xba,0x6c,0x7b,0x76,0x1a,0x51,0x13,0x27,0xb4,0x94,0x43,0xbc,0xc7,0xe9,
|
||||
0x8f,0x7a,0xb3,0x95,0x82,0xe4,0x19,0x3c,0x77,0x1c,0x73,0xc9,0x6d,0x7c,0x15,0x21,
|
||||
0x7e,0xe3,0xb1,0xe1,0x49,0x50,0x1b,0xba,0xb7,0xf5,0x0a,0x52,0x94,0xa2,0x25,0x29,
|
||||
0x4a,0x22,0x52,0x94,0xa2,0x25,0x29,0x4a,0x22,0xc6,0x35,0x37,0x52,0x2c,0x3a,0x43,
|
||||
0x80,0xdf,0x33,0x2c,0x9e,0x62,0x60,0x58,0xac,0xd1,0x95,0x26,0x4b,0xc7,0x8e,0x48,
|
||||
0x1d,0x92,0x84,0x82,0x47,0x52,0xd4,0xa2,0x94,0x25,0x3e,0xea,0x52,0x47,0xbd,0x79,
|
||||
0xd8,0xdd,0x0e,0xe3,0xb2,0x2d,0xd1,0x6a,0xe5,0xd3,0x34,0xbf,0x28,0xb2,0xca,0xc9,
|
||||
0x8f,0x6c,0xb6,0xa5,0x5c,0xb7,0x02,0x22,0x54,0x4b,0x6d,0x27,0xea,0x7b,0x95,0x29,
|
||||
0x5f,0xbc,0xa5,0x28,0xf0,0x01,0x00,0x4a,0xaf,0x16,0x6d,0xdd,0xab,0x55,0x35,0x14,
|
||||
0x69,0x46,0x35,0x31,0x47,0x14,0xc5,0x24,0xab,0xed,0x37,0x1b,0xe3,0xa6,0x6d,0xcd,
|
||||
0x3c,0xa5,0x43,0x9f,0x52,0x86,0x41,0x52,0x07,0xa7,0xce,0x5c,0xe4,0x10,0x94,0x1a,
|
||||
0xd5,0xbe,0x1e,0x9b,0x50,0xff,0x00,0x48,0x4d,0x4c,0x37,0xec,0x82,0x19,0x73,0x04,
|
||||
0xc7,0x1c,0x43,0xb3,0x12,0xe2,0x0f,0x97,0x3e,0x47,0xab,0x71,0x41,0xf4,0x23,0xd1,
|
||||
0x6b,0xf5,0xf9,0x78,0x07,0x8f,0x30,0x1a,0xc5,0x62,0x98,0x95,0x3e,0x11,0x47,0x25,
|
||||
0x75,0x51,0xb3,0x18,0x2f,0xeb,0xd0,0x0f,0x32,0x76,0x0b,0xd3,0x5a,0x5c,0x6c,0x14,
|
||||
0xae,0xf0,0xc8,0xda,0x18,0xc0,0xb1,0xd6,0x35,0x67,0x2b,0x87,0xd3,0x91,0xdd,0xd8,
|
||||
0x3f,0x62,0xc5,0x75,0x24,0x2a,0x14,0x35,0x8e,0x0b,0xc4,0x1f,0x47,0x1d,0x07,0xb7,
|
||||
0xd1,0xb2,0x3b,0xfc,0xea,0x02,0x46,0xee,0xdf,0x73,0x56,0xad,0xaf,0x69,0x6b,0xf7,
|
||||
0xe7,0xd0,0xd4,0xdc,0x86,0x69,0x54,0x5b,0x2d,0xb1,0xc2,0x78,0x91,0x23,0x8e,0x7a,
|
||||
0x97,0xc7,0x07,0xcb,0x40,0x21,0x4a,0x20,0x8f,0x64,0x82,0x0a,0x85,0x6e,0x69,0x93,
|
||||
0x22,0xda,0x60,0x3f,0x2e,0x53,0xcd,0x43,0x85,0x19,0xa5,0x3a,0xeb,0xce,0xa8,0x21,
|
||||
0xb6,0x9b,0x48,0xe5,0x4a,0x24,0xf6,0x00,0x00,0x4f,0x3e,0xc0,0x55,0x13,0x6e,0xa7,
|
||||
0x5c,0x2f,0x5b,0xb6,0xd7,0xe9,0x13,0x6d,0x31,0xa5,0xcf,0x81,0xe7,0x0b,0x56,0x39,
|
||||
0x6b,0x8e,0xd2,0x96,0xe2,0x98,0x0a,0x21,0x1c,0x36,0x07,0x25,0xc7,0x14,0x4a,0xc8,
|
||||
0xe3,0x9e,0x54,0x13,0xe8,0x91,0x5f,0x2f,0xe0,0x74,0x53,0xe7,0xec,0x7a,0x4c,0x43,
|
||||
0x11,0xff,0x00,0x85,0x9b,0xbb,0xa0,0x1f,0x75,0x80,0xf8,0x0e,0x6e,0x7a,0x02,0x79,
|
||||
0x2b,0x20,0xf2,0x21,0x65,0x9b,0xca,0xb2,0xff,0x00,0x0f,0x5d,0xd3,0x65,0x9b,0x9a,
|
||||
0xc2,0xb2,0x97,0x33,0x08,0x91,0x05,0xca,0xc9,0x35,0xa6,0xd1,0x3e,0x0b,0x45,0x96,
|
||||
0xe4,0x36,0xea,0x14,0xa0,0x92,0x8e,0x48,0xeb,0x41,0x41,0xe4,0x8e,0x01,0x0b,0x47,
|
||||
0x6e,0x41,0x2a,0xd8,0x5b,0xd9,0xcd,0xe1,0xe0,0x3b,0x57,0xd4,0x79,0xd2,0xdd,0x4b,
|
||||
0x66,0x5d,0xa5,0xdb,0x5b,0x08,0x24,0x75,0x38,0xec,0x91,0xe4,0x25,0x29,0x1e,0xff,
|
||||
0x00,0xd6,0x15,0x1e,0x3d,0x92,0xa3,0xed,0x5f,0xce,0xcc,0xf6,0xfd,0xfe,0x8d,0xfa,
|
||||
0x15,0x68,0xc6,0xa5,0x86,0xd5,0x7f,0x94,0xb5,0x5c,0xaf,0x0e,0x34,0x79,0x06,0x53,
|
||||
0x81,0x3c,0xa0,0x1e,0x4f,0x21,0x08,0x4a,0x1b,0xe4,0x76,0x3d,0x05,0x5f,0xbd,0x51,
|
||||
0x5f,0x76,0xfa,0x84,0xce,0xea,0xf7,0x5b,0x80,0x6d,0xfa,0xc6,0xe1,0x9d,0x8d,0x5a,
|
||||
0xae,0xe1,0xfc,0x89,0x6c,0x2b,0x80,0xeb,0xcd,0xa5,0x4a,0x7d,0x01,0x7e,0xde,0x4b,
|
||||
0x29,0x75,0x3c,0x8f,0xdf,0x5a,0x87,0x72,0x91,0x58,0xc8,0x28,0xe8,0xb1,0x4c,0xd1,
|
||||
0x2c,0xd4,0x2d,0xd3,0x49,0x13,0x8c,0x84,0x8e,0x03,0x23,0xdc,0x91,0xd3,0x51,0x1b,
|
||||
0x7a,0xf9,0x2f,0x44,0x96,0xc7,0x63,0xc9,0x59,0x4d,0x83,0x62,0x09,0xd5,0x1d,0x8a,
|
||||
0xe9,0xb6,0x10,0xed,0xd1,0x8b,0x16,0x44,0x87,0x91,0x92,0x2a,0xe2,0xe4,0x62,0xef,
|
||||
0x42,0xa4,0xa5,0x6b,0x5b,0x2a,0x4f,0x20,0xf6,0x6d,0xd6,0xd2,0x7b,0xfe,0xd3,0x20,
|
||||
0xfa,0x56,0x9f,0xb3,0x78,0x45,0x65,0x96,0xcd,0x4c,0xc7,0x5b,0xba,0x64,0xd6,0x9b,
|
||||
0xd6,0x0e,0xa9,0x49,0x55,0xce,0x44,0x5f,0x31,0x89,0x69,0x65,0x20,0xa9,0x48,0x0d,
|
||||
0x91,0xc7,0xcf,0xc0,0x40,0x52,0x56,0x48,0x2a,0xe4,0x8e,0x05,0x5a,0x24,0xfb,0x95,
|
||||
0xbb,0x1e,0x80,0x1f,0x9b,0x2a,0x2d,0xb2,0x0b,0x65,0x0d,0x07,0x1f,0x71,0x2c,0xb4,
|
||||
0x92,0x48,0x4a,0x13,0xc9,0x20,0x0e,0x49,0x00,0x0f,0xa9,0x00,0x57,0x34,0x0e,0x48,
|
||||
0x15,0x69,0x06,0x7b,0xc7,0x69,0x3b,0x6e,0xc2,0x4b,0x32,0x47,0x3d,0xd6,0x20,0x1b,
|
||||
0x17,0x6e,0x6c,0x6d,0x7d,0xaf,0x71,0xbd,0x87,0x45,0x53,0x13,0x0d,0xae,0x17,0x9e,
|
||||
0x6d,0xc4,0xc5,0x89,0x07,0x5f,0x35,0x1e,0x2c,0x08,0xcd,0x43,0x82,0xc6,0x45,0x3d,
|
||||
0x96,0x23,0xb0,0x90,0x96,0xda,0x6d,0x32,0x16,0x94,0xa1,0x20,0x7a,0x00,0x00,0x00,
|
||||
0x7e,0x15,0xaf,0x6b,0x2f,0xd6,0x2b,0xa2,0x6f,0x7a,0xb9,0x9b,0xdc,0x50,0x79,0x44,
|
||||
0xbb,0xe4,0xe9,0x09,0x20,0xf3,0xd9,0x52,0x16,0xa1,0xff,0x00,0x3a,0xc4,0x2b,0xec,
|
||||
0x6a,0x16,0x96,0xd2,0xc4,0xd7,0x72,0x1a,0xdf,0xd8,0x2c,0x59,0xe4,0xab,0x65,0xdb,
|
||||
0xfe,0xcf,0x6f,0x98,0xbd,0x82,0xdf,0xa8,0x7a,0x0b,0xaa,0xb7,0x6d,0x32,0xba,0x5f,
|
||||
0x6d,0x4d,0x33,0x75,0xb2,0xde,0x60,0x31,0x74,0x6d,0x2e,0x29,0x29,0x5f,0x48,0x2a,
|
||||
0x00,0x74,0x82,0x42,0x9b,0x59,0x42,0x89,0x42,0xd2,0xb4,0xab,0xa5,0x7d,0xf5,0x46,
|
||||
0x8e,0x78,0x78,0x6e,0x1f,0x01,0xd6,0xab,0x85,0xdd,0x8c,0xea,0x3e,0x0d,0xe4,0xa1,
|
||||
0x7d,0x59,0x9d,0xbe,0x59,0x92,0xa9,0xc1,0xd3,0xf3,0x25,0x2d,0x12,0x95,0xa8,0x93,
|
||||
0xc1,0x50,0x77,0xa0,0x72,0x01,0x04,0x90,0x2b,0xbb,0xf0,0xfc,0xde,0xae,0x35,0x3b,
|
||||
0x0d,0x46,0x8e,0x6a,0xe4,0xc8,0x4c,0xc3,0x65,0x01,0xab,0x35,0xd2,0xee,0x52,0x22,
|
||||
0xba,0xc2,0x7b,0x88,0x8f,0xad,0x5d,0x90,0x51,0xd2,0x0b,0x6b,0x51,0xe0,0x8e,0x13,
|
||||
0xc8,0x29,0x40,0x54,0x97,0xb9,0xce,0xd1,0x7d,0x14,0x7e,0xf9,0x9a,0xe4,0x19,0x46,
|
||||
0x19,0x77,0x89,0x6e,0x6d,0x57,0x0b,0x4d,0xbc,0x79,0x6f,0xcf,0x61,0x69,0x3d,0x6d,
|
||||
0x86,0x54,0xb7,0xdc,0x2b,0x73,0x90,0x12,0x85,0x36,0x86,0xcf,0x7e,0x49,0x3e,0xa2,
|
||||
0xd9,0xd2,0xcd,0x1b,0x8b,0x09,0xf4,0xd9,0x65,0x1b,0x14,0x32,0x34,0x3c,0x7b,0xee,
|
||||
0xaa,0x7b,0x75,0xfa,0x5e,0xbd,0x21,0xd7,0x0b,0xfe,0x3e,0xed,0xd6,0xe1,0x7c,0x90,
|
||||
0x92,0x99,0x0f,0x5d,0x2e,0xce,0xa5,0x52,0xe6,0x3a,0xb1,0xcb,0x92,0x1c,0x00,0x92,
|
||||
0x9f,0x31,0x7d,0x4e,0x24,0x29,0x4a,0x51,0x42,0xd0,0xa2,0xa3,0xd5,0xcd,0x6a,0x0a,
|
||||
0xcb,0xb5,0x5b,0x51,0x2e,0xfa,0xc7,0xa8,0xd9,0x36,0x6d,0x77,0x47,0xf4,0xeb,0xbc,
|
||||
0xc5,0xcb,0x79,0x0d,0xf2,0x50,0xc2,0x54,0x78,0x43,0x69,0x27,0xbf,0x4a,0x12,0x12,
|
||||
0x81,0xcf,0x7e,0x12,0x2b,0x11,0xac,0x9b,0x2f,0xa4,0x03,0xca,0xc6,0x3a,0xc5,0xc6,
|
||||
0xdc,0x2c,0x92,0xdb,0x87,0xb9,0x71,0xd3,0xbb,0xfe,0x4c,0x8e,0xb2,0x8b,0x55,0xc6,
|
||||
0x04,0x15,0x81,0xfb,0x3c,0x48,0x6e,0x52,0x81,0x3f,0x8f,0x31,0x87,0x1f,0x99,0xae,
|
||||
0x8a,0x4d,0xbe,0x4c,0x36,0x22,0x3c,0xfb,0x0e,0x32,0xd4,0xb6,0xcb,0xd1,0xd6,0xb4,
|
||||
0x90,0x1d,0x40,0x5a,0x90,0x54,0x93,0xee,0x3a,0x90,0xb4,0xf3,0xf5,0x49,0x1e,0xd5,
|
||||
0x28,0x74,0xff,0x00,0x4d,0x5e,0xff,0x00,0xe1,0xe1,0xaa,0xd9,0x83,0x8c,0xa9,0x28,
|
||||
0x7b,0x27,0xb6,0x21,0xa5,0x29,0x3c,0x75,0x25,0x82,0x1b,0xea,0x1f,0x51,0xd5,0x39,
|
||||
0x49,0xe7,0xea,0x08,0xf6,0xa9,0x39,0xb0,0xcd,0xbe,0x60,0x3b,0x8b,0xdb,0x36,0x2e,
|
||||
0xf6,0x6f,0x66,0x17,0x55,0xe2,0x99,0x24,0xff,0x00,0x85,0x48,0x70,0xa0,0x3a,0x85,
|
||||
0xa1,0x0b,0x2c,0xba,0x47,0x75,0x35,0xd6,0xe2,0x57,0xd2,0x08,0xf9,0x90,0x3d,0x8a,
|
||||
0x92,0xad,0x13,0x11,0xcd,0x50,0xe1,0x50,0xcf,0x57,0x33,0x4b,0xa3,0x8e,0x5e,0xcc,
|
||||
0xdb,0x91,0xfc,0xb0,0x76,0xff,0x00,0x23,0x6e,0x47,0x2a,0x46,0xc6,0x5c,0x40,0xf2,
|
||||
0x55,0xcd,0xa4,0x96,0xcf,0xb6,0xf5,0x57,0x0c,0xb7,0x71,0xd5,0xf1,0x77,0xa8,0x51,
|
||||
0xf8,0xfa,0xf5,0xbe,0x84,0xff,0x00,0xde,0xb7,0x27,0x88,0x76,0x1a,0xbc,0x33,0x77,
|
||||
0x59,0xdb,0x7e,0x52,0x9b,0x8d,0x72,0x75,0x8b,0xa3,0x0b,0x50,0xfe,0xb0,0x3c,0xca,
|
||||
0x14,0xb2,0x3f,0x0f,0x37,0xcd,0x4f,0xf6,0x4d,0x5d,0x76,0x3b,0x81,0x63,0x18,0x7c,
|
||||
0x66,0xe3,0xd8,0x71,0xcb,0x4d,0x92,0x3b,0x60,0x04,0x35,0x6e,0x82,0xd4,0x74,0xa4,
|
||||
0x0f,0x4e,0x02,0x12,0x38,0xaa,0xca,0xf1,0x87,0xc2,0xdc,0x85,0xa8,0xd8,0x06,0x58,
|
||||
0x13,0xcb,0x17,0x1b,0x5b,0xd6,0xd5,0x28,0x0f,0x45,0xc7,0x77,0xcc,0xee,0x7f,0x11,
|
||||
0x27,0xb7,0xfb,0xa7,0xe9,0x5a,0x36,0x03,0x9e,0x1b,0x98,0x73,0x24,0x31,0xb6,0x2e,
|
||||
0xcd,0xa5,0x8f,0x68,0xb9,0xbd,0xce,0xcf,0xbf,0x02,0xdb,0x33,0xcd,0x4c,0xf8,0xb4,
|
||||
0x46,0x56,0x82,0xd9,0x26,0xeb,0x67,0x6d,0x8f,0x53,0x9b,0x5c,0xc7,0x5c,0x7f,0x08,
|
||||
0xbc,0x2d,0x0c,0x5e,0xa1,0x24,0x75,0x74,0x27,0xd1,0x32,0x5b,0x1f,0xc6,0xdf,0x24,
|
||||
0xf1,0xfb,0xc9,0x2a,0x4f,0xaf,0x49,0x17,0x17,0xac,0x3a,0x51,0x8a,0xee,0x4f,0x49,
|
||||
0x66,0xe3,0x57,0x75,0x33,0x3a,0xcd,0x76,0x61,0x12,0x21,0x5c,0x63,0x10,0xe1,0x61,
|
||||
0xce,0x9e,0xa6,0x64,0xb2,0xa0,0x78,0x24,0x72,0x08,0x20,0xf0,0xa4,0x92,0x93,0xca,
|
||||
0x54,0x41,0xf3,0xfd,0x03,0x15,0xbc,0x5d,0x6c,0x17,0x5b,0xe4,0x3b,0x74,0x89,0x56,
|
||||
0x9b,0x52,0xd9,0x44,0xe9,0x6d,0x20,0xa9,0x11,0x8b,0xa5,0x41,0xa2,0xbe,0x3f,0x64,
|
||||
0x28,0xa0,0x80,0x4f,0x6e,0x78,0x1c,0xf2,0x40,0x36,0x77,0xe1,0x55,0xb9,0xb3,0x93,
|
||||
0x63,0x92,0x34,0x86,0xff,0x00,0x28,0xae,0xe7,0x68,0x6d,0x52,0xec,0x6e,0x39,0xea,
|
||||
0xec,0x4e,0x79,0x71,0x8e,0x7d,0xcb,0x6a,0x57,0x52,0x47,0xaf,0x42,0x88,0xf4,0x6e,
|
||||
0xa9,0xf1,0x13,0x01,0x3b,0x66,0x0c,0x34,0xda,0x68,0x48,0xd7,0xa7,0x9d,0xac,0x43,
|
||||
0xbd,0x5b,0xb5,0xff,0x00,0x09,0x07,0x80,0x90,0x3f,0xee,0x3b,0x82,0xa2,0x8e,0x96,
|
||||
0xea,0x16,0x7b,0xe1,0xbb,0xba,0x59,0x4c,0x5c,0x18,0x71,0xf6,0x22,0xb8,0x22,0x5d,
|
||||
0xed,0xe8,0x3c,0x33,0x77,0xb7,0xa8,0x85,0x25,0xc6,0xc9,0xed,0xcf,0x1c,0x2d,0x0a,
|
||||
0xf5,0x4a,0x81,0x4a,0xbf,0x7d,0x26,0xfa,0x30,0x3c,0xe6,0xc9,0xa9,0x98,0x6d,0x9f,
|
||||
0x2a,0xc6,0xe7,0xb5,0x74,0xb1,0x5d,0xa3,0x22,0x5c,0x49,0x4d,0x1e,0xcb,0x42,0x87,
|
||||
0xa1,0x1e,0xa9,0x50,0x3c,0x85,0x24,0xf7,0x49,0x04,0x10,0x08,0x22,0xa0,0xcf,0x88,
|
||||
0x86,0xd4,0xd1,0xaf,0xba,0x60,0xbc,0x8e,0xc3,0x0b,0xcc,0xce,0xf1,0xa6,0x56,0xf4,
|
||||
0x50,0xcb,0x7c,0xbb,0x3e,0x28,0xf9,0x9c,0x8a,0x78,0xee,0xa2,0x3b,0xad,0xb1,0xdf,
|
||||
0xe6,0xe5,0x20,0x7d,0xe1,0x35,0x1e,0xbc,0x23,0xb7,0x7a,0xbc,0x1b,0x32,0xff,0x00,
|
||||
0x33,0x19,0x54,0xf2,0x9c,0x7e,0xfa,0xf1,0x72,0xc2,0xf4,0x97,0x78,0x4c,0x39,0xe7,
|
||||
0xd6,0x38,0xea,0xf4,0x4b,0xfe,0xc0,0x1f,0xeb,0x40,0x00,0x12,0xe9,0x35,0xd0,0x72,
|
||||
0x8e,0x63,0x8f,0x32,0x61,0xc2,0x73,0xb4,0xad,0xd9,0xe3,0xa1,0xea,0x3c,0x9d,0xc8,
|
||||
0xf7,0x1e,0x0a,0x09,0x63,0xec,0xdd,0x6f,0x05,0x71,0x34,0xa5,0x2b,0x77,0x51,0x25,
|
||||
0x29,0x4a,0x22,0x52,0x94,0xa2,0x25,0x46,0x0f,0x10,0xbd,0xd2,0x0d,0xb0,0x68,0x24,
|
||||
0xe9,0x56,0xa9,0x48,0x67,0x35,0xbf,0xf5,0x5b,0x6c,0x68,0x3d,0xd4,0xda,0xc8,0xfb,
|
||||
0xd9,0x20,0x7f,0xb2,0x41,0xe4,0x1e,0xe3,0xad,0x4d,0x82,0x08,0x35,0x27,0xeb,0xcf,
|
||||
0x9f,0x88,0x76,0xe5,0x17,0xb9,0x1d,0xc5,0xde,0x26,0x40,0x96,0xe3,0xd8,0x95,0x80,
|
||||
0xaa,0xd1,0x65,0x6c,0xab,0xee,0xd4,0xda,0x14,0x43,0xb2,0x12,0x07,0x6f,0xbd,0x70,
|
||||
0x29,0x41,0x5e,0xa5,0x01,0xb0,0x7f,0x64,0x00,0x45,0xa1,0x30,0x1c,0x1e,0xf3,0xaa,
|
||||
0x39,0xc5,0x9b,0x16,0xb1,0xb0,0x65,0xde,0xaf,0x12,0xd1,0x16,0x3a,0x54,0x4f,0x1d,
|
||||
0x4a,0x3d,0xd4,0xb2,0x01,0xe1,0x29,0x1c,0xa9,0x4a,0xf6,0x00,0x9f,0x6a,0xbf,0x9d,
|
||||
0x06,0xd1,0x9b,0x2e,0x81,0x69,0x5d,0x8f,0x0a,0xb2,0x24,0x29,0x88,0x0d,0x73,0x22,
|
||||
0x57,0x4f,0x0b,0x97,0x21,0x5d,0xdd,0x79,0x5d,0xcf,0x75,0x2b,0x9e,0x07,0x3f,0x28,
|
||||
0xe9,0x48,0xec,0x91,0x50,0x97,0xc2,0x6f,0x6e,0x7f,0x66,0xda,0x2e,0x5a,0xc1,0x7a,
|
||||
0x8a,0xa1,0x26,0x77,0x5d,0xba,0xc2,0x97,0x12,0x38,0x4b,0x00,0xf0,0xfc,0x81,0xf8,
|
||||
0xa9,0x43,0xcb,0x07,0xb7,0x01,0x0e,0x7a,0x85,0x0a,0xb1,0x95,0xad,0x2d,0x21,0x4b,
|
||||
0x5a,0x82,0x10,0x90,0x4a,0x94,0xa3,0xc0,0x03,0xdc,0x9a,0xf9,0x4b,0xe2,0x5e,0x63,
|
||||
0x38,0x85,0x77,0xd9,0x54,0xee,0xfe,0x5c,0x27,0xbd,0xe6,0xff,0x00,0x1f,0xcb,0xc7,
|
||||
0xad,0xd6,0x46,0x06,0x69,0x1a,0x8f,0x8a,0xe8,0xb3,0xec,0x2e,0x06,0xa3,0xe1,0x77,
|
||||
0xac,0x5e,0xea,0xe4,0x96,0xad,0x97,0x78,0xab,0x87,0x28,0xc3,0x74,0xb4,0xe9,0x69,
|
||||
0x63,0x85,0x80,0xa1,0xe9,0xc8,0xe4,0x1f,0xc0,0x9a,0xd6,0xfa,0x57,0xb5,0xed,0x24,
|
||||
0xdb,0x5c,0x29,0x77,0x9c,0x67,0x16,0x62,0x14,0xc8,0xcc,0x38,0xf3,0xf7,0x89,0x01,
|
||||
0xc9,0xb3,0x42,0x02,0x0f,0x5f,0x42,0x95,0xd4,0xa4,0xf2,0x9e,0x41,0x43,0x40,0x75,
|
||||
0x7d,0x09,0xae,0xbf,0x6e,0xdb,0xc1,0xc3,0xb7,0x29,0x96,0x66,0xd6,0x2c,0x71,0x0e,
|
||||
0xb2,0xe6,0x3b,0x20,0x06,0x1e,0x7d,0x63,0x8b,0x94,0x52,0x7a,0x7e,0x25,0xb4,0xf6,
|
||||
0x29,0x4f,0x58,0x23,0x83,0xdc,0x05,0x36,0x4f,0x05,0x65,0x29,0xde,0xd5,0xcc,0x67,
|
||||
0x38,0x9e,0x11,0xaf,0x0d,0xa8,0x2f,0x8c,0x1b,0x17,0x32,0xe4,0x5e,0xe0,0x11,0x71,
|
||||
0xc1,0xdb,0xad,0xed,0xd2,0xea,0x71,0xa5,0xdd,0xe0,0xab,0x73,0x77,0x1e,0x28,0x96,
|
||||
0xd7,0x6c,0x93,0x71,0x4d,0x1a,0x7d,0xf9,0x13,0x24,0xa0,0xb5,0x23,0x2c,0x5b,0x6a,
|
||||
0x65,0x2c,0x20,0x8f,0x98,0x45,0x42,0xc0,0x59,0x5f,0x7e,0x3c,0xc5,0x04,0xf4,0xf0,
|
||||
0x4a,0x42,0x89,0x0a,0x4f,0x55,0xe1,0x05,0xa5,0x0b,0x99,0x78,0xcd,0x75,0x36,0x68,
|
||||
0x2a,0x4b,0x08,0x4d,0x8e,0x12,0x95,0xdf,0xa9,0xc5,0xf4,0xbd,0x21,0x47,0xe8,0x40,
|
||||
0x0c,0x80,0x7d,0xfc,0xc5,0x7d,0x2a,0x18,0xee,0x87,0x00,0x6b,0x4e,0x77,0x1b,0xa8,
|
||||
0x38,0xc4,0x06,0xba,0x62,0x45,0xbd,0x3f,0xf0,0x6c,0x36,0x3f,0x61,0x97,0x15,0xe6,
|
||||
0x34,0x80,0x3d,0xf8,0x42,0xd2,0x3f,0x4a,0xba,0x5d,0xa2,0xe8,0xea,0xb4,0x2b,0x6f,
|
||||
0x78,0x86,0x2b,0x26,0x32,0x63,0x5d,0xd1,0x1b,0xe3,0x2e,0x89,0x1c,0x15,0x7c,0x5b,
|
||||
0xc7,0xcc,0x74,0x28,0x8e,0xca,0x28,0xe4,0x37,0xcf,0xd1,0xb1,0x5d,0xc7,0x33,0x33,
|
||||
0x0d,0xcb,0x39,0x59,0x94,0xb8,0x58,0xb1,0xaa,0xd3,0xb9,0xdd,0xce,0x6d,0x83,0x89,
|
||||
0x27,0xd2,0xc2,0xc0,0x00,0x35,0x6c,0x37,0x56,0xb1,0xea,0x92,0x4b,0xbb,0xc1,0x44,
|
||||
0x6f,0x18,0x0d,0x57,0x10,0xec,0x18,0x5e,0x9c,0x44,0x96,0x03,0xd3,0x1e,0x5d,0xee,
|
||||
0xe0,0xc2,0x09,0x0a,0x0d,0x23,0xa9,0xa8,0xfd,0x5f,0x54,0xa9,0x4a,0x7c,0xf1,0xf5,
|
||||
0x68,0x1f,0x61,0x53,0xd7,0x18,0x74,0xe2,0xba,0x6d,0x68,0x72,0xe0,0xb5,0x28,0xdb,
|
||||
0x6d,0x0c,0xaa,0x42,0xdc,0x3f,0x31,0xf2,0xd9,0x1d,0x64,0x93,0xef,0xf2,0x9a,0xa4,
|
||||
0x0d,0xcf,0x6a,0x7a,0xf7,0x23,0xba,0x7b,0xdd,0xd6,0x17,0xf4,0x8b,0x7c,0xcb,0x9b,
|
||||
0x56,0x9b,0x4a,0x1b,0x57,0x50,0x5c,0x66,0xd4,0x19,0x69,0x49,0xff,0x00,0xc4,0xe0,
|
||||
0xb9,0xc7,0xd5,0xc3,0x57,0x3f,0xb8,0x5b,0x81,0xc7,0xf6,0xf7,0xa8,0xf2,0xd2,0xae,
|
||||
0x83,0x17,0x1a,0xb8,0x29,0x2a,0x1e,0xc4,0x46,0x5f,0x15,0xab,0xe6,0x6c,0x23,0xec,
|
||||
0xdc,0x2f,0x06,0xc2,0xdc,0x2c,0xf7,0x6a,0x73,0xba,0xea,0x79,0x67,0xed,0x7b,0x7b,
|
||||
0x29,0x23,0x7d,0xdc,0xe7,0x2a,0xaa,0xc6,0xb6,0x5f,0x97,0xeb,0xbe,0xd7,0x74,0xff,
|
||||
0x00,0x2f,0xc1,0xac,0xad,0xdd,0xb2,0x49,0x17,0x7b,0x9b,0x77,0x15,0x39,0x29,0x98,
|
||||
0xe5,0xc8,0xc5,0xc0,0x1b,0x59,0x53,0xab,0x48,0x21,0x0e,0x34,0xe8,0xe0,0x72,0x7e,
|
||||
0xf7,0xd3,0x81,0xdb,0xfb,0xb7,0xf8,0x54,0x6b,0xa4,0xc4,0xa4,0xbc,0xce,0x3b,0x00,
|
||||
0x9f,0x51,0x22,0xe9,0xc9,0x1f,0xe0,0x42,0xaa,0xca,0xb6,0x4f,0x88,0x7f,0x90,0xbb,
|
||||
0x50,0xd3,0x4b,0x62,0xb9,0x05,0x56,0x94,0xdc,0x17,0xd5,0xfb,0xa6,0x4a,0xd7,0x24,
|
||||
0x83,0xf9,0x17,0x88,0xfd,0x2b,0x76,0x25,0x41,0x69,0x0a,0x49,0x0a,0x49,0x1c,0x82,
|
||||
0x3d,0x08,0xa9,0xab,0xbe,0x23,0xe2,0xf4,0x35,0x75,0x14,0xd4,0x9a,0x0c,0x6d,0x91,
|
||||
0xfa,0x49,0x04,0x9b,0x6a,0x36,0xf1,0xb7,0xa6,0xdc,0x2a,0x08,0x1a,0x40,0x25,0x53,
|
||||
0x3d,0xdb,0xc2,0xaf,0x5d,0x6d,0xcc,0xa9,0x71,0xe2,0xe3,0xf7,0x55,0x01,0xc8,0x6e,
|
||||
0x25,0xd4,0x25,0x47,0xf0,0x1e,0x6a,0x50,0x3f,0xbc,0xd6,0x00,0xf6,0xc1,0x35,0xee,
|
||||
0x26,0x43,0x6d,0xb4,0x49,0xd3,0xbb,0x83,0x2e,0xce,0x7d,0x2c,0x26,0x52,0x1d,0x69,
|
||||
0xf8,0xac,0xf3,0xfb,0xee,0xba,0xd2,0xd6,0x96,0xd0,0x07,0x72,0xa5,0x1f,0xcb,0x93,
|
||||
0xc0,0xab,0xcc,0xba,0x5e,0x6d,0xf6,0x38,0xe9,0x7e,0xe5,0x3a,0x35,0xbd,0x85,0x28,
|
||||
0x20,0x3b,0x29,0xe4,0xb4,0x92,0xa3,0xe8,0x39,0x51,0x03,0x9e,0xc7,0xb5,0x75,0x12,
|
||||
0xf5,0x23,0x13,0x83,0x02,0x54,0xd7,0xf2,0x6b,0x4b,0x71,0x22,0xb4,0xa7,0x9e,0x77,
|
||||
0xe3,0x5b,0x21,0xb4,0x24,0x12,0xa5,0x1e,0x15,0xe8,0x00,0x27,0xf4,0xa5,0x3f,0xc5,
|
||||
0x0c,0x7e,0xdb,0xc2,0xc7,0xdf,0xf0,0xbb,0x9f,0x67,0x5b,0xf4,0x43,0x4e,0xc5,0x50,
|
||||
0x5b,0xc4,0xd2,0xcb,0x56,0x82,0xc1,0xc0,0x34,0x27,0x11,0x22,0xef,0x7e,0x7c,0x22,
|
||||
0xf3,0x90,0x4d,0x69,0x20,0xbd,0x72,0xb8,0xba,0x4b,0x31,0x9b,0xe3,0xb9,0x42,0x5b,
|
||||
0x4f,0x9b,0xd0,0xdf,0x3e,0x8f,0xf5,0x1e,0x4a,0x8a,0x8c,0x59,0xc9,0xb1,0xd9,0x58,
|
||||
0xb6,0x51,0x75,0xb0,0xca,0xe9,0x5c,0xdb,0x74,0xc7,0x60,0xbb,0xe5,0x72,0x52,0x5c,
|
||||
0x6d,0x65,0x0a,0xe9,0xfa,0x8e,0x41,0xe2,0xa6,0x16,0xda,0x10,0xf6,0xef,0xbc,0x42,
|
||||
0xe4,0x66,0xf3,0x1a,0x71,0x16,0xc8,0xb3,0xdd,0xc9,0x14,0xd3,0x87,0x95,0xb5,0x1e,
|
||||
0x39,0x4a,0x21,0xb6,0x4f,0xa1,0x29,0x57,0xc3,0x24,0xfd,0x42,0x55,0xc5,0x70,0xb4,
|
||||
0xc3,0x45,0x86,0xa4,0xf8,0x95,0xdf,0xec,0x12,0xa1,0x99,0x16,0x9b,0x56,0x5b,0x72,
|
||||
0xbb,0xce,0x41,0x48,0x28,0xf8,0x76,0x24,0x2d,0xc4,0x75,0x8f,0xe0,0x5a,0xfc,0x94,
|
||||
0x11,0xef,0xe6,0x71,0xef,0x5d,0x92,0x87,0x16,0xfb,0x22,0x37,0xd2,0xd6,0xbb,0x54,
|
||||
0x91,0x43,0xdb,0x4a,0x7c,0x4b,0x9c,0x49,0x23,0xdb,0x80,0x3a,0x69,0x03,0x6b,0x05,
|
||||
0x6c,0xe6,0xea,0xdc,0x78,0x9b,0x29,0x93,0xa8,0x3a,0x10,0xbd,0x3e,0xf0,0xc9,0xbc,
|
||||
0x60,0x6f,0xa0,0x19,0xd6,0xdc,0x6c,0x5c,0xa6,0xa5,0x3d,0xc0,0x92,0x87,0x93,0x35,
|
||||
0xe0,0x08,0xf5,0x09,0x5a,0x54,0x01,0xf7,0x09,0x15,0xd4,0xf8,0x46,0x3f,0xe6,0xed,
|
||||
0xb2,0xfa,0xdf,0xfa,0xbc,0x9a,0x40,0xfe,0xf8,0xd1,0x8f,0xfd,0xea,0x4f,0xee,0x12,
|
||||
0x0f,0xda,0x9a,0x09,0xa9,0x30,0xf8,0xea,0xf3,0xf1,0xbb,0x93,0x7c,0x7d,0x79,0x8a,
|
||||
0xe0,0xa8,0x9b,0xe0,0xfd,0x2c,0x2f,0x42,0x73,0x18,0xbf,0xbc,0xd6,0x48,0xa7,0x0f,
|
||||
0xe4,0xa8,0xac,0x0f,0xfd,0x86,0xb8,0x24,0x75,0x92,0xd7,0xe5,0x4c,0x42,0x49,0x4d,
|
||||
0xdc,0x67,0x6b,0xcf,0xab,0xf9,0xfd,0x95,0xd9,0x16,0x91,0xa0,0x74,0x53,0xc6,0xa1,
|
||||
0xcf,0x8a,0xa6,0x04,0xee,0x59,0xb6,0x05,0x5e,0x23,0xb6,0x16,0xee,0x37,0x76,0x8d,
|
||||
0x3d,0xc3,0xc7,0x2a,0xf2,0x57,0xd5,0x1d,0x5c,0x7f,0x69,0xe6,0xc9,0xfc,0x12,0x4f,
|
||||
0xb5,0x6b,0x1f,0x10,0xfd,0x6e,0xcc,0xb4,0x2b,0x73,0x9a,0x57,0x7d,0xb3,0x64,0x97,
|
||||
0x78,0x36,0x06,0xe0,0xb4,0xfc,0xcb,0x3c,0x79,0xae,0x26,0x1c,0xb0,0xdc,0xb7,0x3c,
|
||||
0xe0,0xe3,0x21,0x5d,0x0a,0x2b,0x6d,0x41,0x24,0x91,0xcf,0x01,0x3d,0xfe,0x51,0xc4,
|
||||
0xe1,0xd5,0x6c,0x32,0x36,0xb0,0x69,0x0e,0x51,0x8c,0xb3,0x21,0x95,0x33,0x90,0x5a,
|
||||
0x1f,0x8b,0x1e,0x57,0x3d,0x6d,0x85,0x3a,0xd1,0xf2,0x9c,0xe4,0x7a,0x80,0xa2,0x95,
|
||||
0x76,0xfa,0x56,0x22,0x8a,0x92,0x5c,0xb9,0x3e,0x19,0x8d,0x3d,0xc0,0xc7,0x21,0xd5,
|
||||
0xe8,0x1a,0xeb,0x38,0x1f,0x62,0xbd,0x92,0x1e,0x1c,0xc5,0x1b,0xfc,0x38,0xf4,0x47,
|
||||
0x05,0xb4,0xed,0x75,0xab,0xa4,0x50,0xde,0x4a,0xe6,0x6e,0xd2,0x95,0x7c,0x33,0xe3,
|
||||
0x8f,0x2d,0x5d,0x05,0x6d,0x18,0x65,0xa2,0x48,0x2d,0xb6,0x7c,0xd1,0xc9,0xee,0xbe,
|
||||
0xb2,0xae,0xc0,0xa5,0x29,0x8a,0x9b,0xa1,0xda,0x56,0x4f,0xb2,0xcd,0x49,0xb6,0x6a,
|
||||
0xfe,0x96,0x17,0xe4,0xe2,0x10,0x27,0x22,0x5a,0x01,0x2a,0x5b,0x96,0x85,0xf5,0x01,
|
||||
0xe4,0x3e,0x41,0xea,0x5c,0x77,0x3a,0x8a,0x02,0xc9,0xf4,0x51,0x42,0xcf,0x24,0x29,
|
||||
0x7b,0x93,0xc2,0x33,0x52,0x25,0x2b,0x1a,0xce,0xb4,0xce,0xe6,0x3c,0xa9,0x56,0x49,
|
||||
0x89,0xb9,0x46,0x69,0xc3,0xf7,0x89,0x4b,0x9f,0x76,0xfa,0x38,0xf6,0x08,0x5b,0x68,
|
||||
0x3f,0x9b,0xa7,0xf0,0xab,0x03,0xb8,0x5b,0xe2,0xdd,0xa0,0x49,0x83,0x3a,0x33,0x33,
|
||||
0x61,0x49,0x6d,0x4c,0xbf,0x1a,0x43,0x61,0xc6,0xdd,0x6d,0x43,0x85,0x21,0x49,0x3c,
|
||||
0x85,0x24,0x82,0x41,0x07,0xb1,0x06,0xb6,0x3c,0x47,0x1c,0xc4,0x32,0xc6,0x66,0xac,
|
||||
0xed,0x5d,0xda,0xc7,0x23,0xbb,0xcd,0x77,0x0f,0x63,0x87,0x77,0xc8,0x10,0xd2,0x00,
|
||||
0x20,0x6d,0xc5,0xad,0x70,0xa3,0x6b,0x1b,0x24,0x63,0xc1,0x62,0x9a,0x3b,0xaa,0x76,
|
||||
0x8d,0x6a,0xd3,0x3c,0x7f,0x35,0xb1,0xac,0x7c,0x05,0xda,0x32,0x5e,0xf2,0xba,0xfa,
|
||||
0x94,0xc3,0x83,0xe5,0x71,0x95,0x1e,0x07,0xcc,0x85,0x85,0x24,0xf6,0xef,0xd3,0xcf,
|
||||
0xa1,0xaa,0xa2,0xf1,0x1f,0xdb,0x83,0xba,0x0d,0xac,0x71,0xf3,0x8c,0x61,0xa5,0xdb,
|
||||
0xf1,0xac,0x95,0xf5,0x4c,0x8e,0xa8,0x61,0x4d,0x8b,0x7d,0xc1,0x24,0x29,0xc4,0x25,
|
||||
0x43,0xf6,0x3a,0x8f,0xde,0xa3,0x82,0x38,0xe5,0x61,0x20,0x06,0xea,0xc4,0xb4,0x53,
|
||||
0x43,0xe5,0x6d,0xa7,0x3d,0xbc,0xd9,0x71,0xa2,0xf4,0xbd,0x2c,0xc9,0x1d,0x54,0xe8,
|
||||
0xb0,0x55,0xf3,0xb9,0x61,0xb8,0x00,0x3a,0xd0,0x0f,0xaa,0xa3,0xba,0x80,0x38,0x51,
|
||||
0x27,0xa1,0x4d,0xa5,0x27,0xf6,0xfa,0x8e,0x59,0xb9,0x8d,0x11,0x83,0xb8,0x4d,0x18,
|
||||
0xc8,0xb0,0xc9,0x41,0x28,0x97,0x25,0x9f,0x3e,0xdd,0x25,0x5d,0xbe,0x1e,0x62,0x39,
|
||||
0x53,0x2b,0xe7,0xe9,0xd5,0xf2,0xab,0xea,0x95,0x28,0x76,0xe6,0xb1,0x78,0x0e,0x35,
|
||||
0x06,0x59,0xc7,0x84,0xf4,0xaf,0xbd,0x2c,0x9b,0x1e,0xba,0x0f,0x51,0xfd,0x4c,0x3c,
|
||||
0xf5,0xb1,0xb6,0xce,0xb9,0xf4,0xf6,0x19,0x19,0x63,0xca,0xee,0x36,0x27,0xb9,0xb6,
|
||||
0xf7,0x49,0xa0,0x56,0xac,0x82,0x5b,0xa9,0x39,0x4d,0xb4,0x8b,0x65,0xf5,0xa4,0xa4,
|
||||
0x27,0x99,0x48,0x48,0x3e,0x68,0x48,0xe0,0x04,0xba,0x92,0x95,0x8e,0x00,0x00,0xa9,
|
||||
0x49,0x1f,0xb3,0x52,0x1e,0xa8,0x67,0xc3,0x97,0x5e,0xe7,0x6d,0x77,0x74,0x88,0xc7,
|
||||
0xb2,0x4e,0xbb,0x5d,0x93,0x21,0x7c,0x63,0xb7,0xc8,0xd2,0xd5,0xe5,0x88,0x92,0x43,
|
||||
0x85,0x2c,0xba,0xb0,0x48,0x00,0xb6,0xe9,0x28,0x25,0x5d,0x92,0x87,0x1c,0x35,0x7c,
|
||||
0xd5,0xf6,0x50,0x21,0xc0,0x39,0xa6,0xe0,0xac,0x5a,0x52,0x94,0xaa,0xa2,0x52,0x94,
|
||||
0xa2,0x28,0xb1,0xe2,0x4b,0xb8,0x03,0xa0,0x7b,0x5f,0xbf,0x39,0x01,0xf7,0x18,0xc8,
|
||||
0xb2,0x52,0x6c,0x36,0xc5,0xb2,0xae,0x95,0xb4,0xa7,0x50,0xaf,0x35,0xd0,0x79,0x05,
|
||||
0x3d,0x0d,0x07,0x38,0x50,0xee,0x16,0x51,0xf5,0xe4,0x51,0x6e,0x90,0x69,0x9d,0xcf,
|
||||
0x58,0xf5,0x37,0x1b,0xc2,0xec,0xe8,0x26,0x75,0xe2,0x62,0x23,0x05,0xf1,0xc8,0x65,
|
||||
0xbf,0x57,0x1d,0x57,0xf2,0xa1,0x01,0x4b,0x3f,0x82,0x4d,0x4b,0x9f,0x17,0xad,0x6f,
|
||||
0x1a,0x91,0xb9,0x16,0x70,0xf8,0x32,0x54,0xed,0xa3,0x0a,0x88,0x21,0xa9,0x00,0x82,
|
||||
0x83,0x35,0xde,0x1c,0x90,0xa1,0xf9,0x27,0xc9,0x6c,0xf3,0xe8,0x5a,0x57,0xeb,0x9b,
|
||||
0x78,0x44,0x68,0x98,0x9b,0x76,0xca,0x35,0x4a,0xe3,0x13,0xa9,0xb8,0x43,0xec,0x6b,
|
||||
0x4b,0xab,0xe3,0x8f,0x35,0x40,0x2e,0x4a,0xd2,0x3d,0x79,0x4a,0x0b,0x68,0x07,0xd3,
|
||||
0x87,0x56,0x3e,0xbc,0x6b,0x19,0x97,0x17,0x6e,0x07,0x85,0x4f,0x5d,0xf7,0x9a,0x2c,
|
||||
0xdf,0x37,0x1d,0x9b,0xfa,0xee,0x7c,0x81,0x52,0x46,0xdd,0x6e,0x01,0x59,0x1e,0x15,
|
||||
0x87,0xda,0xf4,0xff,0x00,0x11,0xb3,0x63,0x36,0x48,0xe2,0x2d,0xa2,0xd3,0x11,0xa8,
|
||||
0x51,0x5a,0xe7,0x92,0x96,0xd0,0x90,0x91,0xc9,0xf7,0x27,0x8e,0x49,0x3d,0xc9,0x24,
|
||||
0x9f,0x5a,0x88,0x9e,0x27,0xfb,0x8e,0x3a,0x57,0xa4,0xad,0xe0,0xb6,0x69,0x41,0xbc,
|
||||
0x93,0x2f,0x6d,0x6d,0x3c,0x5b,0x73,0x87,0x23,0xdb,0xc7,0x67,0x54,0x40,0xee,0x3c,
|
||||
0xc3,0xf7,0x43,0x9e,0xc4,0x79,0xbc,0x77,0x4d,0x4d,0x37,0x1c,0x43,0x4d,0xa9,0x6e,
|
||||
0x29,0x28,0x42,0x41,0x52,0x94,0xa3,0xc0,0x48,0x1e,0xa4,0x9f,0x61,0x54,0x07,0xba,
|
||||
0xfd,0x6c,0x7f,0x5f,0xf5,0xdf,0x27,0xcb,0x0b,0xbd,0x76,0xc5,0x3e,0x62,0x5a,0xd0,
|
||||
0x39,0x01,0x10,0x9a,0x25,0x2d,0x70,0x0f,0x70,0x54,0x39,0x59,0xfe,0x65,0xab,0xd3,
|
||||
0xd2,0xbe,0x65,0xf8,0x7b,0x82,0x1c,0x73,0x19,0x35,0x55,0x3d,0xe6,0x43,0xdf,0x75,
|
||||
0xfc,0x5c,0x4f,0x74,0x1f,0x7b,0xb8,0xf5,0xb7,0x9a,0xbf,0x99,0xfa,0x1b,0x61,0xe2,
|
||||
0xb7,0x1f,0x85,0x65,0xd5,0xeb,0x76,0xec,0x22,0x47,0x6c,0x90,0x89,0xf6,0x69,0xb1,
|
||||
0x9d,0x03,0xdd,0x20,0x25,0xde,0xff,0x00,0xda,0x69,0x35,0x73,0x55,0x53,0x5e,0x11,
|
||||
0x9a,0x5d,0x3a,0xf5,0xab,0xd9,0x0e,0x76,0xe3,0x5d,0x36,0x8b,0x1d,0xb9,0x50,0x50,
|
||||
0xe9,0xf5,0x5c,0xa7,0xd4,0x9e,0x12,0x9f,0xaf,0x4b,0x68,0x70,0x9f,0xa7,0x52,0x3e,
|
||||
0xb5,0x63,0xfb,0x8a,0xd5,0x96,0x74,0x3f,0x45,0x72,0xcc,0xcd,0x7d,0x0a,0x93,0x6e,
|
||||
0x86,0xaf,0x82,0x69,0xcf,0x47,0x65,0x2f,0x84,0x30,0x8e,0x3d,0x48,0x2e,0x29,0x1c,
|
||||
0xf1,0xdf,0x8e,0x4f,0xb5,0x5d,0xfc,0x46,0x68,0xaf,0xcc,0xcd,0xa5,0xa6,0xdd,0xe5,
|
||||
0xac,0x65,0xbf,0x11,0x26,0xc3,0xe8,0x42,0xa4,0x1b,0x47,0x72,0xab,0xd7,0x46,0xb4,
|
||||
0xb1,0xbd,0xcf,0xf8,0x8c,0xea,0x06,0x59,0x2e,0x3a,0x65,0xe2,0x38,0xad,0xf1,0xd9,
|
||||
0xaf,0x38,0x4f,0xdd,0xbe,0xe3,0x0e,0x79,0x30,0xd1,0xf8,0x85,0x29,0xa0,0xe7,0x07,
|
||||
0xb1,0x4b,0x6a,0x07,0xd4,0x03,0x64,0x7a,0xb7,0x85,0xdc,0x75,0x1b,0x4d,0x32,0x4c,
|
||||
0x5e,0xd5,0x7d,0xff,0x00,0x26,0xa6,0xde,0x21,0x2e,0x12,0x6e,0xa2,0x31,0x90,0x63,
|
||||
0xa1,0x7f,0x2b,0x84,0x36,0x16,0x8e,0x54,0x50,0x54,0x01,0xea,0x1c,0x12,0x0f,0x7e,
|
||||
0x38,0x3a,0xc7,0x65,0x1a,0x06,0xad,0x01,0xd0,0xeb,0x65,0xbe,0xe4,0xd2,0x46,0x57,
|
||||
0x78,0x57,0xda,0xd7,0xc7,0x88,0xe5,0xc3,0x25,0xc0,0x08,0x69,0x47,0xfd,0x9a,0x7a,
|
||||
0x51,0xc0,0xed,0xd4,0x16,0x47,0xed,0x12,0x79,0x5a,0xa3,0xbd,0x7d,0x1c,0xd1,0xbc,
|
||||
0xc5,0xfc,0x5b,0x29,0xcb,0x93,0x0e,0xf9,0x1d,0x28,0x54,0x88,0xac,0x43,0x7e,0x47,
|
||||
0x91,0xd4,0x02,0x92,0x16,0xa6,0xd0,0xa0,0x0f,0x04,0x1e,0x9e,0x79,0xe0,0x8e,0xdd,
|
||||
0xc5,0x61,0x71,0xca,0xda,0xbc,0x6f,0x16,0x64,0x58,0x4b,0x1d,0x23,0x69,0x83,0x5b,
|
||||
0x18,0x6b,0x75,0x6c,0xcb,0x0d,0x56,0xb1,0x04,0x13,0xd4,0x5a,0xd6,0x05,0x7b,0x60,
|
||||
0x0c,0x6d,0xdd,0xe2,0xb4,0x66,0x8b,0x78,0x54,0x62,0x5a,0x5d,0x9c,0x58,0x32,0x9b,
|
||||
0xbe,0x6b,0x73,0xc9,0xa7,0x59,0x66,0xb5,0x70,0x8f,0x1d,0xb8,0x4d,0xc3,0x8e,0xb7,
|
||||
0x5a,0x58,0x5a,0x3a,0xd3,0xd4,0xe2,0x8a,0x42,0x80,0x3c,0x05,0x0e,0x78,0xef,0xdb,
|
||||
0xb5,0x6d,0x2f,0x11,0x4c,0xac,0xe2,0x9b,0x41,0xce,0xd4,0xdb,0xbe,0x5c,0x9b,0x82,
|
||||
0x23,0x5b,0x9a,0xe7,0xf7,0xbc,0xd9,0x0d,0x87,0x07,0xfe,0x50,0x72,0xb7,0x9e,0x07,
|
||||
0x9f,0xe3,0xba,0x9f,0x8b,0x42,0xc8,0xf1,0x5b,0xbc,0x6b,0xe5,0x92,0x62,0x4a,0x99,
|
||||
0x99,0x15,0x5c,0xa4,0xf0,0x78,0x29,0x20,0xf0,0x52,0xa0,0x7b,0x14,0xa8,0x02,0x0f,
|
||||
0x62,0x05,0x42,0x2f,0x18,0x0c,0xe9,0x8b,0x66,0x92,0x61,0x78,0x92,0x54,0x7e,0x32,
|
||||
0xef,0x77,0x5c,0xf3,0xc1,0xec,0x19,0x8c,0xd1,0x4a,0x81,0xfc,0xd5,0x21,0xbe,0x3f,
|
||||
0xdd,0x35,0x2e,0x15,0x57,0x8a,0x66,0x2c,0xcd,0x46,0xcc,0x51,0xe5,0xef,0x63,0xc6,
|
||||
0xc4,0x01,0x60,0xd3,0xa8,0x8b,0x00,0x00,0xe3,0x7d,0x95,0x1c,0x1a,0xc8,0xce,0x95,
|
||||
0x5a,0x79,0x46,0xb3,0xe7,0xb9,0xb5,0x92,0x35,0x9a,0xfd,0x99,0x5f,0x2e,0xd6,0x78,
|
||||
0xc8,0x43,0x6c,0xdb,0xa5,0xcf,0x75,0x71,0xd0,0x94,0x00,0x10,0x03,0x65,0x5d,0x3d,
|
||||
0x80,0x1c,0x76,0xab,0xda,0xdb,0x06,0x28,0xee,0x13,0xb7,0x5d,0x37,0xb2,0xbe,0x16,
|
||||
0x99,0x31,0xac,0x10,0xcb,0xe8,0x73,0xd5,0x0e,0xad,0xa4,0xad,0x69,0xfd,0x14,0xa5,
|
||||
0x0f,0xd2,0xa8,0x63,0x4c,0x70,0xc7,0xf5,0x17,0x51,0xf1,0x6c,0x56,0x31,0xe8,0x7e,
|
||||
0xf5,0x74,0x8d,0x6f,0x4a,0xf8,0xe4,0x23,0xcd,0x75,0x28,0xea,0x3f,0x80,0xea,0xe4,
|
||||
0xfe,0x02,0xbd,0x19,0x32,0xc2,0x23,0x32,0xdb,0x2d,0x27,0xa5,0xb6,0xd2,0x10,0x94,
|
||||
0x8f,0x60,0x3b,0x01,0x5b,0xf7,0xc5,0x79,0x62,0xa7,0x86,0x92,0x86,0x16,0x86,0x82,
|
||||
0x5c,0xf2,0x00,0xb7,0x40,0x0e,0xdd,0x6e,0x7e,0x8a,0x1a,0x70,0x4d,0xc9,0x55,0x27,
|
||||
0xe2,0xe7,0x9f,0x39,0x7b,0xd7,0x2c,0x7b,0x15,0x6a,0x61,0x76,0x15,0x8a,0xce,0x97,
|
||||
0x9c,0x8c,0x15,0xf2,0xb5,0x25,0xf5,0xa9,0x4a,0x24,0x7f,0x11,0x6d,0x0c,0x1f,0xcb,
|
||||
0x8f,0xad,0x41,0x4a,0xdc,0x5b,0xc3,0xcb,0xd7,0x9c,0xee,0x87,0x53,0x2e,0xcb,0x74,
|
||||
0x3e,0x3e,0xda,0x7e,0x1b,0x6e,0x03,0xc8,0x2d,0xc7,0x3f,0x0e,0xdf,0x07,0xdc,0x74,
|
||||
0x34,0x9a,0xfb,0xed,0x13,0x6f,0x12,0xf7,0x29,0xad,0x16,0xac,0x67,0x87,0x5a,0xb1,
|
||||
0x47,0xfe,0x9b,0x79,0x96,0xd8,0xfe,0xa6,0x22,0x08,0xea,0x48,0x3e,0xca,0x59,0x21,
|
||||
0xb4,0x9f,0x62,0xbe,0x78,0x21,0x26,0xba,0xd6,0x0a,0xd8,0x32,0xfe,0x5d,0x80,0xd4,
|
||||
0x1d,0x2d,0x8e,0x30,0xe7,0x7a,0x91,0xa9,0xdf,0xa9,0x36,0xf1,0x2a,0xd9,0xf7,0x7c,
|
||||
0x86,0xca,0xc6,0x3c,0x2b,0x74,0x31,0xcd,0x3c,0xd1,0x49,0x99,0xb5,0xca,0x3a,0x5b,
|
||||
0xbb,0x66,0x0e,0xa5,0xe6,0x39,0x07,0xad,0x10,0x5a,0xea,0x4b,0x5c,0xf2,0x3b,0x75,
|
||||
0xa8,0xb8,0xbe,0xdd,0x8a,0x4b,0x67,0xf0,0x19,0xd6,0xdf,0x74,0x87,0xec,0x0d,0xdc,
|
||||
0x6e,0x23,0x35,0x5b,0x48,0xf2,0x64,0x4d,0x81,0x6d,0x88,0xe8,0xf5,0xea,0x72,0x1b,
|
||||
0x12,0xe4,0x8f,0xcb,0x97,0x63,0xfe,0xa0,0xfd,0x2a,0x4b,0xdb,0xad,0xd1,0x6c,0xf6,
|
||||
0xf8,0xb0,0x20,0xc6,0x6a,0x1c,0x18,0xad,0x21,0x86,0x23,0x30,0x80,0x86,0xda,0x6d,
|
||||
0x20,0x25,0x28,0x4a,0x47,0x60,0x90,0x00,0x00,0x0f,0x40,0x2b,0xe5,0x06,0xd3,0x16,
|
||||
0xd9,0x2a,0xe7,0x29,0x94,0x04,0x39,0x3d,0xf1,0x2a,0x42,0xbf,0x89,0x61,0xa6,0xda,
|
||||
0x07,0xfc,0x0d,0x20,0x7e,0x95,0xf2,0x4d,0x76,0x62,0xa8,0xae,0xaa,0xae,0xa9,0x76,
|
||||
0xdf,0xc4,0x0d,0x36,0xe8,0x03,0xda,0x40,0xf6,0x6b,0x6c,0xb2,0x41,0x80,0x00,0x3a,
|
||||
0x2f,0x8e,0x51,0x69,0x17,0xec,0x66,0xef,0x6c,0x23,0xa8,0x4d,0x86,0xf4,0x62,0x0f,
|
||||
0xbf,0x5a,0x0a,0x7f,0xef,0x50,0x0b,0xc1,0xc2,0x6f,0x99,0x83,0xea,0x5c,0x3e,0x7f,
|
||||
0xaa,0xb8,0xc3,0x77,0x8f,0xf7,0xda,0x70,0x7f,0xfc,0xea,0xc4,0x90,0x78,0x5a,0x7f,
|
||||
0x3a,0xae,0x9f,0x09,0x3b,0x7f,0xd8,0x59,0x26,0xbc,0x59,0xf8,0x29,0x4c,0x19,0xf6,
|
||||
0xe6,0x52,0x93,0xed,0xd2,0xb9,0xc8,0x3f,0xf4,0x8a,0xc9,0xe0,0xce,0xd5,0x96,0x71,
|
||||
0x68,0xcf,0x87,0x60,0x47,0xe7,0x20,0xfe,0xe1,0x51,0xdf,0x3b,0x4f,0xaf,0xec,0xb1,
|
||||
0x9f,0x19,0x38,0x41,0x37,0xad,0x2c,0x96,0x13,0xf3,0x2e,0x3d,0xc5,0xa2,0xaf,0xa8,
|
||||
0x0a,0x8e,0x40,0xff,0x00,0xd4,0x7f,0xbe,0xa6,0x16,0xc5,0xb3,0x71,0x9f,0x6d,0x3f,
|
||||
0x4e,0x67,0x97,0x3a,0xde,0x89,0x6e,0x16,0xb7,0x41,0x57,0x2a,0x4a,0xa3,0x2d,0x4c,
|
||||
0x00,0x7f,0x12,0x96,0xd2,0xaf,0xc9,0x42,0xb9,0xbb,0x92,0xda,0x46,0x1b,0xba,0x6f,
|
||||
0xf2,0x6c,0x65,0xd3,0x6f,0x31,0x13,0x62,0x5b,0xea,0x8e,0x9b,0x43,0xed,0x35,0xe6,
|
||||
0xf9,0xbe,0x5f,0x50,0x70,0xad,0xa5,0x92,0x3e,0xe9,0x3c,0x74,0xf1,0xea,0x7f,0x0e,
|
||||
0x32,0x7d,0x09,0xd0,0x6c,0x63,0x6e,0x98,0x4b,0x98,0xae,0x25,0xf1,0xdf,0x65,0xae,
|
||||
0x5a,0xe6,0xab,0xed,0x09,0x1e,0x73,0x9e,0x62,0xd2,0x84,0xab,0x83,0xc0,0x00,0x70,
|
||||
0x84,0xf6,0x03,0xd7,0x93,0xef,0x52,0xd7,0xe3,0x74,0x15,0x79,0x56,0x93,0x0b,0xdf,
|
||||
0xb7,0x89,0xc4,0xf1,0xb5,0x89,0x7e,0xd7,0xbf,0x42,0x0f,0xb2,0xa0,0x61,0x12,0x17,
|
||||
0x78,0x15,0x5f,0x71,0x10,0x9d,0xac,0x78,0xa8,0x2d,0xa4,0xbc,0xe4,0x3c,0x7b,0x30,
|
||||
0x94,0x47,0x71,0xc2,0x56,0xdd,0xc3,0xe6,0x09,0x3f,0x44,0x26,0x60,0x00,0x7d,0x03,
|
||||
0x60,0x9f,0x43,0x56,0x91,0x55,0xf1,0xe2,0xdf,0xa6,0x12,0x1e,0xc5,0xb0,0xad,0x4f,
|
||||
0xb5,0xb3,0xd1,0x36,0xc5,0x2f,0xec,0xe9,0x92,0x5a,0x4f,0xde,0x25,0xa7,0x0f,0x5b,
|
||||
0x0b,0x51,0xf6,0x4a,0x1d,0x4a,0x80,0xfe,0x67,0xc7,0xd6,0xa6,0xb6,0x8e,0x6a,0x24,
|
||||
0x6d,0x5a,0xd2,0xac,0x4f,0x31,0x8a,0x12,0x86,0xef,0x56,0xd6,0x65,0xad,0xa4,0x9e,
|
||||
0x43,0x4e,0x29,0x03,0xcc,0x6f,0x9f,0x7e,0x95,0xf5,0x27,0xfb,0x35,0x26,0x66,0x77,
|
||||
0xda,0x78,0x56,0x1d,0x8c,0x0d,0xdd,0xa4,0xc4,0xff,0x00,0xee,0x8f,0x82,0x7c,0xdc,
|
||||
0x0d,0xfd,0x15,0x19,0xdd,0x73,0x9b,0xee,0xb3,0x1a,0x54,0x54,0xcb,0x77,0x90,0x8d,
|
||||
0x00,0xdc,0x4c,0x9d,0x39,0xd5,0x3e,0x96,0xb1,0xbb,0xba,0x53,0x70,0xb0,0x65,0x6d,
|
||||
0x36,0x10,0x96,0x59,0x75,0x44,0x79,0x12,0xd0,0x3b,0x00,0x87,0x12,0xe2,0x03,0xa9,
|
||||
0xfd,0xd0,0xd9,0x5a,0x7b,0xa9,0x62,0x54,0x30,0xfb,0x52,0x98,0x6d,0xf6,0x1c,0x43,
|
||||
0xcc,0xba,0x90,0xb6,0xdc,0x6d,0x41,0x49,0x5a,0x48,0xe4,0x10,0x47,0x62,0x08,0xef,
|
||||
0xcd,0x69,0x15,0xb8,0x65,0x55,0x03,0x63,0x92,0x66,0xf7,0x24,0x1a,0x9a,0xe1,0xc3,
|
||||
0x87,0x91,0xea,0x3c,0x41,0xdc,0x78,0x85,0x28,0x70,0x3c,0x2a,0x85,0xf1,0x52,0xd0,
|
||||
0x71,0xa7,0xda,0xc9,0x13,0x3b,0xb6,0x44,0x2d,0x59,0x72,0xe6,0xca,0xa4,0x29,0xb1,
|
||||
0xf2,0x37,0x70,0x6c,0x00,0xef,0xa0,0xf9,0x7c,0xc4,0x14,0x2f,0xbf,0x75,0x2b,0xcd,
|
||||
0x3e,0xc7,0x8b,0x3f,0xd8,0x0e,0xbf,0x2f,0x71,0x3b,0x63,0xc6,0x6f,0xb3,0x9e,0x4b,
|
||||
0xd9,0x0d,0xb0,0x1b,0x35,0xdc,0x85,0x12,0xa5,0x49,0x60,0x24,0x07,0x15,0xcf,0xef,
|
||||
0x38,0xd9,0x69,0xc3,0xed,0xcb,0x84,0x0f,0x4a,0xc2,0x37,0xaf,0xa2,0x23,0x5e,0x76,
|
||||
0xef,0x93,0x58,0xe3,0xc4,0x32,0xef,0xb0,0x9b,0xfb,0x56,0xd0,0x94,0x0e,0x57,0xf1,
|
||||
0x4c,0x82,0x42,0x12,0x3d,0xcb,0x88,0x2e,0x37,0xc1,0xed,0xf7,0x9c,0xfa,0x80,0x6a,
|
||||
0x0f,0x78,0x36,0xeb,0x59,0xc2,0xf5,0xe2,0xf1,0xa7,0xd2,0xd6,0x7e,0xcf,0xcc,0x61,
|
||||
0x15,0xc7,0x1c,0xfe,0xcc,0xc8,0xc9,0x5b,0x89,0xf7,0xec,0x14,0xd1,0x7f,0x9f,0x7e,
|
||||
0x52,0x8a,0xfa,0xcb,0xe1,0xd6,0x35,0xf6,0xb6,0x0c,0xd8,0x64,0x37,0x92,0x1e,0xe1,
|
||||
0xf4,0xfb,0xa7,0xe9,0xb7,0xab,0x4a,0xc7,0x4e,0xdd,0x2e,0xbf,0x55,0x74,0x94,0xa5,
|
||||
0x2b,0xa9,0x2b,0x74,0xae,0x8f,0x3a,0xcb,0xa1,0xe0,0x18,0x46,0x43,0x94,0x5c,0x39,
|
||||
0xf8,0x0b,0x25,0xba,0x45,0xca,0x47,0x07,0x8f,0xbb,0x65,0xb5,0x38,0xae,0xff,0x00,
|
||||
0x92,0x4d,0x77,0x95,0x0e,0x3c,0x58,0xf5,0x15,0x78,0x1e,0xce,0xaf,0x90,0x98,0x7d,
|
||||
0x51,0xe5,0x64,0xb7,0x08,0xb6,0x54,0x29,0xb3,0xc2,0xba,0x4a,0x8b,0xee,0x8f,0xc9,
|
||||
0x4d,0xb0,0xb4,0x9f,0xc1,0x44,0x7b,0xd1,0x15,0x1c,0x66,0x99,0x6d,0xcf,0x50,0xb3,
|
||||
0x2b,0xe6,0x4d,0x77,0x70,0x3f,0x77,0xbd,0x4e,0x7a,0xe1,0x29,0x68,0x4f,0x01,0x4e,
|
||||
0xba,0xb2,0xb5,0x70,0x3d,0x87,0x2a,0x3c,0x0f,0x61,0x57,0xdb,0xb5,0xed,0x23,0x6f,
|
||||
0x43,0x74,0x1b,0x0f,0xc4,0x02,0x14,0x99,0x91,0x21,0x25,0xe9,0xe5,0x5e,0xa6,0x5b,
|
||||
0xa4,0xb8,0xff,0x00,0xe8,0x16,0xb5,0x24,0x7f,0x2a,0x52,0x2a,0x9f,0x76,0x11,0xa4,
|
||||
0xeb,0xd5,0xcd,0xd0,0xe2,0x10,0xdc,0x60,0x3d,0x6c,0xb3,0xbd,0xf6,0xe4,0xfe,0xa0,
|
||||
0x0a,0x43,0x51,0xc8,0x52,0x02,0x81,0xf5,0x0a,0x77,0xca,0x41,0x1f,0xcf,0xf4,0xab,
|
||||
0xb1,0xc2,0xb5,0x23,0x17,0xd4,0x76,0xee,0xae,0x63,0x37,0xc8,0x77,0xb4,0xda,0xe6,
|
||||
0xb9,0x6e,0x9a,0x62,0x39,0xd7,0xe4,0x48,0x6c,0xf0,0xa4,0x2b,0xfe,0xc7,0xd0,0x8e,
|
||||
0xe0,0x91,0x5f,0x38,0xfc,0x57,0xc4,0x64,0x90,0xc3,0x87,0x44,0x09,0x6b,0x3b,0xef,
|
||||
0xb7,0x00,0x9b,0xb5,0x97,0xe9,0xf7,0xb9,0xe6,0xea,0xfa,0x9d,0xbc,0xb9,0x6b,0xad,
|
||||
0xe8,0xe5,0x4f,0xe1,0x9b,0x56,0xd4,0xcb,0x9c,0x64,0xa8,0xbf,0xf6,0x42,0xe2,0x24,
|
||||
0xa3,0xd5,0x3e,0x7a,0x92,0xc1,0x57,0xe8,0x1d,0x27,0xf4,0xaa,0x3a,0xd2,0xcd,0x2d,
|
||||
0xc8,0xf5,0x97,0x39,0xb6,0x62,0x78,0xad,0xbd,0x77,0x0b,0xbc,0xf7,0x3a,0x52,0x91,
|
||||
0xd9,0x0d,0x23,0xf7,0x9d,0x71,0x5f,0xba,0x84,0x8e,0xe5,0x47,0xfe,0x7c,0x0a,0xf4,
|
||||
0x3d,0x91,0x63,0xd6,0xdc,0xb6,0xc3,0x70,0xb2,0xde,0x61,0x33,0x72,0xb5,0x4f,0x61,
|
||||
0x71,0xa5,0x44,0x90,0x9e,0xa4,0x3a,0xda,0x87,0x0a,0x49,0x1f,0x88,0x35,0x87,0x69,
|
||||
0x1e,0xdf,0xf4,0xf3,0x42,0x20,0x48,0x89,0x82,0x62,0xd0,0xf1,0xf4,0xc9,0x3c,0xbe,
|
||||
0xf3,0x65,0x6f,0x48,0x77,0xbf,0x20,0x2d,0xe7,0x54,0xa7,0x14,0x90,0x7d,0x12,0x55,
|
||||
0xc0,0xf6,0x02,0xb4,0xcc,0xab,0x9d,0x21,0xcb,0x18,0x65,0x45,0x3b,0x21,0x2e,0x9d,
|
||||
0xee,0xbb,0x4e,0xda,0x78,0x03,0xbd,0xbd,0xf6,0x3b,0xd8,0x0d,0xef,0xc8,0x52,0xc9,
|
||||
0x17,0x68,0xe0,0x6f,0xb2,0xe3,0xed,0xdf,0x43,0x6c,0xdb,0x76,0xd2,0x7b,0x3e,0x17,
|
||||
0x67,0x21,0xff,0x00,0x86,0x05,0xe9,0xb3,0xbc,0xb0,0x85,0xcd,0x94,0xbe,0x3c,0xd7,
|
||||
0x94,0x07,0xd7,0x80,0x90,0x09,0x24,0x21,0x28,0x4f,0x27,0xa7,0x9a,0xd3,0xd9,0x1c,
|
||||
0xe6,0xb7,0x3d,0xba,0xcb,0x76,0x2b,0x19,0x49,0x93,0x80,0xe9,0x43,0xe8,0xbb,0xdd,
|
||||
0x9d,0x4a,0x7a,0x9b,0x99,0x7c,0x21,0x49,0x8f,0x1f,0x9f,0x4e,0x19,0x1d,0x6a,0x3c,
|
||||
0x73,0xf3,0x05,0xa4,0x8f,0x43,0x5c,0x5d,0xf8,0x6f,0x46,0x06,0xdd,0xf0,0xf9,0x38,
|
||||
0xde,0x39,0x31,0x99,0x3a,0x91,0x74,0x67,0xa2,0x3b,0x48,0x3d,0x5f,0x66,0x34,0xa1,
|
||||
0xc1,0x92,0xe0,0xf6,0x57,0x1f,0xd5,0xa4,0xfa,0x9e,0x14,0x41,0x48,0xe0,0xff,0x00,
|
||||
0x7e,0x18,0x62,0xd0,0xf6,0xd4,0xad,0x93,0x60,0xbc,0x64,0x5e,0x66,0xdd,0x67,0xbf,
|
||||
0x7c,0x79,0x6b,0x2b,0x71,0x73,0x0b,0xc4,0x02,0xb2,0x7b,0xf2,0x58,0x11,0xcf,0xeb,
|
||||
0xcf,0xa9,0x35,0x8e,0x8e,0x92,0xba,0x9b,0x0d,0x9b,0x33,0x56,0x02,0x5f,0x2b,0xb4,
|
||||
0x30,0x9e,0x6e,0xf0,0x75,0x49,0xe9,0x60,0x5a,0xdf,0xc4,0x6e,0x38,0x0b,0xd5,0xc1,
|
||||
0x70,0x60,0xf0,0x5b,0x97,0x71,0xfa,0xdd,0x6e,0xdb,0xd6,0x8f,0x5f,0xf3,0x59,0xe9,
|
||||
0x4b,0xef,0x44,0x6b,0xca,0x83,0x11,0x47,0xff,0x00,0x9a,0x96,0xbf,0x95,0x96,0xfd,
|
||||
0x47,0x6e,0xae,0xea,0x23,0xb8,0x4a,0x54,0x78,0x3c,0x71,0x54,0x07,0x93,0x64,0x97,
|
||||
0x3c,0xc7,0x21,0xb9,0x5f,0x6f,0x53,0x1c,0xb8,0x5d,0xae,0x52,0x1c,0x97,0x2e,0x53,
|
||||
0xbc,0x75,0x3a,0xea,0xd4,0x54,0xa5,0x1e,0x3b,0x0e,0x49,0x3d,0x80,0x00,0x7b,0x54,
|
||||
0xbe,0xf1,0x39,0xdc,0x90,0xd5,0xad,0x59,0x46,0x11,0x64,0x96,0x1d,0xc5,0xf1,0x15,
|
||||
0xad,0x97,0x14,0xd2,0xc9,0x44,0xab,0x81,0xec,0xf2,0xfe,0x84,0x37,0xc7,0x96,0x9e,
|
||||
0xdd,0x88,0x70,0x82,0x42,0xea,0x31,0xe8,0xb6,0x9b,0x48,0xd6,0x0d,0x58,0xc5,0x30,
|
||||
0xc8,0xca,0x71,0xb5,0x5e,0x6e,0x0d,0x45,0x71,0xd6,0x93,0xd4,0xa6,0x9a,0x2a,0xe5,
|
||||
0xd7,0x00,0xfe,0x44,0x05,0xab,0xfb,0x35,0xdd,0x72,0x0e,0x06,0xcc,0xbf,0x83,0xbb,
|
||||
0x10,0xab,0x1a,0x64,0x90,0x6b,0x71,0x3f,0x75,0x80,0x5c,0x0f,0xa7,0x78,0xfa,0xd8,
|
||||
0xf0,0xac,0xe6,0x7e,0xb7,0x69,0x0a,0xe6,0xfc,0x3e,0x30,0x09,0x5a,0x7b,0xb4,0xcc,
|
||||
0x22,0x34,0xe6,0xc3,0x53,0x6e,0x6d,0x3b,0x77,0x71,0x00,0xf3,0xc2,0x24,0x38,0xa7,
|
||||
0x1a,0xfd,0x4b,0x45,0xa2,0x47,0xb1,0x24,0x7b,0x55,0x7c,0x78,0xa9,0xea,0x40,0xcc,
|
||||
0xb7,0x30,0x6c,0x0c,0x15,0x7c,0x2e,0x2d,0x6d,0x62,0x09,0xef,0xca,0x54,0xfb,0x83,
|
||||
0xcf,0x71,0x43,0xf4,0x75,0xb4,0x1f,0xc5,0xb3,0x57,0x11,0x02,0x0c,0x3b,0x15,0xae,
|
||||
0x3c,0x38,0xad,0x22,0x24,0x08,0x6c,0xa5,0x96,0x9b,0x4f,0x64,0xb4,0xda,0x13,0xc2,
|
||||
0x40,0xfc,0x00,0x03,0xfb,0xab,0xcf,0x1e,0xb5,0x67,0xcb,0xd5,0x2d,0x5d,0xcc,0xb2,
|
||||
0xd5,0x85,0xa5,0x37,0x9b,0xb4,0x99,0x8d,0x21,0x67,0x92,0xdb,0x4a,0x70,0x96,0xd1,
|
||||
0xfd,0x94,0x74,0xa7,0xf4,0xad,0x13,0xe1,0xd3,0x1d,0x8c,0x66,0x1a,0xcc,0x62,0x41,
|
||||
0xc5,0xcf,0xa1,0x91,0xdb,0x7f,0xa8,0x70,0x53,0x4f,0xdd,0x60,0x6a,0xde,0x1e,0x1a,
|
||||
0x98,0x2b,0xd9,0xa6,0xed,0xb1,0x99,0x01,0xb0,0xe4,0x4b,0x0c,0x79,0x37,0x79,0x3c,
|
||||
0xfe,0xea,0x52,0xd9,0x6d,0xb2,0x3f,0xfc,0xaf,0x35,0x57,0x3f,0x98,0xe4,0x28,0xc4,
|
||||
0x71,0x1b,0xe5,0xf5,0xc0,0x0b,0x76,0xb8,0x2f,0xcd,0x50,0x3e,0x9c,0x36,0xda,0x96,
|
||||
0x7f,0xe9,0xaa,0xe1,0xf0,0x73,0xc2,0x1c,0x5d,0xc3,0x51,0xf3,0x07,0x59,0x29,0x69,
|
||||
0xb6,0xa2,0xda,0x63,0x3c,0x47,0x65,0x15,0x15,0x3a,0xf2,0x47,0xe5,0xd2,0xc1,0xfe,
|
||||
0xd0,0xa9,0xa1,0xbc,0xbc,0x88,0xe2,0xdb,0x56,0xd5,0x19,0xc9,0x07,0xa9,0x76,0x37,
|
||||
0xe1,0x82,0x3d,0x8b,0xe3,0xc8,0xe7,0xf4,0xf3,0x79,0xac,0x2e,0x7d,0x97,0xed,0x5c,
|
||||
0xd6,0xca,0x21,0xb8,0x6f,0x67,0x1f,0xe6,0x37,0x3f,0xf6,0xb2,0xf7,0x08,0xd3,0x1d,
|
||||
0xd5,0x07,0x49,0x92,0xec,0xc9,0x2e,0xc8,0x7d,0xc5,0x3a,0xfb,0xab,0x2e,0x38,0xe2,
|
||||
0xcf,0x2a,0x52,0x89,0xe4,0x92,0x7e,0xa4,0xd5,0xde,0xec,0x0b,0x6d,0x23,0x6f,0x3a,
|
||||
0x2b,0x19,0x77,0x48,0xa1,0xac,0xcb,0x23,0x08,0xb8,0x5d,0x89,0xfd,0xb6,0x07,0x1f,
|
||||
0x73,0x1b,0xd0,0x71,0xe5,0xa5,0x47,0xa8,0x7f,0x1a,0xdc,0xee,0x40,0x15,0x5f,0x5e,
|
||||
0x1a,0xdb,0x72,0xff,0x00,0x3c,0xda,0xd4,0x8c,0x96,0xed,0x18,0xb9,0x8b,0x62,0x0a,
|
||||
0x6e,0x6b,0xc1,0x68,0xe5,0x12,0x26,0x12,0x4c,0x76,0x7b,0xfa,0x80,0x52,0x5c,0x57,
|
||||
0xaf,0x66,0xc0,0x3f,0xb6,0x0d,0x59,0x4e,0xf6,0xb5,0xb0,0xe8,0x46,0xdd,0x32,0x6b,
|
||||
0xf4,0x57,0x92,0xcd,0xee,0x6a,0x05,0xaa,0xd4,0x54,0xae,0x0f,0xc4,0xbc,0x08,0x0b,
|
||||
0x4f,0xe2,0x84,0x07,0x1c,0x03,0xfd,0x9d,0x6d,0xff,0x00,0x11,0x31,0x59,0x71,0x1a,
|
||||
0xb8,0x32,0xc5,0x01,0xef,0x38,0xb7,0x5f,0xa9,0xf9,0x5a,0x7c,0x87,0xcc,0x7d,0xba,
|
||||
0x28,0xa0,0x68,0x68,0x32,0x39,0x64,0x5a,0x0d,0xaf,0x96,0x8d,0x79,0x19,0xbb,0xb6,
|
||||
0x72,0xd2,0xa2,0xe3,0xb9,0x0b,0xf6,0x56,0xde,0x69,0xc0,0xb4,0xc9,0x6d,0xb4,0x36,
|
||||
0x52,0xfa,0x48,0xed,0xd2,0xb2,0xa5,0xf0,0x47,0xa8,0x4f,0x35,0xa3,0xfc,0x4d,0xb5,
|
||||
0xd2,0x4e,0x95,0xe8,0xd5,0xb3,0x1a,0xb5,0x3c,0xa8,0xf7,0x8c,0xbe,0x6f,0xc2,0x97,
|
||||
0x50,0xa2,0x95,0x37,0x0d,0xa2,0x85,0xc8,0x29,0x23,0xdd,0x45,0x4d,0x36,0x47,0xa1,
|
||||
0x4b,0x8b,0xfc,0x2a,0x2c,0x78,0x47,0x6a,0x91,0xc7,0x35,0x93,0x21,0xc1,0xe4,0xc8,
|
||||
0x42,0x22,0x64,0xb6,0xff,0x00,0x88,0x8e,0xda,0xcf,0x75,0x4a,0x8d,0xca,0x80,0x4f,
|
||||
0xe6,0xd2,0xdf,0x27,0xeb,0xe5,0x8f,0xa5,0x61,0xbe,0x25,0x5a,0x94,0x9d,0x42,0xdd,
|
||||
0xa4,0x8b,0x4c,0x69,0x3f,0x11,0x6f,0xc6,0x58,0x8d,0x67,0x40,0x42,0xf9,0x6c,0x3d,
|
||||
0xcf,0x9a,0xff,0x00,0x03,0xd9,0x41,0x6e,0x96,0xd5,0xef,0xcb,0x5c,0x7b,0x0a,0xc2,
|
||||
0xe1,0xf9,0x3a,0x3a,0x4c,0xe4,0x28,0xf4,0xde,0x18,0x9a,0x24,0x17,0xf1,0x00,0x00,
|
||||
0x3f,0xdf,0xeb,0x62,0xbd,0xba,0x4b,0xc5,0x7f,0x15,0x73,0x2c,0x38,0x5d,0x65,0xb5,
|
||||
0x9f,0x55,0x24,0x2b,0xfe,0x15,0x01,0x7c,0x3a,0xd2,0x9b,0x7e,0xe5,0x37,0x3b,0x01,
|
||||
0x09,0xe9,0x42,0x6f,0x9f,0x28,0xe3,0xd0,0x26,0x64,0xd0,0x3f,0xea,0xa9,0xf4,0xca,
|
||||
0x3c,0xb6,0x50,0x8f,0xe1,0x48,0x15,0x5f,0xdb,0x0d,0x7d,0x2c,0x6f,0x3f,0x72,0xb0,
|
||||
0xca,0x90,0x16,0xe5,0xca,0x4b,0xa1,0x1c,0xfc,0xc4,0x26,0x7b,0xc0,0x90,0x3e,0x83,
|
||||
0xac,0x73,0xf9,0x8a,0xd0,0x70,0x21,0xab,0x07,0xc5,0x9a,0x3f,0xa2,0x33,0xf4,0x90,
|
||||
0x29,0x5f,0xf3,0x35,0x6d,0x0f,0x13,0xe9,0xb7,0xcb,0x66,0xd6,0x65,0xcd,0xb1,0xdd,
|
||||
0x66,0xda,0x94,0xc5,0xda,0x21,0x96,0xb8,0x4f,0xa9,0x95,0x3a,0xc2,0xba,0xd0,0x5b,
|
||||
0x51,0x49,0x04,0xa4,0xad,0x6d,0x92,0x3d,0x39,0x48,0xa8,0xdb,0xe1,0x3d,0xaf,0x17,
|
||||
0xf9,0x7a,0x8d,0x7e,0xd3,0xcb,0xe5,0xf2,0x5d,0xca,0xd7,0x32,0xda,0x67,0x5b,0x99,
|
||||
0x9f,0x25,0x6e,0xf9,0x0f,0x32,0xb1,0xd6,0x86,0x42,0x89,0xe9,0x0a,0x43,0x8a,0x52,
|
||||
0x80,0xff,0x00,0x54,0x0f,0xb1,0xa9,0x99,0xbe,0xfc,0x49,0xcc,0xcf,0x69,0x1a,0x93,
|
||||
0x09,0xa1,0xcb,0xb1,0xad,0xc2,0xe4,0x0f,0x1e,0x82,0x33,0xa8,0x90,0xbf,0xfd,0x0d,
|
||||
0x2b,0xfb,0xea,0x9f,0xf6,0x81,0x9b,0x2b,0x4f,0x77,0x39,0xa6,0xd7,0xa0,0xf2,0x63,
|
||||
0xb6,0x9b,0xcb,0x31,0x1e,0x75,0x67,0x84,0xa5,0x99,0x1c,0xb0,0xe1,0x27,0xd8,0x74,
|
||||
0x3a,0xaa,0xe8,0xf9,0x4a,0x8a,0x1c,0x63,0x26,0xd7,0x51,0x96,0x82,0xf6,0x97,0x11,
|
||||
0xb6,0xf7,0x0d,0x6b,0x9b,0xfa,0x82,0x3d,0x14,0x32,0x12,0xd9,0x5a,0x55,0xdf,0xeb,
|
||||
0xae,0x96,0xc4,0xd6,0xad,0x21,0xca,0xf0,0xa9,0x9c,0x25,0x37,0x78,0x2b,0x65,0x97,
|
||||
0x4f,0xff,0x00,0x49,0xf1,0xf3,0x32,0xe7,0xf6,0x5c,0x4a,0x15,0xc7,0xbf,0x1c,0x7b,
|
||||
0xd4,0x65,0xf0,0xad,0xce,0xe7,0xdc,0x74,0x5b,0x21,0xc0,0x6f,0x08,0x53,0x17,0x6c,
|
||||
0x26,0xf0,0xe4,0x53,0x15,0xd4,0xf4,0xb8,0xc3,0x2f,0x15,0x2c,0x21,0x60,0xf7,0xe4,
|
||||
0x3c,0x99,0x23,0xbf,0xd0,0x0f,0x6a,0x9a,0xde,0x95,0x0b,0xe0,0xd8,0x9b,0xd0,0x1f,
|
||||
0x11,0xdf,0x31,0x89,0x21,0x8c,0x7b,0x56,0xec,0xef,0xb9,0xf0,0xfc,0x84,0x36,0x8b,
|
||||
0x93,0x1c,0x2d,0x7c,0x8f,0x72,0xae,0x85,0x28,0x13,0xea,0xa9,0x2a,0x15,0xcc,0xf0,
|
||||
0x79,0xbf,0x8c,0xc2,0xab,0x70,0x97,0xf3,0x6e,0xd9,0x9f,0xdd,0x1f,0xcf,0x6f,0x33,
|
||||
0x1d,0xff,0x00,0x2a,0x9d,0xc2,0xce,0x0e,0xf6,0x5d,0x5f,0x8b,0x46,0x95,0x2b,0x2c,
|
||||
0xd0,0xcb,0x46,0x67,0x15,0x94,0xae,0x5e,0x29,0x70,0x01,0xf5,0x7a,0x11,0x12,0x4f,
|
||||
0x4b,0x6b,0x23,0xeb,0xc3,0xa2,0x3f,0x6f,0xa1,0x51,0xa8,0xff,0x00,0xe1,0xd7,0xbe,
|
||||
0x37,0x34,0xea,0xeb,0x03,0x4b,0xf3,0xcb,0x81,0x38,0x94,0xc7,0x03,0x36,0x8b,0x9c,
|
||||
0x85,0x73,0xf6,0x63,0xca,0x3d,0x9a,0x59,0xff,0x00,0x52,0xb5,0x1e,0x01,0x3d,0x9b,
|
||||
0x51,0xe4,0xf0,0x92,0x4a,0x6c,0x2f,0x75,0x91,0xf1,0xcb,0x86,0xdd,0xf3,0xeb,0x76,
|
||||
0x51,0x78,0x81,0x62,0xb6,0xce,0xb4,0xc8,0x8e,0xdc,0xdb,0x8b,0xa1,0xb6,0x91,0x20,
|
||||
0xa0,0x96,0x0f,0x7f,0xda,0x3e,0x60,0x41,0x09,0x1d,0xc9,0x1c,0x0e,0xf5,0xe7,0xf6,
|
||||
0xba,0xe6,0x45,0xa4,0x83,0x32,0xe5,0xa9,0xb0,0x9a,0xe6,0xdd,0xac,0x71,0xd2,0x6d,
|
||||
0xf2,0xdc,0x5c,0x16,0x9e,0xa1,0xd7,0xf6,0x36,0x3b,0x1d,0xed,0xa6,0x26,0x37,0x87,
|
||||
0x05,0xe9,0x6f,0xd2,0xa9,0x23,0x73,0x38,0xbc,0xcd,0xa0,0x6f,0x71,0x77,0x9b,0x0a,
|
||||
0x5c,0x8d,0x16,0x2d,0xd6,0x3e,0x53,0x68,0x00,0x74,0x82,0xca,0xdd,0xf3,0x14,0xd0,
|
||||
0xe3,0xd5,0xb0,0xe2,0x5e,0x67,0x8f,0x74,0xa3,0x83,0xea,0x6a,0x6c,0x78,0x67,0xee,
|
||||
0xc5,0xdd,0x5d,0xc2,0x1d,0xd3,0xdc,0x9e,0x61,0x7b,0x2d,0xc6,0xe3,0xa5,0x51,0x24,
|
||||
0xbb,0xfb,0x53,0xad,0xe3,0x84,0x82,0xa3,0xcf,0x75,0xb4,0x4a,0x50,0xa2,0x78,0xe5,
|
||||
0x2a,0x6c,0xfc,0xc7,0xac,0xd6,0x15,0xe2,0xb1,0x89,0x59,0x75,0x23,0x4c,0x2c,0x3a,
|
||||
0x85,0x8c,0xdd,0x2d,0xb7,0xa7,0xb1,0x5b,0x8a,0xad,0x37,0x45,0xdb,0x64,0x36,0xf9,
|
||||
0x65,0xa7,0xf8,0xe9,0x0e,0x29,0x0a,0x3d,0x25,0x0e,0xa1,0x29,0xe9,0x3d,0xf9,0x78,
|
||||
0xfa,0x77,0xad,0x77,0x27,0x36,0xaf,0x2a,0x66,0x87,0xe1,0x75,0x63,0xba,0xfe,0xe1,
|
||||
0x3e,0x06,0xfb,0xb1,0xde,0xfc,0x0f,0xee,0x23,0x90,0xbd,0xcb,0x69,0x23,0xd4,0x15,
|
||||
0xa8,0x63,0x99,0x04,0x0c,0xb3,0x1e,0xb5,0xdf,0x2d,0x52,0x51,0x32,0xd7,0x73,0x8a,
|
||||
0xd4,0xd8,0x92,0x5b,0x3c,0xa5,0xd6,0x5c,0x40,0x5a,0x16,0x3f,0x02,0x95,0x03,0xfa,
|
||||
0xd7,0x63,0x51,0x47,0xc3,0x03,0x53,0x9b,0xd4,0xad,0x9c,0x61,0xc8,0x2f,0x17,0xa7,
|
||||
0xe3,0xaa,0x7a,0xc1,0x2c,0x1f,0xdc,0x2c,0xab,0xa9,0x94,0x8f,0xc3,0xc8,0x71,0x8f,
|
||||
0xf8,0xfd,0x2a,0x57,0x57,0xd4,0xcb,0x1e,0x95,0x53,0xde,0x38,0x39,0x8a,0x9c,0xbc,
|
||||
0xe9,0x5e,0x28,0xdb,0xe4,0x25,0x98,0xf3,0x6e,0x8f,0xb0,0x0f,0x62,0x56,0xa6,0x9b,
|
||||
0x69,0x44,0x7e,0x1e,0x5b,0xa0,0x7e,0x66,0xad,0x86,0xb4,0x06,0x7f,0xb3,0x2c,0x1b,
|
||||
0x58,0x37,0x00,0xce,0xa8,0x67,0xf1,0x1b,0xca,0x15,0x6d,0xb5,0xb1,0x6a,0xb4,0xd8,
|
||||
0xa5,0x36,0x0c,0x26,0x52,0x85,0xba,0xe2,0x9d,0x79,0x07,0xb3,0xcb,0x2a,0x79,0x40,
|
||||
0x25,0x43,0xa4,0x00,0x09,0x0a,0x3c,0x74,0x91,0x52,0x06,0xdf,0x62,0xeb,0x85,0xaa,
|
||||
0x36,0x41,0x2f,0x49,0x71,0x9c,0x96,0x70,0xbe,0x40,0x5d,0xa2,0x5d,0xca,0xc7,0x67,
|
||||
0x7a,0x4a,0x92,0xca,0x96,0x92,0xb4,0xb6,0xf2,0x50,0x7c,0xb5,0x72,0x90,0x3a,0x81,
|
||||
0x04,0x7b,0x10,0x78,0x23,0xbc,0xc2,0xf4,0xfb,0x72,0xdb,0x5f,0xbe,0xaf,0x28,0xb1,
|
||||
0x61,0x59,0xc6,0x26,0xf3,0x6d,0x7f,0x48,0x93,0xf6,0x2b,0xeb,0x8a,0xe3,0x5e,0xa5,
|
||||
0x2f,0x02,0x82,0xda,0xd2,0x3d,0x78,0x57,0x3c,0x11,0xcf,0x62,0x39,0xaf,0x43,0x90,
|
||||
0xe1,0xc7,0xb7,0x44,0x62,0x24,0x46,0x1b,0x8b,0x15,0x84,0x25,0xa6,0x98,0x65,0x01,
|
||||
0x08,0x6d,0x09,0x1c,0x25,0x29,0x48,0xec,0x00,0x00,0x00,0x07,0xa5,0x7d,0xaa,0xce,
|
||||
0x4a,0x2a,0x69,0x44,0x82,0x48,0xda,0x7b,0x4f,0x9a,0xe0,0x1d,0x56,0xd8,0x5f,0xad,
|
||||
0xbc,0xd5,0x6e,0x47,0x8a,0xa5,0xcb,0x1f,0x8c,0x46,0x69,0x1a,0xdc,0x86,0xee,0xf8,
|
||||
0x05,0x8e,0xe1,0x38,0x0e,0x0c,0x88,0x92,0xde,0x8c,0x85,0x1f,0xaf,0x42,0xba,0xff,
|
||||
0x00,0xea,0xac,0x1f,0x51,0xfc,0x56,0x35,0x8b,0x32,0x80,0xe4,0x2b,0x1b,0x16,0x5c,
|
||||
0x2d,0x95,0xff,0x00,0xf7,0x36,0xd8,0xea,0x7a,0x57,0x1e,0xe3,0xad,0xe5,0x29,0x23,
|
||||
0xf3,0x4a,0x01,0x1f,0x5a,0xb0,0xfd,0xf0,0x78,0x75,0x62,0x3b,0x8d,0xc7,0x6e,0x99,
|
||||
0x1e,0x29,0x6d,0x8b,0x8e,0xea,0x7b,0x48,0x5c,0x86,0x65,0xc5,0x4a,0x59,0x66,0xea,
|
||||
0xe7,0xed,0x16,0xa5,0x0e,0xc0,0xa9,0x5d,0xc0,0x77,0xb2,0x81,0x20,0xa8,0xa9,0x23,
|
||||
0x8a,0xa2,0xdb,0xad,0xa6,0x6d,0x8e,0xeb,0x32,0xd9,0x70,0x8a,0xec,0x3b,0x84,0x37,
|
||||
0x97,0x1e,0x44,0x57,0x90,0x52,0xe3,0x4e,0xa1,0x45,0x2a,0x42,0x81,0xee,0x08,0x20,
|
||||
0x82,0x3f,0x0a,0xd5,0x62,0xc9,0x59,0x7a,0x09,0x7b,0x56,0x51,0xb6,0xfe,0x77,0x23,
|
||||
0xe8,0x49,0x1f,0xa2,0x93,0xb5,0x79,0xf1,0x4b,0xb5,0xda,0x75,0xfa,0xe7,0x2a,0xe3,
|
||||
0x73,0x9b,0x22,0xe3,0x70,0x94,0xe2,0x9e,0x91,0x2e,0x5b,0xaa,0x75,0xd7,0x96,0xa3,
|
||||
0xca,0x94,0xb5,0xa8,0x92,0xa5,0x13,0xdc,0x92,0x79,0xac,0xff,0x00,0x49,0xb7,0x1d,
|
||||
0xa8,0xfa,0x1b,0x6f,0xbc,0xc1,0xc1,0xf2,0x99,0x56,0x18,0x97,0x74,0x74,0x4b,0x65,
|
||||
0xa4,0x36,0xe2,0x49,0xe0,0xa4,0x2d,0x1d,0x69,0x57,0x96,0xe0,0x07,0x8e,0xb4,0x70,
|
||||
0xaf,0x4e,0xfd,0x85,0x62,0xb2,0xf4,0xfb,0x29,0xb7,0xda,0x45,0xd6,0x56,0x35,0x78,
|
||||
0x8d,0x6c,0x23,0x91,0x35,0xe8,0x0e,0xa1,0x92,0x3e,0xbd,0x65,0x3d,0x3e,0xe3,0xde,
|
||||
0xba,0x0a,0xdb,0x27,0xa5,0xa7,0xa9,0x8b,0xb0,0x9e,0x30,0xe6,0x6d,0xb1,0x00,0x8d,
|
||||
0xb8,0xd8,0xed,0xb7,0x82,0x8c,0x12,0x0d,0xc2,0xfd,0x5a,0xd4,0xe2,0xd4,0xa5,0x28,
|
||||
0xa9,0x4a,0x3c,0x95,0x13,0xc9,0x26,0xac,0x0b,0xc2,0x23,0x48,0xd5,0x7b,0xd4,0x5c,
|
||||
0x9f,0x51,0x25,0xb0,0x95,0x44,0xb1,0x45,0x16,0xd8,0x2b,0x5a,0x79,0x3f,0x14,0xff,
|
||||
0x00,0x75,0xa9,0x07,0xd8,0xa5,0xa4,0x94,0x9f,0xc1,0xf1,0xf8,0xd5,0x7e,0x54,0xd4,
|
||||
0xda,0xc7,0x88,0x55,0x9b,0x6b,0xda,0x57,0x03,0x0e,0x85,0xa7,0x0f,0x5f,0x1f,0x72,
|
||||
0x5b,0xb3,0xae,0x97,0x45,0x5e,0x44,0x72,0xf3,0xcb,0x57,0x48,0xe8,0x6b,0xc8,0x5f,
|
||||
0x01,0x2d,0x21,0xa4,0xf7,0x57,0x72,0x92,0x7b,0x73,0x5a,0x96,0x72,0xa7,0xc4,0x6b,
|
||||
0x30,0x69,0x69,0x30,0xc8,0xf5,0xc9,0x25,0x9b,0xc8,0x16,0x6f,0x2e,0xdd,0xc4,0x0d,
|
||||
0xc0,0xb7,0x5d,0xd4,0xb1,0x16,0x87,0x5d,0xc5,0x59,0xb6,0xe8,0x73,0xbf,0xf3,0x69,
|
||||
0xb7,0x7d,0x43,0xc8,0x92,0xe9,0x66,0x44,0x5b,0x34,0x84,0x46,0x70,0x7e,0xec,0x87,
|
||||
0x13,0xe5,0x32,0x7f,0xf3,0x16,0x8a,0xf3,0xeb,0x56,0x8b,0xbc,0x9d,0xe1,0xe1,0xba,
|
||||
0xe7,0xb2,0x09,0x53,0x71,0x39,0x0b,0x44,0x9b,0xbd,0xea,0x1d,0xa6,0x7d,0xaa,0x59,
|
||||
0x4a,0x65,0xc0,0x50,0x2b,0x93,0xca,0xd2,0x09,0xe5,0x2a,0xf8,0x6f,0x95,0x60,0x90,
|
||||
0x41,0xf6,0x21,0x40,0x55,0xd5,0x6a,0x9f,0x0c,0xb0,0xa9,0xb0,0xdc,0x3e,0xa0,0xd5,
|
||||
0x30,0xb2,0x43,0x21,0x04,0x1e,0x6c,0xd0,0x2d,0xfa,0x93,0xff,0x00,0x8a,0x49,0xdc,
|
||||
0x1c,0x45,0x95,0x9a,0xed,0x97,0x5d,0xec,0x1b,0x32,0xd8,0x8d,0xa7,0x26,0xbb,0x32,
|
||||
0x2e,0x19,0x06,0x5b,0x74,0x9d,0x36,0xd3,0x65,0x4a,0xfa,0x1c,0x94,0xb4,0x28,0x47,
|
||||
0xeb,0x51,0xe0,0xf4,0xb6,0x90,0xc2,0x49,0x57,0x1e,0x8a,0x48,0x1c,0x95,0x0a,0x84,
|
||||
0xda,0xcf,0xba,0xdd,0x50,0xd7,0x99,0xd3,0x17,0x94,0xe5,0x73,0x55,0x6c,0x90,0xa2,
|
||||
0x45,0x8e,0x0b,0xaa,0x8f,0x6f,0x6d,0x3d,0x5c,0xa5,0x21,0x94,0x9e,0x15,0xd3,0xdb,
|
||||
0x85,0x2f,0xa9,0x5d,0x87,0x2a,0x27,0xbd,0x61,0x19,0xd6,0x7f,0x72,0xcf,0xa4,0x59,
|
||||
0xd5,0x3d,0x49,0x44,0x6b,0x3d,0xae,0x35,0x9e,0x04,0x66,0xc7,0x08,0x62,0x3b,0x28,
|
||||
0xe0,0x01,0xf8,0xa9,0x45,0x6e,0x28,0xfb,0xad,0xc5,0x1e,0xdc,0xf0,0x31,0xaa,0xdb,
|
||||
0xf0,0xac,0xb5,0x4b,0x47,0x53,0x36,0x25,0x3b,0x03,0xaa,0x25,0x71,0x71,0x27,0x7d,
|
||||
0x20,0x9d,0x9a,0xde,0x96,0x16,0x04,0x8d,0xc9,0xf2,0xb0,0x11,0x3a,0x42,0x40,0x68,
|
||||
0xe1,0x5d,0xd7,0x86,0xbe,0x27,0x69,0xc6,0xf6,0x8b,0x89,0x4c,0xb6,0xa5,0x2a,0x7e,
|
||||
0xf2,0xec,0xbb,0x84,0xe7,0x81,0xfe,0xb1,0xff,0x00,0x88,0x5b,0x3f,0xa7,0x4a,0x19,
|
||||
0x42,0x38,0xfe,0x42,0x7d,0xcd,0x42,0x9f,0x15,0xed,0x6b,0xff,0x00,0x2d,0x75,0x96,
|
||||
0xdd,0x81,0x41,0x70,0x2a,0xd9,0x89,0x31,0xcc,0x82,0x85,0x73,0xd7,0x35,0xf4,0xa5,
|
||||
0x6b,0xe7,0xbf,0x1f,0x23,0x61,0xb4,0x8f,0x70,0xa2,0xe0,0xae,0x9b,0x65,0x9e,0x20,
|
||||
0x49,0xdb,0x36,0x09,0x7d,0xc4,0xb2,0x1b,0x1c,0xbc,0x86,0xd4,0x56,0xb9,0xd6,0x8f,
|
||||
0x83,0x75,0x29,0x5b,0x12,0x14,0x9e,0x14,0xd2,0xfa,0x8f,0x01,0xa5,0x10,0x95,0x72,
|
||||
0x9e,0xe9,0x3d,0x67,0xa5,0x7d,0x5d,0xa2,0x36,0x4b,0x90,0xce,0xcb,0xb2,0x3b,0xad,
|
||||
0xf6,0xe8,0xf1,0x93,0x73,0xba,0x4b,0x76,0x6c,0xa7,0x8f,0xab,0x8e,0xb8,0xb2,0xb5,
|
||||
0xab,0xf5,0x52,0x89,0xad,0x2f,0x01,0xca,0x75,0x54,0xf9,0xa6,0xb3,0x16,0xae,0x17,
|
||||
0x68,0x2e,0x31,0x9e,0xba,0xef,0xbf,0xf8,0xb7,0xbb,0xbf,0x5d,0xb8,0x52,0xbe,0x40,
|
||||
0x63,0x0d,0x0b,0x97,0x81,0xe6,0xf7,0x7d,0x36,0xcc,0xac,0xd9,0x4d,0x86,0x4f,0xc2,
|
||||
0x5e,0x2d,0x32,0x91,0x2e,0x33,0xbc,0x72,0x02,0xd2,0x79,0xe1,0x43,0xdd,0x27,0xb8,
|
||||
0x23,0xdc,0x12,0x3d,0xeb,0x97,0x02,0xed,0x37,0x39,0xd4,0xf8,0xd7,0x3b,0xb4,0x83,
|
||||
0x2a,0xe3,0x78,0xbc,0x26,0x44,0xb7,0xd4,0x38,0xf3,0x1d,0x75,0xe0,0xa5,0xa8,0x81,
|
||||
0xc7,0xa9,0x51,0x3d,0xab,0x17,0xae,0xdf,0x0e,0x94,0x98,0x39,0x7d,0x8e,0x4a,0xfb,
|
||||
0xa1,0x99,0xcc,0x38,0x7f,0x20,0xe2,0x4f,0xfd,0xab,0xae,0x4b,0x13,0x3b,0xf3,0x35,
|
||||
0xa3,0x5e,0x9b,0x5f,0xc6,0xdb,0x9b,0x5f,0xa5,0xd5,0xb0,0xe8,0xbd,0x22,0x1f,0x53,
|
||||
0x5e,0x7e,0x77,0x01,0x7f,0xb8,0x59,0x77,0x35,0xa9,0x77,0x1b,0x54,0xf9,0x36,0xe9,
|
||||
0xad,0xe4,0xf7,0x22,0xdc,0xa8,0x6f,0x29,0xa7,0x10,0x7e,0x25,0xc1,0xd9,0x49,0x20,
|
||||
0x8a,0x9f,0xbb,0x85,0xf1,0x58,0x6b,0x4e,0xf5,0x42,0x6e,0x33,0x83,0x63,0x30,0x32,
|
||||
0x6b,0x65,0xa6,0x42,0xa3,0xce,0xba,0xcc,0x94,0xb4,0xa6,0x4b,0x89,0x3c,0x2d,0x11,
|
||||
0xfa,0x07,0x01,0x29,0x20,0x8f,0x30,0xf5,0x05,0x1e,0x78,0x4f,0x1c,0x15,0x56,0x46,
|
||||
0x73,0x94,0x39,0x9c,0x66,0xd9,0x06,0x46,0xf3,0x3f,0x0e,0xf5,0xe2,0xe1,0x22,0xe0,
|
||||
0xb6,0x82,0xba,0xba,0x14,0xeb,0x8a,0x70,0xa7,0x9e,0x07,0x3c,0x15,0x71,0xcf,0x02,
|
||||
0xb8,0x87,0xc3,0x6c,0xb9,0x88,0x61,0x6e,0x96,0xaa,0xba,0x2d,0x2c,0x95,0x82,0xd7,
|
||||
0x22,0xfc,0xdf,0x71,0xc8,0xdb,0xaa,0xbb,0x9d,0xed,0x76,0xc0,0xa9,0x3b,0xa4,0xfe,
|
||||
0x21,0xf9,0x95,0x93,0x00,0xcb,0x70,0x5d,0x45,0x91,0x3b,0x39,0xc7,0xef,0x56,0x69,
|
||||
0x96,0xf6,0x26,0xc9,0x74,0x39,0x3e,0x1b,0x8e,0xb0,0xe2,0x12,0x4b,0x8b,0x3c,0xba,
|
||||
0x82,0xa5,0x00,0xa0,0xb2,0x54,0x07,0x74,0x9e,0xdd,0x2a,0x89,0x08,0x5a,0x9a,0x5a,
|
||||
0x56,0x85,0x14,0x2d,0x27,0x90,0xa4,0x9e,0x08,0x3f,0x51,0x5f,0x94,0xae,0xcb,0x47,
|
||||
0x85,0x51,0xe1,0xf2,0x4b,0x25,0x24,0x61,0x86,0x42,0x0b,0x80,0xd8,0x12,0x3c,0x6d,
|
||||
0xc0,0x3d,0x6d,0xcf,0xaa,0xb5,0x2e,0x2e,0xe5,0x5e,0x86,0xb0,0x6e,0xc6,0x36,0x93,
|
||||
0xed,0x32,0xcd,0xaa,0xc5,0x96,0x27,0xdd,0x6f,0x76,0xd8,0x2a,0xb6,0x43,0x75,0x45,
|
||||
0x2d,0xbf,0x32,0x4b,0x21,0xc0,0x15,0xc7,0x7e,0x94,0x0f,0x31,0x6a,0x03,0x82,0x43,
|
||||
0x64,0x72,0x09,0xe6,0xaa,0x06,0xe1,0xb9,0x1c,0xe7,0x28,0xd6,0x7c,0x7f,0x52,0xb2,
|
||||
0x9b,0xd4,0x9c,0x86,0xf9,0x67,0x9f,0x1e,0x6b,0x01,0xf5,0xf4,0x36,0xda,0x5a,0x74,
|
||||
0x38,0x1a,0x6d,0x09,0x01,0x2d,0xa0,0x90,0x7b,0x24,0x01,0xca,0x89,0xf5,0x24,0xd6,
|
||||
0x57,0xaa,0x1a,0xd2,0xc6,0x67,0xb4,0xcd,0x1c,0xc2,0x13,0x70,0x2f,0xdc,0xb1,0xcb,
|
||||
0x85,0xd9,0x13,0x22,0xa9,0x44,0xa9,0x2d,0x95,0xb6,0xb8,0xcb,0x23,0xe9,0xd2,0xf3,
|
||||
0x88,0x4f,0xfe,0x1a,0x87,0xb5,0x6a,0x16,0x74,0xf7,0x29,0x91,0x66,0x37,0x76,0xb1,
|
||||
0xab,0xc3,0xb6,0x90,0x9e,0xa3,0x3d,0x10,0x1d,0x2c,0x01,0xf5,0xf3,0x3a,0x7a,0x78,
|
||||
0xfd,0x6b,0x46,0xca,0x39,0x52,0x97,0x08,0x82,0x77,0x4b,0x18,0x32,0x3d,0xf2,0x36,
|
||||
0xe4,0x6f,0xa0,0x38,0xb4,0x01,0xd0,0x10,0x2f,0xb7,0x37,0xf2,0x0a,0x69,0x64,0x2e,
|
||||
0x22,0xcb,0x67,0xee,0xff,0x00,0x70,0xf7,0x3d,0xc5,0x6b,0x3d,0xf2,0xf2,0xbb,0x8b,
|
||||
0xb2,0x31,0x98,0x92,0x1c,0x8b,0x62,0x89,0xf3,0x25,0xa6,0x62,0x25,0x5d,0x29,0x58,
|
||||
0x41,0xf4,0x5b,0x80,0x05,0xa8,0x9e,0xfc,0xab,0x8e,0xc1,0x29,0x03,0x48,0x80,0x49,
|
||||
0x00,0x0e,0x49,0xf6,0x15,0xd8,0x63,0xd8,0xf5,0xcb,0x2c,0xc8,0x2d,0xb6,0x3b,0x3c,
|
||||
0x27,0x6e,0x17,0x6b,0x8c,0x96,0xe2,0x44,0x86,0xc2,0x79,0x71,0xe7,0x96,0xa0,0x94,
|
||||
0x21,0x23,0xea,0x49,0x03,0xf5,0xab,0xe1,0xd9,0x67,0x87,0xb6,0x17,0xb6,0x3c,0x72,
|
||||
0xdf,0x77,0xbd,0x41,0x87,0x93,0x6a,0x5b,0x88,0x4b,0xd2,0xaf,0x32,0x1a,0x0e,0x22,
|
||||
0x0b,0x9c,0x7f,0x57,0x10,0x28,0x7c,0x81,0x3c,0xf1,0xe6,0x76,0x5a,0xcf,0x27,0xb0,
|
||||
0x21,0x29,0xe8,0x34,0x54,0x70,0xe1,0xf4,0xd1,0xd2,0xd3,0xb6,0xcc,0x60,0x00,0x0f,
|
||||
0x4f,0xfd,0xeb,0xd4,0xa8,0x09,0x2e,0x37,0x2a,0x9b,0x70,0xdd,0xb4,0xeb,0xac,0xde,
|
||||
0x2e,0x58,0xd6,0x9b,0x67,0x29,0x0e,0xb0,0xeb,0x62,0x6c,0x3b,0x44,0xa6,0x92,0xb6,
|
||||
0x9c,0x6d,0x48,0x71,0x21,0xce,0x90,0x0a,0x56,0x85,0x29,0x24,0x73,0xf3,0x05,0x11,
|
||||
0xdc,0x1a,0xc7,0x32,0xbd,0x30,0xd4,0xdd,0x24,0xb7,0xcb,0x6f,0x23,0xc5,0x72,0xac,
|
||||
0x3e,0x05,0xc1,0x29,0x8f,0x24,0x5c,0x60,0x49,0x86,0xcc,0x94,0x85,0x85,0xa5,0x0b,
|
||||
0xea,0x4a,0x52,0xb1,0xd4,0x84,0xa8,0x03,0xcf,0x74,0x83,0xec,0x2b,0xd3,0x65,0x71,
|
||||
0xae,0x76,0xc8,0x77,0xab,0x7c,0x98,0x17,0x08,0x8c,0x4f,0x83,0x25,0xb2,0xd3,0xf1,
|
||||
0x64,0xb6,0x1c,0x69,0xd4,0x11,0xc1,0x4a,0x92,0xa0,0x42,0x81,0x1e,0xa0,0xd5,0xd1,
|
||||
0x63,0x49,0xb9,0x1f,0xfc,0x38,0xfa,0x2a,0x2a,0xc4,0xf0,0x3f,0xcd,0xc3,0xd8,0xf6,
|
||||
0xa9,0x61,0xee,0xba,0x94,0x98,0xd2,0xa1,0xdd,0xa3,0xb6,0x4f,0x75,0x79,0x88,0x71,
|
||||
0xa7,0x48,0x1f,0x87,0x94,0xcf,0xf8,0x85,0x5a,0x25,0x68,0x0d,0x2e,0xd9,0x86,0x0b,
|
||||
0xa2,0x1a,0xf1,0x74,0xd4,0x8c,0x09,0x93,0x8e,0x33,0x78,0xb5,0x3d,0x6d,0xb8,0xe3,
|
||||
0xac,0x27,0xfa,0x12,0x96,0xa7,0x59,0x75,0x0f,0x32,0x39,0xfb,0xa2,0x0b,0x4a,0x05,
|
||||
0x03,0x94,0x9e,0xb1,0xd2,0x11,0xc1,0x0a,0xdf,0xf5,0xed,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0xb5,0xde,0x33,0xb7,0xad,0x38,0xc3,0xf5,0x03,0x21,0xce,0x2d,0x38,
|
||||
0x7d,0xae,0x36,0x5b,0x7e,0x91,0xf1,0x53,0xae,0xc5,0x80,0xb7,0xd4,0xe7,0x48,0x04,
|
||||
0xa1,0x4a,0xe7,0xcb,0x0a,0x23,0xa9,0x41,0x1d,0x3d,0x4a,0x25,0x4a,0xe4,0xf7,0xad,
|
||||
0x89,0x4a,0x22,0xfc,0x23,0x91,0x51,0xc3,0x72,0x9b,0x06,0xd2,0x6d,0xca,0x5a,0xa5,
|
||||
0xae,0xe3,0x62,0x8f,0x8e,0xe5,0x4a,0x6d,0x42,0x3e,0x49,0x66,0x65,0x2c,0xc8,0x43,
|
||||
0x9d,0xb8,0x2e,0xa5,0x3c,0x25,0xf4,0xf6,0x00,0x85,0x82,0x78,0xe4,0x25,0x48,0x27,
|
||||
0x9a,0x92,0x14,0xa2,0x2f,0x34,0xfb,0x8d,0xdb,0xbe,0x57,0xb6,0x3d,0x4d,0x9d,0x86,
|
||||
0x65,0x6c,0x0f,0x39,0xb1,0xe7,0x43,0x9e,0xc8,0x3e,0x44,0xf8,0xe4,0x90,0x87,0x9b,
|
||||
0x27,0xd8,0xf0,0x41,0x1e,0xa9,0x50,0x20,0xfa,0x56,0x35,0xa7,0x1a,0x53,0x98,0xea,
|
||||
0xfe,0x40,0xdd,0x93,0x0b,0xc6,0xae,0x59,0x35,0xcd,0x45,0x20,0xb1,0x6e,0x8e,0xa7,
|
||||
0x3c,0xb0,0x4f,0x01,0x4e,0x28,0x7c,0xad,0xa7,0xf9,0x94,0x42,0x47,0xb9,0xaf,0x40,
|
||||
0xbb,0xad,0xd9,0xe6,0x1d,0xbb,0x9b,0x5e,0x2f,0x0f,0x29,0x7e,0x55,0xbd,0x56,0x2b,
|
||||
0x87,0xc5,0x22,0x65,0xbf,0xa4,0x48,0x71,0x85,0x20,0x87,0x63,0x05,0x28,0x10,0x94,
|
||||
0xac,0x86,0xd4,0x55,0xc1,0x20,0xb6,0x38,0xf5,0x35,0xb3,0x74,0xcf,0x4a,0xb1,0x1d,
|
||||
0x1a,0xc5,0x23,0xe3,0x78,0x4e,0x3f,0x0b,0x1c,0xb2,0xb0,0x7a,0x84,0x58,0x4d,0xf1,
|
||||
0xd6,0xae,0x00,0x2b,0x71,0x47,0x95,0x38,0xb2,0x00,0xe5,0x6b,0x25,0x47,0x81,0xc9,
|
||||
0x34,0x45,0x4e,0x58,0x17,0x83,0x9e,0xb9,0xe4,0xb1,0x52,0xe5,0xf6,0x7e,0x37,0x87,
|
||||
0x30,0xa5,0x02,0xe4,0x69,0x93,0xd7,0x25,0xfe,0x40,0x3c,0x1e,0x96,0x10,0xb6,0xcf,
|
||||
0x1c,0x91,0xdd,0xc1,0xeb,0x59,0xbd,0xdb,0xc1,0x0f,0x3a,0x66,0x12,0x95,0x6c,0xd4,
|
||||
0x9c,0x7a,0x64,0xbe,0x3e,0x56,0xa5,0xc3,0x7d,0x86,0xc9,0xfc,0x56,0x9e,0xb2,0x3f,
|
||||
0xc3,0x57,0x03,0x4a,0x22,0xf3,0xf1,0xac,0x3e,0x1a,0xda,0xf7,0xa3,0x50,0x64,0xdc,
|
||||
0x65,0xe2,0x43,0x26,0xb4,0x47,0x3f,0x79,0x3f,0x18,0x7b,0xe3,0x40,0x1f,0xc5,0xe4,
|
||||
0x80,0x1e,0x09,0x1d,0xc9,0x51,0x6f,0x80,0x07,0x72,0x2a,0x2f,0xad,0x0a,0x6d,0x6a,
|
||||
0x42,0xd2,0x52,0xb4,0x9e,0x0a,0x54,0x38,0x20,0xfd,0x2b,0xd5,0x3d,0x44,0x3d,0xe5,
|
||||
0x78,0x73,0xe0,0xfb,0x9e,0xb7,0xce,0xbe,0x59,0x9a,0x8d,0x88,0x6a,0x3f,0x4a,0x9c,
|
||||
0x6a,0xf3,0x1d,0xae,0x19,0x9e,0xe7,0x1d,0x91,0x31,0x09,0x1f,0x30,0x3c,0x71,0xe6,
|
||||
0x8f,0x9d,0x3d,0x8f,0xce,0x07,0x41,0x22,0xa1,0x3a,0x56,0x4b,0xa9,0x1a,0x71,0x91,
|
||||
0xe9,0x1e,0x6f,0x76,0xc4,0x72,0xdb,0x5b,0xd6,0x6c,0x82,0xd6,0xf7,0x93,0x26,0x23,
|
||||
0xdc,0x12,0x93,0xc0,0x29,0x52,0x48,0xec,0xa4,0xa9,0x24,0x29,0x2a,0x04,0x85,0x24,
|
||||
0x82,0x09,0x06,0xb9,0x3a,0x51,0xa5,0x39,0x3e,0xb6,0x67,0xb6,0xac,0x3b,0x10,0xb6,
|
||||
0xae,0xe9,0x7c,0xb9,0x39,0xd0,0xd3,0x49,0xec,0x94,0x24,0x77,0x53,0x8e,0x2b,0xd1,
|
||||
0x28,0x48,0xe4,0x95,0x1f,0x40,0x28,0x8b,0x14,0x65,0x97,0x24,0xbc,0x86,0x9a,0x42,
|
||||
0x9d,0x75,0xc5,0x04,0xa1,0x08,0x1c,0xa9,0x44,0xf6,0x00,0x01,0xea,0x6a,0x53,0xe9,
|
||||
0x07,0x86,0x56,0xbf,0x6a,0xec,0x18,0xb7,0x16,0x71,0x66,0xf1,0x3b,0x5c,0x8e,0xed,
|
||||
0xcc,0xca,0x1f,0xf8,0x23,0xc7,0xf1,0x16,0x42,0x54,0xf8,0x1e,0xe0,0xf9,0x7c,0x11,
|
||||
0xdc,0x72,0x2a,0xd4,0xf6,0x75,0xe1,0xf1,0x81,0xed,0x6a,0xd5,0x0e,0xeb,0x2a,0x34,
|
||||
0x7c,0xa7,0x51,0x14,0x80,0xa9,0x19,0x04,0xa6,0x82,0x84,0x55,0x94,0xf0,0xa4,0x44,
|
||||
0x4a,0x87,0xdd,0x24,0x72,0xa1,0xd7,0xfb,0x6a,0x04,0xf2,0x40,0x21,0x29,0x95,0x74,
|
||||
0x45,0x50,0x16,0xef,0x04,0x3c,0xe1,0xd8,0x69,0x5c,0xfd,0x4b,0xc7,0xe3,0x4c,0x23,
|
||||
0x95,0x35,0x1e,0x13,0xef,0x36,0x0f,0xfb,0xe7,0xa0,0x9f,0xf0,0xd6,0xbe,0xcf,0x7c,
|
||||
0x1d,0x75,0xd7,0x16,0x69,0x6f,0x58,0xde,0xc6,0xf3,0x26,0xc1,0x3d,0x2c,0xdb,0xee,
|
||||
0x06,0x3b,0xe4,0x7d,0x4a,0x64,0x21,0xb4,0x0f,0xd1,0x66,0xaf,0x02,0x94,0x45,0xe5,
|
||||
0xf3,0x3f,0xd3,0x4c,0xb3,0x4a,0xef,0xee,0xd9,0x33,0x0c,0x72,0xe7,0x8d,0x5d,0x5b,
|
||||
0x27,0x98,0xd7,0x38,0xcb,0x65,0x4a,0x00,0xf1,0xd4,0x9e,0xa1,0xc2,0xd2,0x7d,0x94,
|
||||
0x9e,0x41,0xf5,0x04,0x8a,0xce,0x76,0xbd,0xb6,0x4c,0xaf,0x75,0x5a,0x9b,0x1b,0x12,
|
||||
0xc6,0x52,0x98,0xcc,0x36,0x91,0x22,0xe7,0x76,0x7d,0x3c,0xb3,0x6f,0x8d,0xd4,0x02,
|
||||
0x9c,0x50,0xe4,0x75,0x28,0xf3,0xc2,0x50,0x0f,0x2a,0x3f,0x40,0x14,0xa4,0xfa,0x18,
|
||||
0xd5,0x6d,0x1d,0xc3,0x35,0xc3,0x13,0x7f,0x1b,0xce,0x71,0xe8,0x59,0x15,0xa5,0xce,
|
||||
0x4a,0x5a,0x94,0x8f,0x9d,0x95,0xf0,0x47,0x98,0xd3,0x83,0x85,0x36,0xb0,0x09,0x01,
|
||||
0x68,0x20,0xf7,0x3d,0xfb,0xd6,0xbf,0xda,0x6e,0xd2,0x31,0x6d,0xa2,0xe2,0x17,0xbb,
|
||||
0x16,0x37,0x2e,0x4d,0xd1,0x57,0x5b,0x92,0xe7,0x3d,0x70,0x9e,0x84,0x09,0x05,0xbe,
|
||||
0x3a,0x59,0x65,0x4a,0x48,0x01,0x41,0xb4,0xf3,0xdf,0x81,0xca,0x96,0xb5,0x00,0x9e,
|
||||
0xae,0x01,0x17,0x5d,0xb7,0x2d,0x8b,0xe9,0x36,0xda,0xed,0x71,0xfe,0xc3,0xc7,0x63,
|
||||
0xdd,0xf2,0x30,0x84,0x89,0x19,0x1d,0xe1,0xa4,0xbf,0x31,0xc5,0x8e,0x79,0x28,0x2a,
|
||||
0x1c,0x32,0x93,0xcf,0xec,0xb6,0x13,0xc8,0x03,0xa8,0xa8,0x8e,0x6a,0x41,0xd2,0x94,
|
||||
0x45,0xae,0xef,0x1b,0x7b,0xd3,0xab,0xee,0xa5,0xd8,0x75,0x0a,0x56,0x23,0x6d,0x19,
|
||||
0x9d,0x91,0xc7,0x1c,0x89,0x78,0x65,0x90,0xd3,0xc4,0xad,0xb5,0x36,0x7c,0xc2,0x9e,
|
||||
0x03,0xbc,0x05,0x12,0x9e,0xbe,0xae,0x93,0xdd,0x3c,0x1a,0xd8,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x14,0x2e,
|
||||
0xf1,0x31,0xd9,0xbb,0x3b,0x8c,0xd2,0xc7,0x72,0xcc,0x76,0x08,0x5e,0xa2,0x62,0xf1,
|
||||
0xd6,0xf4,0x5f,0x21,0xa2,0xa7,0x6e,0x51,0x07,0x2a,0x72,0x21,0xe3,0xba,0x95,0xea,
|
||||
0xb6,0xfb,0x13,0xd5,0xca,0x40,0x1e,0x61,0x23,0xb8,0xf0,0xe7,0xd9,0xd4,0x5d,0xb0,
|
||||
0xe9,0x2b,0x17,0x6b,0xd4,0x44,0x1d,0x45,0xc9,0x18,0x6e,0x45,0xd5,0xe5,0x77,0x54,
|
||||
0x36,0x8f,0xcc,0xdc,0x34,0x9e,0x3b,0x74,0x72,0x0a,0xf8,0xf5,0x73,0x9e,0xea,0x4a,
|
||||
0x51,0xc4,0xb9,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,
|
||||
0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,
|
||||
0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,
|
||||
0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x7f,0xff,0xd9};
|
|
@ -0,0 +1,318 @@
|
|||
//
|
||||
// ncc1701
|
||||
// Data size = 4912 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 77, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t ncc1701[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x48,
|
||||
0x00,0x48,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0x4d,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1d,0x00,0x00,0x01,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x06,0x07,0x08,0x09,0x04,0x03,0x02,0x0a,
|
||||
0xff,0xc4,0x00,0x40,0x10,0x00,0x01,0x03,0x03,0x02,0x03,0x06,0x03,0x05,0x04,0x09,
|
||||
0x05,0x01,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x11,0x06,0x07,0x12,0x21,
|
||||
0x31,0x08,0x13,0x41,0x51,0x61,0x71,0x09,0x22,0x81,0x14,0x32,0x91,0xa1,0xb1,0x15,
|
||||
0x42,0x52,0x62,0x16,0x23,0x24,0x53,0x63,0x72,0x73,0x82,0xb2,0x17,0x33,0x92,0xa2,
|
||||
0xd1,0xf0,0xff,0xc4,0x00,0x1a,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0xff,0xc4,
|
||||
0x00,0x23,0x11,0x00,0x02,0x02,0x01,0x05,0x01,0x00,0x02,0x03,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x02,0x11,0x12,0x03,0x21,0x31,0x41,0x51,0x04,0x05,0x13,
|
||||
0x22,0x32,0x61,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,0x3f,
|
||||
0x00,0xd5,0x3a,0x2b,0x2c,0xb5,0xcf,0x6f,0x7d,0xd3,0xb4,0x6f,0x56,0xa3,0x65,0x1a,
|
||||
0xa2,0xd5,0x67,0xb0,0x5b,0xae,0x92,0x21,0x26,0xcf,0x22,0x02,0x56,0xa8,0xe1,0xb5,
|
||||
0x94,0x29,0x0e,0x2f,0xf7,0xd4,0x38,0x4e,0x4e,0x71,0x9e,0x94,0xa9,0x74,0xed,0xfb,
|
||||
0x3e,0xee,0xdb,0xc1,0x1a,0xd1,0x49,0xe2,0xf9,0x55,0xf6,0x76,0x92,0xd8,0x48,0xf4,
|
||||
0xc5,0x5a,0x8d,0x91,0x97,0xf8,0x69,0xc1,0x21,0x23,0x24,0xe0,0x79,0x9a,0x4e,0xb8,
|
||||
0x6a,0x5b,0x4d,0xa5,0x95,0x3b,0x36,0xe7,0x12,0x2b,0x69,0xea,0xa7,0x9f,0x4a,0x40,
|
||||
0xe7,0x8f,0x13,0x59,0x3d,0x74,0xed,0x71,0x2a,0xf8,0x15,0x19,0x7a,0xaa,0xe1,0x29,
|
||||
0xb0,0x4a,0x80,0x0f,0x9c,0x67,0xd8,0x54,0x69,0x72,0xdc,0xa9,0xbb,0x85,0xaa,0x58,
|
||||
0xb6,0x37,0x71,0x90,0xa8,0xe9,0x52,0x78,0xbb,0xd7,0x4f,0xcd,0x9c,0xa9,0xc5,0x7b,
|
||||
0xf0,0x80,0x91,0xea,0xb2,0x7c,0x05,0x0e,0x2a,0x2a,0xdb,0x1c,0x5c,0xa5,0x25,0x14,
|
||||
0xb7,0x66,0xd0,0x23,0x5d,0x58,0x1e,0x68,0xba,0xcd,0xd2,0x3c,0x96,0x87,0x55,0xb0,
|
||||
0xae,0xf0,0x0f,0x72,0x33,0x4a,0xb0,0x6e,0x71,0x2e,0x6d,0x97,0x22,0x49,0x6a,0x4a,
|
||||
0x07,0x52,0xd2,0xc2,0xb1,0xef,0xe5,0x59,0x85,0x62,0xd7,0x57,0x6d,0x31,0x6f,0x61,
|
||||
0x88,0xb3,0x1c,0x8c,0xd0,0x48,0x09,0x6a,0x2b,0x9c,0x28,0x23,0xa6,0x08,0x14,0xbb,
|
||||
0xa1,0xb7,0x73,0x50,0x6d,0xfe,0xa9,0x62,0xfb,0x0e,0x5a,0xd6,0x90,0xa1,0xf6,0xa8,
|
||||
0xae,0x2f,0xfa,0xb9,0x0d,0xe7,0xe6,0x0a,0xf5,0xc7,0x43,0xd4,0x57,0x04,0x3e,0x87,
|
||||
0x39,0xe3,0x8e,0xde,0x9e,0xcc,0xff,0x00,0x1e,0xe3,0x06,0xf2,0xdd,0x75,0x46,0x94,
|
||||
0xd4,0x4d,0xbe,0x1d,0xa7,0x74,0x46,0xc1,0x47,0x57,0xf4,0x8e,0x54,0x97,0xe7,0xf7,
|
||||
0x1f,0x69,0x16,0xeb,0x7b,0x05,0xe7,0xcb,0x5c,0x5c,0x3c,0x64,0x0e,0x41,0x39,0xe5,
|
||||
0x92,0x6a,0x4e,0xb4,0x5c,0x9b,0xbc,0xda,0xa1,0x4f,0x64,0x29,0x2c,0xca,0x61,0x0f,
|
||||
0xa0,0x2f,0xa8,0x4a,0x92,0x14,0x33,0xeb,0x83,0x55,0xb3,0xb6,0x8f,0x64,0x16,0xfb,
|
||||
0x43,0x69,0xe5,0x5d,0x74,0xf3,0xa9,0xb6,0xeb,0x78,0xcd,0xa1,0x94,0x48,0x2e,0x14,
|
||||
0x22,0x5c,0x74,0x92,0xae,0xe1,0x67,0xa0,0xe6,0x72,0x0e,0x3a,0xfa,0x1a,0xed,0x47,
|
||||
0x8e,0xef,0xa2,0x3c,0x87,0xf1,0x5d,0xd0,0x37,0x1b,0xdc,0x78,0x4c,0x69,0x2d,0x42,
|
||||
0x86,0x1d,0x59,0x4f,0xda,0x5f,0x4b,0x48,0x03,0xc8,0xf0,0xf1,0x13,0x52,0x2a,0x7b,
|
||||
0x76,0xe8,0x76,0x16,0x15,0x36,0xf1,0x62,0x8a,0xc9,0x03,0x90,0xb8,0x95,0x2c,0x79,
|
||||
0xe4,0x70,0x01,0xf9,0xd6,0x7c,0x5c,0x3e,0x17,0xbb,0xbd,0x76,0x9a,0xa9,0x32,0x74,
|
||||
0xeb,0xfc,0x44,0xf3,0x4a,0x2e,0xd1,0x42,0x4f,0xfe,0xf5,0xf2,0x9f,0x85,0x8e,0xe7,
|
||||
0x05,0x64,0xe8,0xf5,0xaf,0x3f,0xc5,0x79,0x8c,0x3f,0x45,0xd5,0xac,0x48,0xdc,0xbe,
|
||||
0x37,0x0f,0x88,0xee,0xd5,0x5b,0xd4,0xb4,0x1d,0x49,0x09,0xf5,0x85,0x72,0xee,0x3e,
|
||||
0x6e,0x5e,0x5f,0x7b,0xf3,0xa6,0xfb,0x7f,0x12,0x8d,0x03,0x32,0x52,0x1a,0x8d,0x70,
|
||||
0x95,0x21,0xd5,0xa4,0x84,0xa1,0xa6,0x40,0x41,0xc7,0x89,0x51,0x49,0xc7,0xe3,0x55,
|
||||
0x1d,0x9f,0x87,0x06,0xf3,0x45,0x42,0x5a,0x6b,0x4b,0x0e,0xe9,0x09,0x09,0x40,0xfd,
|
||||
0xb1,0x1c,0x60,0x0f,0xf7,0xd3,0x23,0x78,0x3b,0x2d,0xee,0x3e,0xc8,0x59,0x61,0xcf,
|
||||
0xd4,0x56,0x25,0x43,0x8f,0x31,0xd3,0x1d,0x90,0xdd,0xd1,0x32,0x14,0x55,0x8e,0x25,
|
||||
0x7c,0x89,0x59,0xe5,0x81,0xcc,0xe3,0x1d,0x3c,0xc5,0x52,0x51,0x25,0xe4,0x5e,0xb9,
|
||||
0x5d,0xbe,0x6c,0xf7,0x04,0xb4,0x44,0x47,0xca,0x51,0xf3,0x25,0x62,0x62,0x9b,0xe2,
|
||||
0xf7,0xe0,0xc6,0x7e,0xb5,0x0e,0xeb,0x8e,0xda,0x2b,0xd7,0x9b,0x8b,0x21,0xa4,0x5b,
|
||||
0xdb,0x72,0xdf,0x67,0x8a,0xca,0x61,0x43,0x7d,0xe5,0x29,0x0f,0x4e,0x7d,0x44,0x77,
|
||||
0xce,0xf5,0xe2,0x4b,0x68,0x4f,0xca,0x8e,0x9c,0x4a,0xc9,0x04,0xa4,0x62,0xb3,0xed,
|
||||
0xa7,0x67,0xdd,0xd2,0xde,0x0d,0x38,0xab,0xc6,0x8d,0xd2,0x53,0x6f,0x36,0xa6,0x9e,
|
||||
0x54,0x55,0x4b,0x44,0x86,0x5b,0x47,0x7a,0x8f,0xbc,0x91,0xc6,0xe2,0x49,0xc6,0x7c,
|
||||
0x05,0x3a,0xae,0x7d,0x8d,0x77,0x77,0x44,0xc0,0x73,0x53,0x5c,0xf4,0xa3,0x36,0x70,
|
||||
0x90,0x95,0x2c,0x4a,0xbc,0xc6,0xef,0x57,0xc1,0x92,0x02,0x51,0xde,0x7c,0xca,0xeb,
|
||||
0x80,0x32,0x4d,0x14,0xba,0x1a,0x6d,0x34,0xe4,0x4d,0x32,0x37,0x09,0xf9,0x17,0x98,
|
||||
0xd3,0xad,0x89,0x5d,0xa2,0x60,0x56,0x59,0x76,0x1b,0x84,0x38,0x95,0x79,0xf1,0x0e,
|
||||
0x64,0x9f,0x1f,0x3a,0xb8,0x9b,0x5f,0xda,0x21,0x2e,0x6d,0x4a,0xae,0x5a,0xb0,0x3d,
|
||||
0xfb,0x7e,0x0a,0x9c,0x60,0xb2,0xdc,0x65,0x87,0x26,0xf0,0xa4,0x14,0x2d,0x29,0xc7,
|
||||
0xef,0x03,0x83,0xe1,0x90,0x6b,0x3d,0xf4,0x9e,0xe0,0xea,0x7d,0x1f,0x2a,0x35,0xd2,
|
||||
0x26,0x9c,0x96,0xd4,0xb0,0x8e,0x5c,0x6c,0xa5,0x4a,0x46,0x7a,0x8c,0x78,0x7e,0x19,
|
||||
0xa5,0xbd,0x6b,0xda,0xf3,0x77,0xae,0x31,0x5e,0x8f,0x06,0xcf,0x2d,0xb0,0xe8,0x21,
|
||||
0x45,0x0c,0x84,0xf5,0xf5,0x3e,0xc2,0xb0,0xd3,0xd0,0x92,0x79,0x49,0xf3,0xd1,0xea,
|
||||
0x7d,0x9f,0x6e,0x9e,0xb2,0x5a,0x70,0x82,0x55,0xd9,0xe1,0xda,0xb3,0xb5,0xe6,0xe5,
|
||||
0x6b,0x2b,0xf1,0x6f,0x4d,0xdb,0xee,0x96,0x48,0x2c,0x8e,0x14,0xa2,0x52,0xd2,0x86,
|
||||
0xc1,0x1e,0x21,0x23,0x1f,0x89,0xc9,0xa8,0x0b,0x47,0x76,0xbb,0xdf,0xad,0xb3,0xd4,
|
||||
0x0c,0x5c,0xe2,0x6b,0x34,0x84,0x21,0xde,0xf1,0xdb,0x6c,0xb7,0x9b,0x5c,0x47,0xc7,
|
||||
0x8a,0x56,0xdf,0xaf,0x98,0xc1,0xf5,0xa6,0xce,0xb0,0xb5,0xee,0x7e,0xb8,0x94,0xeb,
|
||||
0xb3,0xad,0xf2,0xd6,0x56,0x4a,0x88,0x53,0xcd,0xa0,0x7f,0xca,0x9a,0xe7,0x63,0xf5,
|
||||
0x8c,0x97,0x56,0xa7,0x2d,0xcc,0x45,0x49,0x51,0x20,0x3d,0x2d,0x2a,0xe1,0x19,0xe4,
|
||||
0x39,0x12,0x6b,0xa1,0xa5,0xc2,0x3c,0xa4,0xfd,0x35,0xbb,0x63,0xbe,0x27,0xdb,0x69,
|
||||
0xb8,0x8c,0xd9,0xad,0x9a,0xad,0xd3,0xa4,0xb5,0x34,0xc2,0x86,0x1c,0x4a,0xb2,0xe4,
|
||||
0x12,0xe9,0x38,0xf9,0x5e,0xc0,0xc2,0x49,0xfe,0x20,0x31,0x9a,0xb9,0x48,0x5a,0x5d,
|
||||
0x42,0x56,0x85,0x05,0xa1,0x43,0x21,0x49,0x39,0x04,0x79,0x8a,0xfc,0xe9,0x7f,0xd0,
|
||||
0x8b,0xe1,0x6b,0x8a,0x7d,0xce,0x04,0x56,0x5b,0x19,0x21,0x2b,0x5b,0x9c,0x3f,0x4e,
|
||||
0x11,0xe7,0x56,0xf7,0x6a,0x7b,0x6d,0xee,0x26,0xd6,0xe8,0x4b,0x46,0x91,0x6f,0x53,
|
||||
0x37,0xa8,0x51,0x6d,0x68,0x47,0x8d,0x21,0x56,0xd0,0xe3,0x81,0xb1,0xf7,0x52,0xa5,
|
||||
0xa8,0x92,0xae,0x11,0xcb,0x9f,0x30,0x00,0x15,0x38,0x37,0xc1,0x59,0xa3,0x5c,0xa8,
|
||||
0xac,0xd7,0x8b,0xf1,0x26,0xdc,0x88,0x6e,0x23,0xbc,0xd3,0x16,0x8b,0x82,0x70,0x12,
|
||||
0x43,0xa5,0x4d,0x0c,0xff,0x00,0x17,0x25,0x79,0x53,0xd2,0xd5,0xf1,0x34,0xb8,0x96,
|
||||
0x12,0x2e,0x1b,0x7f,0x1c,0xba,0x4f,0x35,0x47,0xba,0x10,0x91,0xf4,0x2d,0x9f,0xd6,
|
||||
0xa7,0x09,0x0f,0x34,0x5f,0x4a,0x2a,0x87,0x5c,0xbe,0x23,0xd7,0x79,0x89,0x79,0x36,
|
||||
0xcd,0x2f,0x02,0x0a,0xd4,0x9c,0x36,0x66,0x3a,0xb7,0x78,0x4f,0x99,0xe1,0x23,0x3f,
|
||||
0x80,0xaf,0x58,0x3f,0x11,0xab,0x83,0xa9,0xee,0x9c,0xb3,0x59,0x97,0x25,0xbc,0x25,
|
||||
0xd0,0x97,0xdc,0x4f,0xcd,0xec,0x7a,0x51,0x84,0xbc,0x1e,0x51,0xf4,0xbd,0x94,0x55,
|
||||
0x2a,0x8f,0xdb,0xf6,0xed,0x24,0x9e,0x0d,0x39,0x6b,0x5e,0x3a,0xf0,0xc9,0x59,0xae,
|
||||
0x94,0xf6,0xf0,0xbc,0xf1,0x27,0x3a,0x6a,0xdf,0x8f,0x1c,0x3c,0xba,0x7f,0xae,0x5e,
|
||||
0x13,0x9c,0x4b,0x99,0x45,0x54,0xf8,0xbd,0xb9,0xdc,0x9a,0xf2,0x1a,0x6b,0x48,0x27,
|
||||
0x8d,0x47,0x1f,0x3d,0xc5,0x28,0x1f,0x8a,0x92,0x00,0xfa,0xd2,0xa0,0xed,0xc7,0x69,
|
||||
0x8f,0x29,0x6c,0xcc,0xd2,0xd2,0xd8,0xe1,0x1f,0x79,0x99,0x8d,0xbb,0xcf,0xcb,0x90,
|
||||
0x03,0x1e,0xa0,0xd2,0xc2,0x5e,0x0f,0x38,0x96,0x72,0x8a,0x80,0xed,0xbd,0xb4,0xf6,
|
||||
0xfe,0x67,0x00,0x92,0xdd,0xd6,0x02,0x8e,0x02,0x8b,0xb1,0x92,0xa4,0x8c,0xf5,0xe6,
|
||||
0x95,0x13,0x81,0xed,0x52,0x86,0x90,0xdd,0x7d,0x21,0xaf,0x55,0xc1,0x61,0xbf,0xc3,
|
||||
0xb8,0x3d,0x8c,0xf7,0x09,0x5f,0x03,0xb8,0xff,0x00,0x22,0xb0,0xaf,0xca,0x93,0x8b,
|
||||
0x5c,0xa2,0x93,0x4f,0x82,0xa9,0xf6,0x87,0xf8,0x68,0xe9,0xfd,0xd4,0xd6,0x37,0x3d,
|
||||
0x53,0xa5,0xee,0x31,0xec,0x57,0x0b,0xa3,0xcb,0x95,0x36,0x14,0xd6,0x4b,0xac,0x38,
|
||||
0xfa,0xce,0x56,0xea,0x54,0x0e,0x50,0x54,0x79,0x90,0x01,0x19,0xe7,0xca,0xab,0xad,
|
||||
0xfb,0xe1,0x55,0xb8,0x36,0xe0,0xe7,0xd9,0x53,0x62,0xbd,0x80,0x0f,0x09,0x62,0x62,
|
||||
0x9b,0x51,0xc7,0x41,0xfd,0x60,0x4e,0x0f,0xd6,0xb5,0x8a,0x8a,0x2f,0xa1,0xa6,0xd3,
|
||||
0x4e,0x2d,0xa6,0x8c,0x4d,0xba,0x76,0x16,0xdd,0x1d,0x21,0x24,0xba,0x8d,0xbd,0xba,
|
||||
0x2d,0x64,0x60,0x2e,0x08,0xfb,0x42,0x79,0xf2,0xe7,0xc2,0xa3,0x8a,0x61,0xc4,0xd2,
|
||||
0x3a,0xa3,0x6e,0x35,0x93,0x73,0x2f,0x7a,0x76,0xe1,0x6b,0x0c,0xab,0x81,0xc6,0xe6,
|
||||
0xc6,0x5b,0x7c,0xf0,0x46,0x32,0x46,0x39,0xa4,0x9f,0xc0,0x56,0xf7,0x57,0x2d,0xc2,
|
||||
0xd7,0x0e,0xec,0xc8,0x66,0x74,0x46,0x26,0x34,0x0e,0x7b,0xb9,0x0d,0xa5,0x69,0xcf,
|
||||
0xb1,0x14,0x95,0x25,0x55,0xb0,0xdc,0xa7,0x29,0x29,0xb9,0x36,0xd7,0xbb,0x99,0x3f,
|
||||
0x66,0xb8,0xc2,0xd4,0x76,0xc6,0x54,0xc3,0x8c,0x92,0x47,0xca,0x19,0x1c,0xc7,0xf9,
|
||||
0xbc,0xa9,0xd5,0xa4,0x34,0x74,0x9d,0x6f,0xa9,0xed,0xda,0x66,0xd6,0xeb,0x6e,0xdc,
|
||||
0xa7,0x28,0xf0,0x24,0x91,0xf2,0xb6,0x92,0x38,0xdc,0x50,0xeb,0xc2,0x07,0x3a,0x92,
|
||||
0x3b,0x54,0xfc,0x3b,0xd7,0x74,0x5c,0xfd,0x55,0xb4,0x6f,0xae,0xcf,0x70,0x73,0x89,
|
||||
0xe9,0x56,0x16,0x5d,0x2d,0xb6,0xe9,0xea,0x54,0xc1,0xe8,0x95,0x1f,0xe0,0x3c,0x8f,
|
||||
0x86,0x2a,0x95,0xec,0x47,0x66,0x6d,0xe6,0xbc,0xeb,0xbf,0xdb,0xf6,0x19,0x57,0x2d,
|
||||
0x33,0x78,0xb5,0xc8,0x52,0x11,0x7e,0xbb,0x3c,0xb6,0x92,0xca,0x81,0xc2,0x90,0x94,
|
||||
0x9f,0x9d,0x44,0x10,0x41,0x00,0x11,0xe0,0x48,0xae,0x58,0xfc,0xdf,0xca,0xd3,0xb5,
|
||||
0xe1,0xef,0x4b,0xf3,0x2f,0xf5,0xe2,0xe0,0x94,0xaa,0xac,0xdc,0x0b,0x3d,0xb5,0x16,
|
||||
0x6b,0x44,0x1b,0x7b,0x6a,0x2b,0x6e,0x2b,0x08,0x61,0x2a,0x57,0x52,0x12,0x90,0x90,
|
||||
0x7f,0x2a,0xeb,0x52,0x82,0x41,0x24,0x80,0x07,0x52,0x6a,0x09,0xb5,0x6a,0x5d,0x64,
|
||||
0x34,0x75,0xae,0xd9,0x7a,0xd4,0x31,0x9d,0xbb,0x30,0xc2,0x1b,0x99,0x73,0xb7,0xb1,
|
||||
0xdd,0x2a,0x4a,0xc0,0xe6,0xac,0x12,0x78,0x73,0xe9,0x49,0x93,0xe3,0x5c,0xae,0x4b,
|
||||
0xef,0x24,0xce,0x97,0x2d,0x58,0xe1,0x0b,0x5b,0xe5,0x39,0x1e,0xc2,0xbb,0xd6,0x93,
|
||||
0x7c,0x9f,0x36,0xf5,0x11,0x36,0xdd,0x75,0xd6,0x9e,0xb2,0x8c,0xcd,0xbc,0x43,0x63,
|
||||
0xd0,0xba,0x09,0xfc,0x05,0x34,0x6e,0x5d,0xa1,0x34,0x8c,0x0e,0x30,0xd3,0xf2,0xa6,
|
||||
0xad,0x3d,0x03,0x11,0xd5,0x85,0x7b,0x28,0xe0,0x54,0x50,0xe5,0x85,0xb6,0x1c,0x19,
|
||||
0x86,0xda,0x41,0xf1,0x48,0xfd,0x4d,0x76,0x31,0xa7,0xe1,0x05,0x25,0x6f,0xa5,0xa0,
|
||||
0x8f,0xe1,0x51,0xe5,0x8f,0xa5,0x68,0xb4,0x57,0x6c,0x87,0xa8,0xfa,0x16,0xa7,0x76,
|
||||
0xa5,0xef,0x90,0xeb,0x76,0xbd,0x33,0x29,0xd9,0x05,0x24,0x37,0xdf,0x38,0x30,0x15,
|
||||
0xfb,0xa4,0x84,0xe7,0x97,0xa6,0x6a,0xad,0xee,0x26,0xc5,0x6b,0x0d,0xfa,0xd4,0xcd,
|
||||
0xdd,0xf5,0x6d,0xd5,0x57,0x15,0xb4,0xf2,0xdd,0x8a,0xc4,0xf6,0xdd,0xee,0xa2,0x71,
|
||||
0x63,0x21,0x96,0x92,0xe8,0x08,0x18,0x03,0xdf,0x1c,0xce,0x6a,0xd1,0x31,0x36,0xc7,
|
||||
0x68,0xc0,0x8e,0xdb,0x09,0x23,0xc7,0x19,0x35,0xe8,0xf6,0xb6,0xb4,0x32,0x14,0xa2,
|
||||
0xf2,0x42,0xfc,0xea,0xd4,0x12,0xe1,0x12,0xe6,0xd9,0x18,0xed,0x46,0xd6,0xcd,0xd9,
|
||||
0x2d,0x22,0x2c,0x76,0x1b,0xc4,0xcb,0x45,0xb5,0x4a,0x5b,0xce,0xc5,0x8e,0xea,0x92,
|
||||
0xd2,0x9d,0x51,0xca,0xd6,0x02,0x8a,0x94,0x92,0x7d,0x15,0x49,0x1a,0xa6,0xd9,0x1d,
|
||||
0xc7,0x9c,0x71,0xf5,0xb9,0x31,0xf5,0x73,0x5b,0xaf,0x2c,0xa8,0x9f,0x52,0x4d,0x3c,
|
||||
0xf5,0x16,0xbb,0x87,0x27,0x88,0x21,0xf4,0x91,0x51,0xd5,0xe6,0xf4,0xdc,0xc2,0xae,
|
||||
0xed,0xc0,0xa1,0xe7,0x4d,0x40,0x97,0x21,0x87,0x7c,0x8e,0xc3,0x3c,0x5c,0x08,0x09,
|
||||
0x1e,0x43,0xa5,0x31,0xee,0x6f,0x36,0xd8,0x21,0x29,0x19,0xf1,0xe5,0x4f,0x6b,0xcb,
|
||||
0x0e,0x49,0x51,0x3c,0x49,0x03,0xde,0x9a,0x33,0xac,0xea,0x71,0x44,0x95,0xa7,0x1e,
|
||||
0xf4,0xe8,0x56,0x32,0x2e,0xb3,0x9c,0x42,0x95,0xc0,0x9e,0x25,0x63,0x09,0x40,0x20,
|
||||
0x64,0xf9,0x53,0x26,0xe1,0x71,0xbb,0xcd,0x9c,0x88,0xd8,0x10,0xf8,0x82,0xb0,0x09,
|
||||
0x07,0x8b,0xeb,0xed,0xfc,0x39,0xa7,0x3e,0xbe,0xdb,0x39,0xba,0x9e,0xf5,0x64,0x53,
|
||||
0x72,0x12,0xd5,0xba,0x3a,0xdc,0x54,0xa2,0x97,0x8b,0x6b,0xc1,0x03,0x87,0x87,0x1d,
|
||||
0x4e,0x45,0x23,0xbb,0xb5,0x37,0x5f,0xe9,0x55,0x9e,0x7b,0x97,0xa6,0xa7,0x43,0xb7,
|
||||
0x95,0xe0,0xba,0xde,0x1f,0x29,0x50,0xfb,0xa4,0x8e,0x4a,0xe9,0xd7,0x95,0x4d,0x31,
|
||||
0xec,0x21,0xbd,0x6e,0x6a,0xc7,0x0d,0x72,0xa6,0x4a,0x71,0xb6,0x9a,0x1c,0x4e,0x2b,
|
||||
0xbd,0x52,0x5b,0x03,0xa6,0x4f,0x32,0x6b,0x88,0xdf,0x2d,0xe5,0x02,0x42,0x1c,0x52,
|
||||
0x9a,0x73,0x07,0xbf,0x43,0x2a,0x29,0x20,0xf4,0xca,0xb1,0x52,0xc4,0xab,0x03,0x0e,
|
||||
0xa1,0x6d,0x38,0xd2,0x56,0xda,0xc7,0x09,0x0b,0x19,0x04,0x79,0x1a,0x6e,0x5b,0x74,
|
||||
0x13,0x36,0x10,0xf3,0x10,0x6e,0x12,0x23,0xc5,0x5a,0xb8,0x93,0x14,0x84,0xb8,0x86,
|
||||
0xfd,0x11,0xc4,0x09,0x03,0xd2,0x96,0x3b,0x8d,0x31,0xb5,0x3d,0x52,0xe1,0xc2,0x5b,
|
||||
0xcc,0xc4,0x5c,0xe5,0x80,0x08,0x65,0xb2,0x02,0x95,0xed,0x9e,0x54,0x8d,0x6d,0xd4,
|
||||
0x12,0x6e,0x0f,0x04,0x2a,0x13,0x71,0x95,0x9c,0x29,0xb7,0x1f,0xe1,0x75,0x1e,0xe9,
|
||||
0x20,0x7e,0x44,0xd4,0x93,0x6f,0xb0,0x45,0xb5,0xf7,0xc3,0xbe,0x93,0x20,0xba,0xae,
|
||||
0x35,0x17,0xd6,0x55,0x83,0xfc,0xa3,0xc0,0x7a,0x57,0xa4,0x88,0xf6,0xd7,0x14,0x92,
|
||||
0xf4,0x56,0xde,0x52,0x7a,0x17,0x10,0x0e,0x3d,0xa8,0x61,0x63,0x37,0xbc,0x4d,0xd1,
|
||||
0x2e,0xc5,0x85,0x21,0x0e,0x4c,0x68,0x82,0xb4,0x21,0xdc,0x60,0x7a,0x9c,0x1f,0xd2,
|
||||
0x95,0x2d,0x5a,0x14,0x45,0x8e,0x1a,0x69,0xa8,0xe9,0x6c,0xfc,0xca,0x41,0x6b,0x04,
|
||||
0xa8,0xf5,0xf9,0x93,0x8f,0xd2,0x9c,0x91,0xdc,0x84,0xc8,0xc3,0x30,0xd9,0x68,0xff,
|
||||
0x00,0x2a,0x42,0x6b,0xb1,0x2f,0x36,0xae,0x7c,0x21,0x20,0x78,0xf1,0x60,0x53,0xb1,
|
||||
0x1c,0x10,0x34,0xb3,0x4d,0xa9,0xb5,0xc8,0xc3,0x65,0xa5,0x85,0xa5,0x0d,0xa8,0x29,
|
||||
0x3c,0xbd,0x70,0x0d,0x3a,0x59,0x9e,0xdb,0x43,0x09,0xe2,0x5f,0xb8,0xe5,0x4d,0xb9,
|
||||
0x7a,0xae,0xcb,0x6e,0x04,0x49,0xba,0xc3,0x60,0x8e,0xa8,0x5b,0xe9,0xe2,0xfc,0x33,
|
||||
0x9a,0x48,0x97,0xbc,0xda,0x62,0x08,0xf9,0x25,0x3b,0x2d,0x63,0xf7,0x63,0xc7,0x51,
|
||||
0xfc,0xd5,0x81,0xf9,0xd5,0x58,0x89,0x05,0x13,0x14,0x47,0xdd,0x56,0x3d,0xab,0xec,
|
||||
0xc8,0x56,0x32,0x52,0xa3,0xee,0x2a,0x1a,0xb9,0xf6,0x89,0x4b,0x43,0x86,0x05,0x99,
|
||||
0xd5,0xf9,0x2e,0x4b,0xa1,0x03,0xff,0x00,0x14,0xe7,0xf5,0xa6,0x8d,0xd3,0x7d,0x35,
|
||||
0x75,0xcd,0xc0,0xdc,0x47,0x58,0x82,0x5c,0x3c,0x09,0x6e,0x33,0x3c,0x4a,0x24,0xf4,
|
||||
0x00,0xab,0x27,0x3e,0xd4,0xc2,0x8b,0x11,0x32,0xe0,0xcc,0x46,0x94,0xe4,0x82,0x19,
|
||||
0x6c,0x75,0x5b,0x98,0x4a,0x7f,0x13,0x5c,0x7b,0x75,0xaa,0xae,0x3a,0xff,0x00,0x72,
|
||||
0x6d,0x5a,0x6f,0x6e,0xa3,0x3d,0x7b,0xd4,0xaa,0x79,0x2b,0x0f,0xc6,0x25,0x2c,0x42,
|
||||
0x4a,0x48,0x2a,0x79,0xd7,0x47,0x24,0xa5,0x3e,0x9c,0xc9,0xe4,0x3a,0xd4,0x17,0xa2,
|
||||
0xf6,0x77,0x72,0xb7,0xff,0x00,0x51,0xa2,0xd1,0x69,0x6a,0x5d,0xf6,0xe4,0xb5,0x61,
|
||||
0xc4,0x38,0xe9,0x53,0x71,0xd3,0xc7,0xc2,0x56,0xea,0x87,0xca,0xda,0x41,0x0a,0xeb,
|
||||
0xcc,0xf0,0xf2,0x07,0x23,0x3a,0xf5,0xd8,0xfb,0xb2,0x9d,0xab,0xb2,0xde,0xdf,0x2a,
|
||||
0xdc,0x97,0x5b,0xb9,0x6a,0x5b,0x82,0x83,0xd7,0x4b,0x9a,0x51,0x8e,0xf1,0x5e,0x0d,
|
||||
0xa3,0xc4,0x36,0x9f,0x0f,0x3e,0xa6,0xb3,0x9c,0xf1,0x5b,0x1a,0x46,0x17,0xc9,0x3e,
|
||||
0x51,0x45,0x15,0xc6,0x74,0x85,0x14,0x51,0x40,0x05,0x55,0xfe,0xd0,0xba,0xf9,0xce,
|
||||
0xcf,0x97,0x01,0x7c,0xbc,0x69,0x89,0xd7,0xbd,0x1d,0x35,0xc2,0x57,0x76,0xb5,0x94,
|
||||
0x95,0xc2,0x75,0x47,0xee,0x3c,0xd9,0xc7,0xca,0x7c,0x16,0x0f,0x3e,0x98,0xcf,0x5b,
|
||||
0x41,0x5c,0x37,0xcb,0x24,0x0d,0x4b,0x68,0x97,0x6b,0xba,0x44,0x6a,0x7d,0xba,0x5b,
|
||||
0x6a,0x65,0xf8,0xcf,0xa4,0x29,0x0e,0x20,0x8c,0x10,0x41,0xaa,0x8c,0xb1,0x76,0x4c,
|
||||
0x96,0x48,0xa5,0x56,0xee,0xd9,0x3b,0x59,0xa9,0xec,0xb2,0x58,0x6f,0x50,0x0d,0x2d,
|
||||
0x74,0x79,0xa5,0xa1,0xa7,0x2e,0x30,0x96,0x52,0xc2,0x88,0x21,0x0b,0x3c,0x40,0x05,
|
||||
0x63,0x92,0xb1,0x9c,0x78,0x52,0x96,0xda,0x6e,0x76,0x90,0xb6,0xda,0xdd,0x8d,0x2b,
|
||||
0x77,0xad,0x5a,0xad,0xe7,0x5c,0xef,0x10,0xfc,0x97,0x1b,0x65,0x4d,0x8e,0x10,0x0a,
|
||||
0x40,0x07,0x98,0xc8,0x27,0x9f,0x4c,0xe3,0xa5,0x32,0x77,0xa7,0xe1,0x76,0x65,0x4b,
|
||||
0x95,0x73,0xdb,0x6b,0xf2,0x18,0x4a,0xfe,0x64,0xd9,0x6f,0x0a,0x51,0x4a,0x7f,0x95,
|
||||
0x0f,0x0c,0x90,0x3c,0x82,0x81,0xf7,0xaa,0x21,0xaa,0xf6,0xf2,0xf9,0xa4,0x2e,0x37,
|
||||
0x08,0x17,0x6b,0x7f,0x03,0xb0,0x5e,0x5c,0x77,0xd4,0x82,0x1c,0x42,0x56,0x95,0x70,
|
||||
0xab,0x98,0xf0,0xc8,0xeb,0x5d,0x29,0xa9,0x3b,0x39,0x9c,0x69,0xee,0x6a,0x45,0xcf,
|
||||
0x77,0xf4,0x4c,0x56,0xcf,0x1e,0xad,0xb4,0xab,0x87,0xf8,0x25,0x20,0x9f,0xc8,0xd3,
|
||||
0x06,0xe7,0xda,0x0f,0x44,0x7d,0xa1,0x48,0x4d,0xcd,0x0e,0x0c,0xff,0x00,0xdc,0x4f,
|
||||
0x43,0xf5,0xac,0xcc,0x30,0x1b,0xea,0x1b,0x4e,0x09,0xea,0x12,0x2b,0xe5,0x71,0x50,
|
||||
0x79,0x84,0x0e,0x5e,0x95,0xa5,0x3e,0x84,0x69,0x2a,0xf7,0xcf,0x44,0xbc,0x33,0xfb,
|
||||
0x4e,0x3a,0x4f,0xf3,0xba,0x69,0x12,0xe5,0xbc,0xfa,0x31,0xc2,0x4a,0x6e,0x70,0xb0,
|
||||
0x7a,0x9e,0xfb,0x15,0x9f,0x08,0x8e,0x85,0x27,0x9a,0x46,0x7d,0x2b,0xe7,0xec,0x8d,
|
||||
0x92,0x07,0x00,0x3f,0x4a,0x6a,0xc5,0x45,0xf3,0x7f,0x72,0xf4,0xb4,0xb1,0xf2,0x5d,
|
||||
0xe0,0xe0,0xf9,0xc8,0x02,0x93,0xe4,0xeb,0xab,0x09,0x4f,0xcb,0x78,0x82,0x07,0xa4,
|
||||
0x94,0xff,0x00,0xf6,0xa8,0xda,0xa1,0x35,0xfd,0xd2,0x4f,0xfb,0x6b,0xc9,0x70,0x9a,
|
||||
0x07,0x3d,0xca,0x39,0x7f,0x28,0xa7,0xb8,0x51,0x73,0x26,0xee,0x16,0x9b,0x64,0x10,
|
||||
0xe5,0xee,0x02,0x47,0x8f,0xf6,0x81,0xff,0x00,0xda,0x6d,0xcf,0xdc,0xed,0x1a,0xa5,
|
||||
0x80,0xe6,0xa0,0x82,0x02,0x7f,0x75,0x2e,0xe6,0xaa,0xc3,0x30,0x92,0xe8,0x77,0x87,
|
||||
0xba,0x6f,0xbb,0x47,0x1f,0xce,0x40,0xe2,0xe6,0x06,0x07,0x99,0xe7,0xf9,0x1a,0xf7,
|
||||
0xb4,0xbf,0x1a,0x04,0xf4,0xbd,0x32,0x02,0x2e,0x4c,0x00,0x41,0x8e,0xb5,0xa9,0x00,
|
||||
0x9f,0x03,0x94,0xf3,0xe5,0x49,0x95,0x45,0x96,0x67,0x7b,0xf4,0x55,0xac,0xb9,0xc3,
|
||||
0x32,0x24,0xd2,0xac,0x60,0xa9,0x95,0xb9,0xc3,0xec,0x07,0x2f,0xc7,0x35,0xc7,0x73,
|
||||
0xed,0x1f,0xa6,0x9f,0x8e,0xa6,0x12,0x94,0x94,0x1f,0x06,0x2d,0x49,0x42,0xbe,0x8b,
|
||||
0xe0,0x07,0xf3,0xa8,0x16,0x05,0xfe,0x1d,0xbe,0xe1,0x36,0x48,0xd3,0xd6,0xf9,0x2c,
|
||||
0xbe,0x41,0x6e,0x3c,0x9e,0x35,0xa1,0x8c,0x67,0x92,0x79,0xe4,0xf5,0xf1,0xf2,0xae,
|
||||
0x58,0x17,0x75,0x5b,0x98,0x98,0xd2,0x21,0xc3,0x73,0xed,0x23,0x05,0x6f,0x34,0x16,
|
||||
0xa6,0xc7,0xf2,0x13,0xf7,0x69,0x6f,0xe0,0x52,0x25,0xd9,0x9b,0xfb,0x64,0x57,0x10,
|
||||
0x6a,0xdd,0x39,0xe3,0xfe,0x54,0x27,0xf5,0x55,0x23,0x48,0xde,0xe5,0x38,0x4f,0xd9,
|
||||
0xac,0xc4,0x8f,0xf1,0xdf,0x03,0xf4,0x06,0x9b,0x36,0xd6,0xf5,0x36,0xa2,0xb3,0x47,
|
||||
0xb5,0xb3,0x66,0x99,0x3a,0xd4,0xd2,0xd2,0x95,0x18,0x16,0xe2,0xb7,0x3a,0xe7,0x1c,
|
||||
0x69,0x49,0x39,0xf7,0xa7,0x23,0x1d,0x9c,0x37,0x2e,0xf2,0xf8,0xfd,0x8d,0xb6,0xba,
|
||||
0xc1,0x4c,0x72,0x41,0xfb,0x5d,0xb1,0xd4,0x9e,0x23,0xea,0x50,0x90,0x07,0xff,0x00,
|
||||
0xb3,0x45,0xfa,0x15,0xe0,0x9d,0x3b,0x77,0x6f,0x0a,0x51,0x42,0x2d,0xd0,0xe3,0x2b,
|
||||
0xc7,0x8c,0xad,0x64,0x7f,0xc6,0x92,0x9f,0xdc,0x4d,0x41,0x27,0xac,0xa8,0xec,0x7f,
|
||||
0xa1,0x1c,0x0f,0xf9,0x15,0x54,0xb3,0x66,0xec,0x25,0xbe,0xd7,0xe7,0x12,0xb5,0x68,
|
||||
0x59,0x11,0x92,0xb5,0xf0,0x97,0x27,0x4d,0x8e,0xde,0x3d,0x48,0x2e,0x71,0x63,0xe8,
|
||||
0x6a,0x43,0xb1,0x7c,0x2f,0xf7,0x6e,0xe8,0xd2,0x1c,0x9f,0x37,0x4e,0xd9,0xc1,0x23,
|
||||
0x2d,0xbb,0x2d,0xc7,0x56,0x91,0xe3,0xf7,0x5b,0xc6,0x7d,0x33,0xf5,0xa9,0xb8,0x2e,
|
||||
0x58,0xd4,0x59,0x53,0x65,0x6a,0x1b,0xc4,0xac,0xf7,0xb7,0x69,0x58,0xff,0x00,0x0d,
|
||||
0x61,0xbf,0xf8,0x01,0x49,0x52,0x0a,0xe5,0x1c,0x3e,0xf3,0xd2,0x3f,0xd6,0x75,0x4b,
|
||||
0xfd,0x49,0xad,0x12,0xd3,0xff,0x00,0x09,0x77,0x16,0x84,0x1b,0xf6,0xe1,0xe0,0x92,
|
||||
0x0a,0xdb,0xb6,0xdb,0xf1,0x81,0xe2,0x02,0x96,0xa3,0x9f,0x7c,0x54,0xa7,0xa5,0xfe,
|
||||
0x17,0x7b,0x49,0x66,0x09,0x55,0xd2,0x4d,0xf2,0xfe,0xe0,0xe6,0x7b,0xf9,0x9d,0xca,
|
||||
0x49,0xf6,0x6c,0x0e,0x55,0x2f,0x52,0x0b,0x82,0xb0,0x66,0x4a,0x70,0x36,0xdf,0x2c,
|
||||
0x25,0x23,0xa7,0x95,0x38,0x74,0xbe,0xdb,0xea,0xbd,0x6f,0x25,0x2c,0x69,0xfd,0x35,
|
||||
0x74,0xbc,0x3a,0xa3,0x84,0x88,0x71,0x16,0xbc,0x9f,0x70,0x31,0x5b,0x61,0xa4,0xbb,
|
||||
0x26,0x6d,0x0e,0x89,0x71,0xa7,0x6d,0x5a,0x06,0xcc,0x87,0xdb,0xe6,0x97,0xdf,0x60,
|
||||
0x3c,0xbc,0xf9,0x92,0xbc,0xd4,0xa7,0x06,0xdb,0x12,0xd6,0xc7,0x73,0x0a,0x2b,0x31,
|
||||
0x19,0xfe,0xed,0x86,0xc2,0x13,0xf8,0x01,0x52,0xf5,0xbc,0x45,0x2d,0x3f,0x59,0x8f,
|
||||
0x9b,0x73,0xf0,0xda,0xde,0x2d,0x7e,0x94,0x48,0xb8,0xc1,0x87,0xa3,0xe1,0xab,0x18,
|
||||
0x37,0x97,0x48,0x77,0x1f,0xe9,0xa0,0x29,0x40,0xfb,0x81,0x56,0xa7,0x68,0xfe,0x15,
|
||||
0x3a,0x13,0x4b,0x38,0xd4,0xdd,0x71,0x78,0x99,0xab,0xe6,0xa0,0x85,0x08,0x91,0xc9,
|
||||
0x87,0x10,0x7a,0x1e,0x13,0xde,0x2b,0xdf,0x89,0x3e,0xd5,0x78,0xe8,0xac,0x9e,0xa4,
|
||||
0x99,0x6a,0x09,0x08,0x9a,0x47,0x44,0xe9,0xfd,0x03,0x67,0x6a,0xd5,0xa6,0xec,0xb0,
|
||||
0x6c,0x76,0xe6,0xc7,0xcb,0x1a,0x03,0x09,0x69,0x1e,0xe4,0x24,0x73,0x3e,0xa7,0x9d,
|
||||
0x2d,0xd1,0x45,0x66,0x58,0x51,0x45,0x14,0x00,0x51,0x45,0x14,0x00,0x51,0x45,0x14,
|
||||
0x00,0x56,0x4f,0xf6,0xd5,0xec,0xeb,0xaf,0xb6,0xd3,0x57,0xea,0x7d,0x4c,0xd2,0x15,
|
||||
0x77,0xd0,0xf7,0x99,0x8f,0xc9,0x12,0x98,0x1c,0x46,0x27,0x7c,0xa2,0xa2,0xdb,0xc3,
|
||||
0x19,0x00,0x15,0x10,0x15,0xd0,0xfe,0x55,0xac,0x15,0xcd,0x71,0xb7,0x45,0xbb,0xc1,
|
||||
0x7e,0x14,0xd8,0xed,0x4b,0x88,0xfa,0x0b,0x6e,0xb0,0xf2,0x02,0x90,0xb4,0x9e,0xa0,
|
||||
0x83,0xc8,0x8a,0x69,0xd1,0x2d,0x59,0x83,0xfb,0x7b,0x7f,0x46,0x95,0xb7,0x2e,0x23,
|
||||
0xe8,0x6f,0x84,0xba,0xa3,0xc0,0xac,0x12,0x72,0x07,0x3c,0x53,0xe0,0xdd,0x2c,0xb2,
|
||||
0x59,0x43,0xaf,0x42,0x85,0x21,0x2a,0xe6,0x4f,0x74,0x9c,0x8e,0x59,0xc1,0xe5,0xd7,
|
||||
0xad,0x5c,0x9e,0xd1,0x7f,0x0d,0x6b,0x56,0xa6,0x6a,0x75,0xe3,0x6c,0xe4,0x22,0xcd,
|
||||
0x71,0x70,0x97,0x15,0x63,0x94,0xaf,0xec,0x6e,0x9f,0x10,0xda,0xba,0xb6,0x7f,0x11,
|
||||
0xed,0x59,0xe7,0xb8,0x3a,0x23,0x59,0xed,0x05,0xe9,0xcb,0x15,0xde,0xcf,0x2e,0xd3,
|
||||
0x73,0x8e,0x38,0x97,0x12,0x6a,0x72,0x1c,0x18,0xe6,0xa6,0xd6,0x39,0x29,0x27,0x00,
|
||||
0xe4,0x12,0x3a,0xd6,0xb9,0x78,0x65,0x85,0xbd,0xc7,0x55,0xcd,0x16,0x37,0x50,0x54,
|
||||
0xdd,0xba,0x33,0x5c,0xce,0x0a,0x46,0x29,0x8b,0xaa,0xef,0x56,0xbb,0x0c,0x17,0x1c,
|
||||
0x10,0xdb,0x53,0xbd,0x10,0x90,0x4f,0x33,0xf8,0xd3,0x73,0xfa,0x7c,0xb4,0xa9,0x09,
|
||||
0x9c,0xc2,0xd8,0x56,0x70,0x49,0x1c,0x89,0xf4,0x22,0x91,0xf5,0x5b,0x12,0x75,0x0b,
|
||||
0x46,0x6b,0x2e,0xb0,0x22,0x36,0x33,0xfd,0x63,0xc1,0x27,0x1e,0x60,0x78,0xd2,0x53,
|
||||
0xbe,0x19,0x52,0xd2,0x94,0x3f,0xb2,0x17,0x74,0x74,0x88,0x97,0x16,0x1c,0x76,0xf5,
|
||||
0x71,0x54,0x75,0xac,0x15,0x21,0x09,0x01,0x28,0x6c,0x7b,0xe3,0x34,0xc0,0xd5,0x5a,
|
||||
0xd5,0xe8,0x17,0x75,0x33,0x6d,0x9a,0xf4,0x98,0xe9,0x56,0x12,0xa5,0x21,0x23,0x8c,
|
||||
0x67,0xc0,0x63,0x3c,0xeb,0xc3,0x58,0x4e,0x0c,0xd9,0x22,0x77,0x04,0x84,0xb8,0x03,
|
||||
0x79,0x1d,0x30,0x2b,0xc7,0x4c,0x14,0xaa,0x0f,0xda,0xcb,0x48,0x32,0x16,0x4b,0x69,
|
||||
0x59,0x4f,0x34,0x24,0x63,0x24,0x7a,0x9c,0xe3,0x3e,0x94,0xa5,0x27,0xc2,0x2a,0x31,
|
||||
0x4f,0x73,0x58,0xfb,0x1c,0x5d,0xbb,0x29,0xf6,0x83,0xb5,0xc4,0xb3,0x44,0xd0,0xb0,
|
||||
0xed,0x3a,0xd9,0x2c,0x20,0xc9,0xb4,0xdf,0x54,0xea,0xdd,0x7d,0x69,0x4f,0xce,0xb6,
|
||||
0x14,0xb5,0x90,0xb1,0xc8,0x9c,0x27,0x04,0x78,0x8a,0xb6,0x96,0xee,0xca,0x3b,0x3b,
|
||||
0x6a,0x5a,0xd4,0xc6,0xdb,0x69,0xc5,0x95,0x8c,0x11,0x22,0x02,0x1e,0x1f,0x40,0xb0,
|
||||
0x40,0xfa,0x56,0x1e,0x6d,0x3e,0xb3,0xb9,0xed,0x3e,0xe0,0xe9,0x9d,0x55,0x09,0xb7,
|
||||
0x13,0x3a,0xd7,0x31,0xb9,0x8d,0x26,0x40,0xe4,0xb0,0x0f,0x3e,0xbe,0x0a,0x49,0x52,
|
||||
0x7e,0xb5,0xfa,0x18,0x42,0xb8,0xd0,0x95,0x74,0xc8,0xcd,0x4d,0xbf,0x4a,0xa4,0x30,
|
||||
0xad,0xfd,0x9f,0x76,0xc2,0xd4,0xea,0x9d,0x87,0xb7,0x7a,0x56,0x3b,0x8a,0x1c,0x25,
|
||||
0x4d,0xd9,0xa3,0x82,0x47,0x97,0xdc,0xa7,0x0c,0x0d,0x05,0xa6,0x2d,0x51,0xc4,0x78,
|
||||
0x5a,0x72,0xd3,0x0d,0x80,0x4a,0x83,0x4c,0x41,0x69,0x09,0x04,0xf5,0x38,0x09,0xc5,
|
||||
0x2f,0x51,0x4a,0xc6,0x7c,0xa1,0xb4,0x34,0x90,0x94,0x24,0x21,0x20,0x60,0x04,0x8c,
|
||||
0x01,0x5f,0x54,0x51,0x48,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x9a,0xbb,0x8d,0xb5,0xba,0x57,
|
||||
0x76,0xb4,0xfb,0x96,0x6d,0x59,0x64,0x8b,0x79,0x82,0xa0,0x78,0x43,0xe8,0xf9,0xda,
|
||||
0x51,0x18,0xe2,0x6d,0x63,0xe6,0x42,0xbd,0x52,0x45,0x3a,0xa8,0xa0,0x0c,0xbf,0xed,
|
||||
0x0d,0xf0,0xca,0xbd,0xe9,0x61,0x2a,0xef,0xb7,0x4f,0x2f,0x52,0xd9,0xf9,0xad,0x56,
|
||||
0x99,0x18,0x13,0x19,0x1e,0x49,0x3d,0x1d,0xfc,0x8f,0xa1,0xaa,0x3d,0xaa,0xb4,0xd4,
|
||||
0xbb,0x0b,0x13,0x2d,0xb3,0x60,0x3b,0x0a,0x4b,0x20,0xb6,0xb8,0xef,0x34,0x5b,0x71,
|
||||
0x18,0xe5,0x8c,0x1f,0x2a,0xfd,0x10,0xd4,0x7d,0xb9,0x7b,0x05,0xa0,0x37,0x79,0xa2,
|
||||
0x35,0x56,0x98,0x83,0x73,0x7b,0x84,0xa5,0x32,0x8b,0x7c,0x0f,0xa7,0x3e,0x4b,0x4e,
|
||||
0x0d,0x5a,0x95,0x72,0x43,0x8f,0x87,0xe7,0x93,0x54,0x58,0xbe,0xd3,0xa3,0xa3,0xbb,
|
||||
0x1c,0x97,0x97,0x19,0x5c,0x4b,0x09,0x1d,0x12,0x7a,0xfe,0x1c,0xa9,0x17,0x4a,0x4b,
|
||||
0x47,0xd8,0x8b,0x7c,0x40,0x38,0xda,0x8e,0x53,0x9e,0x7c,0x27,0x9e,0x47,0xd6,0xb6,
|
||||
0x3f,0x5b,0x7c,0x27,0x36,0xce,0x7f,0xda,0xa5,0xd8,0xb5,0x1e,0xa2,0xd3,0x8a,0x21,
|
||||
0x4a,0x0c,0xb4,0xea,0x1f,0x6f,0xd8,0x85,0xa7,0x24,0x7d,0x6a,0x06,0xec,0xd9,0xf0,
|
||||
0xea,0xd2,0xba,0x87,0x7b,0xae,0x0a,0xbf,0xde,0xd5,0x73,0xb6,0x69,0xa9,0x8d,0xa9,
|
||||
0x56,0xf4,0x40,0x0d,0x26,0x69,0x1f,0x36,0x16,0x7b,0xc5,0x61,0x27,0x1c,0xc0,0x1c,
|
||||
0xfc,0xe8,0x74,0xf7,0x43,0x8d,0xad,0x99,0x07,0xf6,0x3c,0xec,0xfd,0xa9,0x7b,0x47,
|
||||
0xee,0x15,0x9e,0xdc,0x96,0x26,0x23,0x46,0xc0,0x90,0x89,0x57,0x49,0xef,0xa5,0x45,
|
||||
0x80,0xda,0x54,0x09,0x6d,0x24,0xf2,0x2b,0x5e,0x38,0x40,0x1e,0x79,0x3d,0x2b,0x73,
|
||||
0xc0,0x09,0x00,0x0e,0x40,0x57,0x15,0x96,0xc5,0x6d,0xd3,0x76,0xe6,0xa0,0x5a,0x60,
|
||||
0x46,0xb6,0x41,0x6b,0x92,0x23,0x44,0x65,0x2d,0x36,0x9f,0x64,0xa4,0x01,0x5d,0xd5,
|
||||
0x05,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,
|
||||
0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x1f,0xff,0xd9};
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,61 @@
|
|||
// JPEGDEC example for Adafruit GFX displays
|
||||
|
||||
#include "JPEGDEC.h"
|
||||
// Sample image (truncated) containing a 320x240 Exif thumbnail
|
||||
// if an image doesn't display, it may have been created using progressive, open gimp, export as a jpg, remove progressive.
|
||||
|
||||
#include "thumb_test.h"
|
||||
//#include "ncc1701.h" //http://clipart-library.com/clip-art/uss-enterprise-silhouette-11.htm
|
||||
//#include "batman.h" //http://clipart-library.com/clipart/batman-clip-art_19.htm
|
||||
|
||||
#include <M5StickC.h>
|
||||
|
||||
#define DISPLAY_WIDTH 80
|
||||
#define DISPLAY_HEIGHT 160
|
||||
|
||||
|
||||
JPEGDEC jpeg;
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
|
||||
M5.Lcd.drawBitmap((int16_t)pDraw->x, (int16_t)pDraw->y, (int16_t)pDraw->iWidth, (int16_t)pDraw->iHeight, pDraw->pPixels);
|
||||
return 1;
|
||||
} /* JPEGDraw() */
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
|
||||
Serial.println("Starting...");
|
||||
|
||||
M5.begin();
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
} /* setup() */
|
||||
|
||||
void loop() {
|
||||
int i;
|
||||
long lTime;
|
||||
int iOption[4] = {0, JPEG_SCALE_HALF, JPEG_SCALE_QUARTER, JPEG_SCALE_EIGHTH};
|
||||
int iCenterX[4] = {0,0,0,0};
|
||||
int iCenterY[4] = {0,0,0,0};
|
||||
|
||||
for (i=0; i<4; i++)
|
||||
{
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
M5.Lcd.startWrite(); // Not sharing TFT bus on PyPortal, just CS once and leave it
|
||||
if (jpeg.openFLASH((uint8_t *)thumb_test, sizeof(thumb_test), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)ncc1701, sizeof(ncc1701), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)batman, sizeof(batman), JPEGDraw))
|
||||
|
||||
{
|
||||
lTime = micros();
|
||||
if (jpeg.hasThumb()) {jpeg.decode(iCenterX[i],iCenterY[i],JPEG_EXIF_THUMBNAIL | iOption[i]); } else { jpeg.decode(iCenterX[i],iCenterY[i], iOption[i]); }
|
||||
{
|
||||
lTime = micros() - lTime;
|
||||
Serial.printf("%d x %d image, decode time = %d us\n", jpeg.getWidth() >> i, jpeg.getHeight() >> i, (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
delay(2000); // pause between images
|
||||
} // for i
|
||||
} /* loop() */
|
|
@ -0,0 +1,845 @@
|
|||
//
|
||||
// batman-5
|
||||
// Data size = 13342 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 240, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t batman[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x47,
|
||||
0x00,0x47,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0xf0,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1e,0x00,0x01,0x00,0x02,0x02,0x03,0x01,0x01,0x01,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x09,0x06,0x07,0x04,0x05,0x0a,0x03,0x01,
|
||||
0x02,0xff,0xc4,0x00,0x49,0x10,0x00,0x01,0x03,0x03,0x03,0x02,0x04,0x03,0x05,0x04,
|
||||
0x05,0x0a,0x04,0x07,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x06,0x07,0x08,0x11,
|
||||
0x12,0x21,0x09,0x13,0x31,0x41,0x14,0x22,0x51,0x15,0x23,0x61,0x71,0x81,0x32,0x42,
|
||||
0x52,0x62,0x24,0x33,0x82,0x91,0x92,0x16,0x17,0x18,0x53,0x63,0x72,0xa1,0xb1,0xb2,
|
||||
0xc1,0x73,0x93,0xa2,0xc2,0x19,0x34,0x43,0x44,0x83,0x84,0xc3,0xff,0xc4,0x00,0x1c,
|
||||
0x01,0x01,0x00,0x01,0x05,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x03,0x01,0x04,0x05,0x06,0x07,0x02,0x08,0xff,0xc4,0x00,0x38,0x11,0x00,
|
||||
0x01,0x03,0x02,0x05,0x01,0x06,0x03,0x06,0x06,0x03,0x01,0x00,0x00,0x00,0x00,0x01,
|
||||
0x00,0x02,0x03,0x04,0x11,0x05,0x06,0x12,0x21,0x31,0x51,0x13,0x22,0x41,0x61,0x71,
|
||||
0x81,0x07,0x32,0x91,0x15,0x42,0x62,0x92,0xa1,0xb1,0x14,0x23,0x52,0x72,0x82,0xa2,
|
||||
0x33,0xb2,0xc1,0xf0,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,
|
||||
0x3f,0x00,0xb5,0x3a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,
|
||||
0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,
|
||||
0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,
|
||||
0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,
|
||||
0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0xa2,0xae,0xf8,
|
||||
0x37,0xe7,0x8d,0x6d,0x27,0x1e,0x36,0xd8,0x69,0x66,0xff,0x00,0xa8,0xd3,0xd8,0x2b,
|
||||
0xb7,0xd9,0x4a,0x8f,0x97,0x1d,0x27,0x90,0x24,0x49,0x20,0x82,0x96,0xc1,0x1d,0x92,
|
||||
0x08,0x52,0xc8,0xe0,0x70,0x3a,0x94,0x92,0x29,0x55,0x4a,0xf3,0xf3,0xa5,0x5e,0x23,
|
||||
0xba,0xd3,0xa6,0xda,0xbb,0x71,0xce,0x66,0xe4,0x6f,0xe5,0x48,0xbb,0xbc,0x17,0x75,
|
||||
0xb2,0x5d,0x1c,0x26,0x1c,0x84,0x03,0xd9,0x2d,0x20,0x76,0x8e,0x52,0x3b,0x25,0x4d,
|
||||
0x81,0xc7,0x60,0x42,0x87,0x29,0x37,0x13,0xb5,0xfd,0xec,0xe9,0xa6,0xea,0xad,0x4d,
|
||||
0x8c,0x6e,0xe8,0x2d,0xb9,0x3a,0x1a,0x2e,0x4b,0xc6,0x6e,0x4a,0x4a,0x26,0xb3,0xc1,
|
||||
0xe1,0x4a,0x48,0xe7,0x87,0x5b,0xf4,0x3d,0x68,0x27,0x80,0xa1,0xd4,0x12,0x4f,0x48,
|
||||
0x22,0xdf,0xb4,0xa5,0x28,0x89,0x4a,0x56,0xa2,0xdc,0xd6,0xe0,0xa0,0xed,0xab,0x0a,
|
||||
0xb2,0xe5,0xd7,0x68,0xe1,0xfb,0x23,0xb7,0xc8,0x96,0xdb,0x82,0x81,0x3d,0x4c,0xb0,
|
||||
0xf7,0x52,0x54,0xf2,0x78,0xe7,0x92,0x8e,0x02,0xf8,0xe3,0xe6,0x09,0x29,0xec,0x48,
|
||||
0x20,0x8b,0x6e,0xd2,0xb5,0xde,0x79,0xb8,0x9d,0x2f,0xd3,0x06,0x63,0x39,0x95,0xea,
|
||||
0x06,0x39,0x62,0x32,0x99,0x4c,0x88,0xed,0x4b,0xb9,0x34,0x97,0x5f,0x69,0x43,0x94,
|
||||
0xb8,0xdb,0x7d,0x5d,0x4b,0x49,0x1f,0xbc,0x90,0x47,0x7a,0xc5,0xac,0x7b,0xdb,0xd0,
|
||||
0x4c,0x86,0x40,0x62,0x26,0xad,0xe2,0x69,0x70,0x9e,0x00,0x97,0x72,0x6e,0x30,0x27,
|
||||
0xe8,0x0b,0xa5,0x22,0x88,0xb7,0x6d,0x2b,0x52,0xe8,0xc6,0xe2,0xf1,0xfd,0x72,0xcd,
|
||||
0x75,0x22,0xcb,0x8e,0x2d,0xb9,0x50,0xf0,0xdb,0x83,0x36,0xc5,0xcf,0x69,0xd0,0xe2,
|
||||
0x25,0x3a,0xa6,0xca,0x96,0xb4,0x11,0xdb,0xa5,0x2b,0x0a,0x6c,0x7a,0xf2,0x5b,0x51,
|
||||
0xe7,0x82,0x2b,0x6d,0x51,0x12,0x94,0xa5,0x11,0x29,0x51,0xd3,0x74,0xdb,0xec,0xd3,
|
||||
0x3d,0xab,0x5b,0xdf,0x8f,0x79,0xb8,0x0b,0xee,0x5f,0xd0,0x15,0x1f,0x17,0xb6,0x38,
|
||||
0x15,0x29,0x44,0x8e,0x52,0x5e,0x3d,0xc3,0x08,0x3c,0x83,0xd4,0xbe,0xe4,0x77,0x4a,
|
||||
0x55,0xe9,0x55,0x05,0x9d,0x78,0x8f,0xeb,0x7e,0x67,0xac,0xb0,0x35,0x05,0x8c,0x9d,
|
||||
0xcb,0x12,0xed,0xab,0xe2,0x05,0x86,0xde,0xa5,0x26,0xda,0xd3,0x24,0x82,0xa6,0x9c,
|
||||
0x68,0x9f,0xbe,0xeb,0xe3,0xe6,0x52,0xf9,0x51,0xed,0xc1,0x48,0x4a,0x42,0x48,0xbd,
|
||||
0x04,0x52,0xa3,0x3e,0xca,0xf7,0xc7,0x8a,0x6e,0xef,0x15,0x2d,0x37,0xe5,0x58,0xf3,
|
||||
0xdb,0x73,0x21,0x77,0x5c,0x79,0x4b,0xe4,0xf4,0x8e,0x01,0x91,0x1c,0x9f,0xdb,0x64,
|
||||
0xa9,0x40,0x7f,0x12,0x09,0x01,0x5e,0xa9,0x52,0xe4,0xc5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xad,
|
||||
0x05,0xbc,0xed,0xd9,0xd9,0x36,0x91,0xa5,0x0e,0xdf,0xa5,0xa5,0xa9,0xf9,0x35,0xc7,
|
||||
0xae,0x35,0x8a,0xd0,0xb5,0x11,0xf1,0x52,0x00,0x1c,0xad,0x5c,0x77,0x0d,0x36,0x14,
|
||||
0x95,0x2c,0xf6,0xf5,0x4a,0x41,0x05,0x69,0xa2,0x2c,0x1b,0x7f,0x1b,0xec,0xb4,0xed,
|
||||
0x3f,0x11,0xfb,0x22,0xcc,0xa6,0x2e,0x9a,0x95,0x76,0x60,0x9b,0x7d,0xbd,0x47,0xa9,
|
||||
0x10,0x9b,0x3c,0x8f,0x8a,0x7c,0x7f,0x08,0x23,0xe5,0x41,0xee,0xb2,0x0f,0xb0,0x51,
|
||||
0x14,0xdb,0x61,0xd1,0xad,0x69,0xdc,0xee,0x55,0x3b,0x22,0x83,0x8c,0x5f,0xf2,0xeb,
|
||||
0x9d,0xdd,0xe5,0x4a,0x93,0x7b,0x90,0xc9,0x6d,0x87,0x5c,0x57,0x72,0x4c,0x87,0x3a,
|
||||
0x5a,0x1f,0x82,0x7a,0x87,0x00,0x70,0x07,0x02,0xb9,0x38,0x46,0xb8,0x67,0x39,0x56,
|
||||
0xb3,0x4f,0xc8,0x95,0x61,0xb3,0xea,0x26,0xa4,0x65,0x33,0x1b,0x6e,0x34,0xbc,0x82,
|
||||
0x07,0xc6,0xb8,0xd4,0x85,0x2b,0x84,0x79,0x0c,0xa9,0x41,0x94,0x9f,0xd8,0x4a,0x7a,
|
||||
0x90,0x42,0x12,0x84,0x84,0xf4,0x00,0x79,0xbc,0x7d,0x2d,0xb4,0xe5,0x36,0x4d,0x3f,
|
||||
0xb2,0x43,0xcd,0xaf,0x8d,0xe4,0x59,0x5a,0x18,0xea,0xb8,0xdc,0x19,0x61,0xb6,0x1a,
|
||||
0x5b,0xca,0x25,0x45,0x28,0x42,0x12,0x91,0xd0,0x8e,0x7a,0x01,0xe9,0x04,0x84,0x82,
|
||||
0x7b,0x93,0x5c,0xb7,0x39,0xe6,0xfa,0x8c,0xb2,0xd6,0x36,0x18,0x9a,0xe7,0x3f,0x8d,
|
||||
0x4e,0x37,0xf3,0x3a,0x40,0xe0,0x71,0x72,0xe0,0x6f,0xc0,0x22,0xe4,0x5c,0x45,0x10,
|
||||
0x93,0x92,0xa9,0xd1,0xdf,0x0c,0xcd,0xc1,0x37,0x13,0xce,0x18,0x8c,0x47,0x17,0xc7,
|
||||
0x3e,0x42,0x6f,0x11,0x3a,0xff,0x00,0xe2,0xe0,0x1f,0xf1,0xad,0x0b,0x95,0xe1,0x99,
|
||||
0x9e,0x8b,0x65,0xe9,0x83,0x7d,0xb6,0x5d,0x71,0x1c,0x8a,0x12,0xc3,0xad,0x79,0xc9,
|
||||
0x5c,0x77,0x90,0x41,0xec,0xe3,0x4b,0x1c,0x72,0x39,0x1d,0x96,0x82,0x41,0xf6,0x35,
|
||||
0xe8,0xbe,0xa3,0xbe,0xfd,0x34,0x72,0xc9,0xab,0x5b,0x6d,0xcb,0x9e,0xb8,0x45,0x42,
|
||||
0xae,0xb8,0xe4,0x07,0xef,0x56,0xc9,0xc1,0x3f,0x7b,0x1d,0xc6,0x51,0xe6,0x38,0x90,
|
||||
0x7f,0x85,0xc4,0x20,0xa5,0x43,0xd0,0xf6,0x3c,0x72,0x94,0x91,0xcf,0xb0,0x3f,0x8a,
|
||||
0x35,0xb3,0xd7,0x47,0x4f,0x89,0x44,0xcd,0x0f,0x20,0x5d,0xa0,0x82,0xdb,0x9b,0x5f,
|
||||
0x72,0x6e,0x3a,0xf0,0x7f,0x65,0x33,0xe9,0xc0,0x17,0x69,0x50,0x8f,0x6f,0x3e,0x2f,
|
||||
0x7a,0x9d,0xa6,0x2c,0x47,0xb5,0x67,0xf0,0xda,0xd4,0x9b,0x2b,0x69,0x4b,0x68,0x94,
|
||||
0xfb,0xa2,0x35,0xc9,0xa4,0x8e,0x07,0x77,0x82,0x48,0x77,0xb0,0x3f,0xd6,0x24,0xa9,
|
||||
0x47,0xd5,0x75,0x62,0xda,0x35,0xe2,0x3d,0xa0,0xda,0xd2,0xa6,0x63,0x43,0xcc,0x5a,
|
||||
0xc6,0x2e,0xce,0x27,0xab,0xec,0xcc,0xa1,0x22,0x03,0x80,0xf3,0xc7,0x48,0x71,0x44,
|
||||
0xb2,0xa5,0x7f,0x2a,0x1c,0x51,0x3f,0x4a,0xa0,0xf9,0x98,0x65,0xd2,0x0e,0x15,0x6a,
|
||||
0xca,0x9e,0x64,0x26,0xd1,0x72,0x9d,0x2a,0xdf,0x1d,0xce,0x7b,0x97,0x63,0xa1,0x85,
|
||||
0xb9,0xc8,0xfa,0x71,0x25,0xbe,0x0f,0xb9,0x0a,0xfa,0x57,0x47,0x5f,0x48,0x31,0xed,
|
||||
0x90,0x5d,0x86,0xfc,0x8f,0x70,0x6c,0x7e,0x85,0x58,0xaf,0x54,0x51,0x25,0xb1,0x3e,
|
||||
0x33,0x72,0x23,0x3c,0xdc,0x98,0xee,0x0e,0xa4,0x3a,0xd2,0xc2,0x90,0xa1,0xf5,0x04,
|
||||
0x76,0x22,0xa0,0xc7,0x8c,0xac,0xaf,0x87,0xda,0x4c,0x06,0xf9,0xe3,0xcf,0xca,0x21,
|
||||
0xb7,0xf9,0xfd,0xcc,0x95,0x7f,0xed,0xaa,0x78,0xd3,0xdd,0x6b,0xcf,0xf4,0x99,0x6e,
|
||||
0x1c,0x33,0x34,0xbf,0x62,0xe9,0x75,0x41,0x6e,0xb5,0x6a,0xb8,0x3a,0xc3,0x6e,0x91,
|
||||
0xe8,0x56,0x84,0xa8,0x25,0x5f,0xa8,0x35,0x98,0xea,0xc6,0xf0,0xb5,0x77,0x5c,0xf0,
|
||||
0x48,0x98,0x7e,0x77,0x98,0x3b,0x91,0xd8,0xa2,0x4d,0x6e,0xe0,0xc3,0x52,0x22,0x47,
|
||||
0x43,0x89,0x79,0x08,0x71,0x01,0x45,0xd4,0x36,0x95,0xab,0xe5,0x75,0x7d,0x94,0x48,
|
||||
0xf4,0xfa,0x57,0xb4,0x5a,0x6d,0x4b,0x52,0xcf,0x2a,0x25,0x47,0x80,0x39,0x27,0xd8,
|
||||
0x76,0x15,0xf9,0x5d,0xd5,0xa3,0x09,0xc8,0x2f,0xf6,0x1b,0xb5,0xee,0xd9,0x64,0xb8,
|
||||
0x5c,0x6d,0x16,0x8f,0x2f,0xed,0x19,0xd1,0x23,0x2d,0xd6,0x61,0xf9,0x9d,0x5e,0x59,
|
||||
0x79,0x49,0x04,0x36,0x15,0xd0,0xbe,0x0a,0xb8,0x07,0xa4,0xfd,0x2b,0x8f,0x8e,0xe3,
|
||||
0x37,0x8c,0xc2,0xf1,0x1e,0xd3,0x61,0xb5,0x4d,0xbd,0xdd,0x24,0x1e,0x96,0x60,0xdb,
|
||||
0xa3,0xae,0x43,0xee,0x1f,0xa2,0x50,0x80,0x54,0x7f,0x41,0x44,0x56,0x51,0xe0,0x7b,
|
||||
0x95,0xb7,0x17,0x33,0xd5,0x5c,0x65,0x47,0x97,0x67,0x5b,0xe0,0xdc,0x5b,0x04,0xfa,
|
||||
0x06,0x1c,0x75,0xb5,0xf0,0x3f,0xfd,0x94,0x73,0xf9,0x0a,0xb6,0x79,0xd3,0xa3,0x5b,
|
||||
0x22,0x3b,0x2a,0x64,0x86,0xa2,0x45,0x69,0x3d,0x4e,0x3e,0xfa,0xc2,0x10,0x81,0xf5,
|
||||
0x2a,0x3d,0x80,0xaf,0x35,0x18,0x7e,0xa1,0x6a,0x66,0xd6,0x33,0xab,0xdb,0x76,0x1b,
|
||||
0x8c,0xfc,0x1b,0x2b,0xf8,0x75,0x5a,0xee,0x28,0x0d,0x20,0x48,0x6d,0xb5,0x29,0x0e,
|
||||
0x29,0xa5,0x05,0xa4,0xf4,0x2b,0xa9,0x08,0x27,0x8e,0x14,0x08,0xe3,0xb7,0x71,0x5d,
|
||||
0x26,0xa0,0x6b,0x0e,0x75,0xaa,0xef,0xb4,0xee,0x67,0x98,0xdf,0x32,0x95,0x34,0x4a,
|
||||
0x9a,0x17,0x6b,0x83,0xb2,0x12,0xd1,0xfe,0x44,0xad,0x44,0x23,0xfb,0x20,0x51,0x15,
|
||||
0xea,0x6b,0x3f,0x89,0x5e,0x83,0x68,0xd2,0xa4,0xc5,0x73,0x2c,0x4e,0x5d,0x78,0x65,
|
||||
0x3c,0xfd,0x9d,0x8b,0x24,0x4d,0x24,0xff,0x00,0x09,0x78,0x10,0xca,0x48,0x3e,0xa0,
|
||||
0xb9,0xc8,0xfa,0x7b,0x55,0x72,0xee,0x1f,0xc5,0xc3,0x55,0x35,0x61,0x99,0x16,0xac,
|
||||
0x25,0x96,0xf4,0xce,0xc2,0xea,0x14,0xda,0xdc,0x80,0xf1,0x7a,0xe4,0xe0,0x3d,0x89,
|
||||
0xf8,0x92,0x13,0xe5,0xf6,0xe3,0x8f,0x29,0x29,0x50,0x3c,0xfc,0xe7,0xb7,0x10,0x5a,
|
||||
0x94,0x45,0xf5,0x99,0x31,0xfb,0x84,0xa7,0xa5,0x4a,0x7d,0xc9,0x32,0x5e,0x59,0x71,
|
||||
0xc7,0x9e,0x59,0x5a,0xd6,0xa2,0x79,0x25,0x44,0xf7,0x24,0xfd,0x4d,0x7c,0xab,0xed,
|
||||
0x0a,0x2a,0xe7,0x4c,0x62,0x32,0x3b,0xad,0xe7,0x12,0xda,0x7f,0x32,0x78,0x1f,0xf3,
|
||||
0xac,0x9b,0x57,0x30,0xe4,0xe9,0xe6,0xaa,0xe6,0x38,0xba,0x09,0x2d,0x59,0x6f,0x12,
|
||||
0xed,0xe8,0x51,0x24,0xf5,0x21,0xa7,0x96,0x84,0x9e,0xff,0x00,0x50,0x90,0x6a,0x13,
|
||||
0x2b,0x04,0xa2,0x1b,0xf7,0x88,0x27,0xd8,0x58,0x1f,0xdc,0x2a,0xdb,0xc5,0x7f,0x78,
|
||||
0x2d,0xdf,0x35,0xd3,0x19,0xd6,0x9d,0x47,0xc5,0xcd,0xd2,0xca,0xab,0x6d,0xc3,0xc9,
|
||||
0x87,0x90,0x46,0x65,0x61,0x84,0x4a,0x4a,0x42,0xd4,0xcf,0x99,0xc7,0x42,0x89,0x42,
|
||||
0x87,0x53,0x67,0x9e,0xa4,0x2f,0x85,0x02,0x95,0x77,0xbd,0x7d,0x8b,0x6f,0x7e,0xc7,
|
||||
0xbb,0xac,0x1d,0x4c,0xcb,0x11,0xec,0xfa,0x87,0x69,0x69,0x3f,0x6b,0xd9,0x90,0xae,
|
||||
0x10,0xe8,0xf4,0xf8,0xa8,0xc0,0x92,0xa5,0x34,0xa3,0xc7,0x23,0xb9,0x6d,0x44,0x25,
|
||||
0x44,0x82,0x85,0x2f,0x45,0x6c,0x47,0x43,0xf4,0xda,0xfd,0xb4,0xb9,0x96,0x98,0xd7,
|
||||
0x57,0x73,0xac,0x67,0x2d,0x77,0xcf,0xbb,0x5b,0xee,0x4d,0x25,0xb1,0x0e,0x58,0x69,
|
||||
0xb4,0x3a,0xc8,0x42,0x4f,0x28,0x5a,0x14,0x84,0x90,0xbe,0x79,0x3c,0x36,0xb4,0x9e,
|
||||
0x3a,0x49,0x83,0x3a,0xe5,0xa3,0x99,0xdf,0x87,0x9e,0xbe,0xd9,0xf2,0x7c,0x4a,0xe7,
|
||||
0x24,0x5b,0x04,0x85,0x4a,0xb0,0x5e,0xf8,0xe4,0x38,0x80,0x7e,0x78,0xb2,0x40,0xe0,
|
||||
0x15,0x74,0x9e,0x95,0xa7,0xd1,0x69,0x57,0x23,0x8e,0x4a,0x53,0xa3,0x61,0x19,0xc2,
|
||||
0x8f,0x13,0xc4,0xe7,0xc2,0x5c,0x34,0x48,0xc2,0x43,0x6f,0x71,0xa8,0x0e,0x76,0x36,
|
||||
0x21,0xc3,0x7b,0x8e,0x9b,0x8f,0x1b,0x4a,0xe8,0x8b,0x5a,0x1c,0xaf,0xf6,0x95,0xa4,
|
||||
0x76,0x8d,0xba,0x6c,0x7b,0x76,0x1a,0x51,0x13,0x27,0xb4,0x94,0x43,0xbc,0xc7,0xe9,
|
||||
0x8f,0x7a,0xb3,0x95,0x82,0xe4,0x19,0x3c,0x77,0x1c,0x73,0xc9,0x6d,0x7c,0x15,0x21,
|
||||
0x7e,0xe3,0xb1,0xe1,0x49,0x50,0x1b,0xba,0xb7,0xf5,0x0a,0x52,0x94,0xa2,0x25,0x29,
|
||||
0x4a,0x22,0x52,0x94,0xa2,0x25,0x29,0x4a,0x22,0xc6,0x35,0x37,0x52,0x2c,0x3a,0x43,
|
||||
0x80,0xdf,0x33,0x2c,0x9e,0x62,0x60,0x58,0xac,0xd1,0x95,0x26,0x4b,0xc7,0x8e,0x48,
|
||||
0x1d,0x92,0x84,0x82,0x47,0x52,0xd4,0xa2,0x94,0x25,0x3e,0xea,0x52,0x47,0xbd,0x79,
|
||||
0xd8,0xdd,0x0e,0xe3,0xb2,0x2d,0xd1,0x6a,0xe5,0xd3,0x34,0xbf,0x28,0xb2,0xca,0xc9,
|
||||
0x8f,0x6c,0xb6,0xa5,0x5c,0xb7,0x02,0x22,0x54,0x4b,0x6d,0x27,0xea,0x7b,0x95,0x29,
|
||||
0x5f,0xbc,0xa5,0x28,0xf0,0x01,0x00,0x4a,0xaf,0x16,0x6d,0xdd,0xab,0x55,0x35,0x14,
|
||||
0x69,0x46,0x35,0x31,0x47,0x14,0xc5,0x24,0xab,0xed,0x37,0x1b,0xe3,0xa6,0x6d,0xcd,
|
||||
0x3c,0xa5,0x43,0x9f,0x52,0x86,0x41,0x52,0x07,0xa7,0xce,0x5c,0xe4,0x10,0x94,0x1a,
|
||||
0xd5,0xbe,0x1e,0x9b,0x50,0xff,0x00,0x48,0x4d,0x4c,0x37,0xec,0x82,0x19,0x73,0x04,
|
||||
0xc7,0x1c,0x43,0xb3,0x12,0xe2,0x0f,0x97,0x3e,0x47,0xab,0x71,0x41,0xf4,0x23,0xd1,
|
||||
0x6b,0xf5,0xf9,0x78,0x07,0x8f,0x30,0x1a,0xc5,0x62,0x98,0x95,0x3e,0x11,0x47,0x25,
|
||||
0x75,0x51,0xb3,0x18,0x2f,0xeb,0xd0,0x0f,0x32,0x76,0x0b,0xd3,0x5a,0x5c,0x6c,0x14,
|
||||
0xae,0xf0,0xc8,0xda,0x18,0xc0,0xb1,0xd6,0x35,0x67,0x2b,0x87,0xd3,0x91,0xdd,0xd8,
|
||||
0x3f,0x62,0xc5,0x75,0x24,0x2a,0x14,0x35,0x8e,0x0b,0xc4,0x1f,0x47,0x1d,0x07,0xb7,
|
||||
0xd1,0xb2,0x3b,0xfc,0xea,0x02,0x46,0xee,0xdf,0x73,0x56,0xad,0xaf,0x69,0x6b,0xf7,
|
||||
0xe7,0xd0,0xd4,0xdc,0x86,0x69,0x54,0x5b,0x2d,0xb1,0xc2,0x78,0x91,0x23,0x8e,0x7a,
|
||||
0x97,0xc7,0x07,0xcb,0x40,0x21,0x4a,0x20,0x8f,0x64,0x82,0x0a,0x85,0x6e,0x69,0x93,
|
||||
0x22,0xda,0x60,0x3f,0x2e,0x53,0xcd,0x43,0x85,0x19,0xa5,0x3a,0xeb,0xce,0xa8,0x21,
|
||||
0xb6,0x9b,0x48,0xe5,0x4a,0x24,0xf6,0x00,0x00,0x4f,0x3e,0xc0,0x55,0x13,0x6e,0xa7,
|
||||
0x5c,0x2f,0x5b,0xb6,0xd7,0xe9,0x13,0x6d,0x31,0xa5,0xcf,0x81,0xe7,0x0b,0x56,0x39,
|
||||
0x6b,0x8e,0xd2,0x96,0xe2,0x98,0x0a,0x21,0x1c,0x36,0x07,0x25,0xc7,0x14,0x4a,0xc8,
|
||||
0xe3,0x9e,0x54,0x13,0xe8,0x91,0x5f,0x2f,0xe0,0x74,0x53,0xe7,0xec,0x7a,0x4c,0x43,
|
||||
0x11,0xff,0x00,0x85,0x9b,0xbb,0xa0,0x1f,0x75,0x80,0xf8,0x0e,0x6e,0x7a,0x02,0x79,
|
||||
0x2b,0x20,0xf2,0x21,0x65,0x9b,0xca,0xb2,0xff,0x00,0x0f,0x5d,0xd3,0x65,0x9b,0x9a,
|
||||
0xc2,0xb2,0x97,0x33,0x08,0x91,0x05,0xca,0xc9,0x35,0xa6,0xd1,0x3e,0x0b,0x45,0x96,
|
||||
0xe4,0x36,0xea,0x14,0xa0,0x92,0x8e,0x48,0xeb,0x41,0x41,0xe4,0x8e,0x01,0x0b,0x47,
|
||||
0x6e,0x41,0x2a,0xd8,0x5b,0xd9,0xcd,0xe1,0xe0,0x3b,0x57,0xd4,0x79,0xd2,0xdd,0x4b,
|
||||
0x66,0x5d,0xa5,0xdb,0x5b,0x08,0x24,0x75,0x38,0xec,0x91,0xe4,0x25,0x29,0x1e,0xff,
|
||||
0x00,0xd6,0x15,0x1e,0x3d,0x92,0xa3,0xed,0x5f,0xce,0xcc,0xf6,0xfd,0xfe,0x8d,0xfa,
|
||||
0x15,0x68,0xc6,0xa5,0x86,0xd5,0x7f,0x94,0xb5,0x5c,0xaf,0x0e,0x34,0x79,0x06,0x53,
|
||||
0x81,0x3c,0xa0,0x1e,0x4f,0x21,0x08,0x4a,0x1b,0xe4,0x76,0x3d,0x05,0x5f,0xbd,0x51,
|
||||
0x5f,0x76,0xfa,0x84,0xce,0xea,0xf7,0x5b,0x80,0x6d,0xfa,0xc6,0xe1,0x9d,0x8d,0x5a,
|
||||
0xae,0xe1,0xfc,0x89,0x6c,0x2b,0x80,0xeb,0xcd,0xa5,0x4a,0x7d,0x01,0x7e,0xde,0x4b,
|
||||
0x29,0x75,0x3c,0x8f,0xdf,0x5a,0x87,0x72,0x91,0x58,0xc8,0x28,0xe8,0xb1,0x4c,0xd1,
|
||||
0x2c,0xd4,0x2d,0xd3,0x49,0x13,0x8c,0x84,0x8e,0x03,0x23,0xdc,0x91,0xd3,0x51,0x1b,
|
||||
0x7a,0xf9,0x2f,0x44,0x96,0xc7,0x63,0xc9,0x59,0x4d,0x83,0x62,0x09,0xd5,0x1d,0x8a,
|
||||
0xe9,0xb6,0x10,0xed,0xd1,0x8b,0x16,0x44,0x87,0x91,0x92,0x2a,0xe2,0xe4,0x62,0xef,
|
||||
0x42,0xa4,0xa5,0x6b,0x5b,0x2a,0x4f,0x20,0xf6,0x6d,0xd6,0xd2,0x7b,0xfe,0xd3,0x20,
|
||||
0xfa,0x56,0x9f,0xb3,0x78,0x45,0x65,0x96,0xcd,0x4c,0xc7,0x5b,0xba,0x64,0xd6,0x9b,
|
||||
0xd6,0x0e,0xa9,0x49,0x55,0xce,0x44,0x5f,0x31,0x89,0x69,0x65,0x20,0xa9,0x48,0x0d,
|
||||
0x91,0xc7,0xcf,0xc0,0x40,0x52,0x56,0x48,0x2a,0xe4,0x8e,0x05,0x5a,0x24,0xfb,0x95,
|
||||
0xbb,0x1e,0x80,0x1f,0x9b,0x2a,0x2d,0xb2,0x0b,0x65,0x0d,0x07,0x1f,0x71,0x2c,0xb4,
|
||||
0x92,0x48,0x4a,0x13,0xc9,0x20,0x0e,0x49,0x00,0x0f,0xa9,0x00,0x57,0x34,0x0e,0x48,
|
||||
0x15,0x69,0x06,0x7b,0xc7,0x69,0x3b,0x6e,0xc2,0x4b,0x32,0x47,0x3d,0xd6,0x20,0x1b,
|
||||
0x17,0x6e,0x6c,0x6d,0x7d,0xaf,0x71,0xbd,0x87,0x45,0x53,0x13,0x0d,0xae,0x17,0x9e,
|
||||
0x6d,0xc4,0xc5,0x89,0x07,0x5f,0x35,0x1e,0x2c,0x08,0xcd,0x43,0x82,0xc6,0x45,0x3d,
|
||||
0x96,0x23,0xb0,0x90,0x96,0xda,0x6d,0x32,0x16,0x94,0xa1,0x20,0x7a,0x00,0x00,0x00,
|
||||
0x7e,0x15,0xaf,0x6b,0x2f,0xd6,0x2b,0xa2,0x6f,0x7a,0xb9,0x9b,0xdc,0x50,0x79,0x44,
|
||||
0xbb,0xe4,0xe9,0x09,0x20,0xf3,0xd9,0x52,0x16,0xa1,0xff,0x00,0x3a,0xc4,0x2b,0xec,
|
||||
0x6a,0x16,0x96,0xd2,0xc4,0xd7,0x72,0x1a,0xdf,0xd8,0x2c,0x59,0xe4,0xab,0x65,0xdb,
|
||||
0xfe,0xcf,0x6f,0x98,0xbd,0x82,0xdf,0xa8,0x7a,0x0b,0xaa,0xb7,0x6d,0x32,0xba,0x5f,
|
||||
0x6d,0x4d,0x33,0x75,0xb2,0xde,0x60,0x31,0x74,0x6d,0x2e,0x29,0x29,0x5f,0x48,0x2a,
|
||||
0x00,0x74,0x82,0x42,0x9b,0x59,0x42,0x89,0x42,0xd2,0xb4,0xab,0xa5,0x7d,0xf5,0x46,
|
||||
0x8e,0x78,0x78,0x6e,0x1f,0x01,0xd6,0xab,0x85,0xdd,0x8c,0xea,0x3e,0x0d,0xe4,0xa1,
|
||||
0x7d,0x59,0x9d,0xbe,0x59,0x92,0xa9,0xc1,0xd3,0xf3,0x25,0x2d,0x12,0x95,0xa8,0x93,
|
||||
0xc1,0x50,0x77,0xa0,0x72,0x01,0x04,0x90,0x2b,0xbb,0xf0,0xfc,0xde,0xae,0x35,0x3b,
|
||||
0x0d,0x46,0x8e,0x6a,0xe4,0xc8,0x4c,0xc3,0x65,0x01,0xab,0x35,0xd2,0xee,0x52,0x22,
|
||||
0xba,0xc2,0x7b,0x88,0x8f,0xad,0x5d,0x90,0x51,0xd2,0x0b,0x6b,0x51,0xe0,0x8e,0x13,
|
||||
0xc8,0x29,0x40,0x54,0x97,0xb9,0xce,0xd1,0x7d,0x14,0x7e,0xf9,0x9a,0xe4,0x19,0x46,
|
||||
0x19,0x77,0x89,0x6e,0x6d,0x57,0x0b,0x4d,0xbc,0x79,0x6f,0xcf,0x61,0x69,0x3d,0x6d,
|
||||
0x86,0x54,0xb7,0xdc,0x2b,0x73,0x90,0x12,0x85,0x36,0x86,0xcf,0x7e,0x49,0x3e,0xa2,
|
||||
0xd9,0xd2,0xcd,0x1b,0x8b,0x09,0xf4,0xd9,0x65,0x1b,0x14,0x32,0x34,0x3c,0x7b,0xee,
|
||||
0xaa,0x7b,0x75,0xfa,0x5e,0xbd,0x21,0xd7,0x0b,0xfe,0x3e,0xed,0xd6,0xe1,0x7c,0x90,
|
||||
0x92,0x99,0x0f,0x5d,0x2e,0xce,0xa5,0x52,0xe6,0x3a,0xb1,0xcb,0x92,0x1c,0x00,0x92,
|
||||
0x9f,0x31,0x7d,0x4e,0x24,0x29,0x4a,0x51,0x42,0xd0,0xa2,0xa3,0xd5,0xcd,0x6a,0x0a,
|
||||
0xcb,0xb5,0x5b,0x51,0x2e,0xfa,0xc7,0xa8,0xd9,0x36,0x6d,0x77,0x47,0xf4,0xeb,0xbc,
|
||||
0xc5,0xcb,0x79,0x0d,0xf2,0x50,0xc2,0x54,0x78,0x43,0x69,0x27,0xbf,0x4a,0x12,0x12,
|
||||
0x81,0xcf,0x7e,0x12,0x2b,0x11,0xac,0x9b,0x2f,0xa4,0x03,0xca,0xc6,0x3a,0xc5,0xc6,
|
||||
0xdc,0x2c,0x92,0xdb,0x87,0xb9,0x71,0xd3,0xbb,0xfe,0x4c,0x8e,0xb2,0x8b,0x55,0xc6,
|
||||
0x04,0x15,0x81,0xfb,0x3c,0x48,0x6e,0x52,0x81,0x3f,0x8f,0x31,0x87,0x1f,0x99,0xae,
|
||||
0x8a,0x4d,0xbe,0x4c,0x36,0x22,0x3c,0xfb,0x0e,0x32,0xd4,0xb6,0xcb,0xd1,0xd6,0xb4,
|
||||
0x90,0x1d,0x40,0x5a,0x90,0x54,0x93,0xee,0x3a,0x90,0xb4,0xf3,0xf5,0x49,0x1e,0xd5,
|
||||
0x28,0x74,0xff,0x00,0x4d,0x5e,0xff,0x00,0xe1,0xe1,0xaa,0xd9,0x83,0x8c,0xa9,0x28,
|
||||
0x7b,0x27,0xb6,0x21,0xa5,0x29,0x3c,0x75,0x25,0x82,0x1b,0xea,0x1f,0x51,0xd5,0x39,
|
||||
0x49,0xe7,0xea,0x08,0xf6,0xa9,0x39,0xb0,0xcd,0xbe,0x60,0x3b,0x8b,0xdb,0x36,0x2e,
|
||||
0xf6,0x6f,0x66,0x17,0x55,0xe2,0x99,0x24,0xff,0x00,0x85,0x48,0x70,0xa0,0x3a,0x85,
|
||||
0xa1,0x0b,0x2c,0xba,0x47,0x75,0x35,0xd6,0xe2,0x57,0xd2,0x08,0xf9,0x90,0x3d,0x8a,
|
||||
0x92,0xad,0x13,0x11,0xcd,0x50,0xe1,0x50,0xcf,0x57,0x33,0x4b,0xa3,0x8e,0x5e,0xcc,
|
||||
0xdb,0x91,0xfc,0xb0,0x76,0xff,0x00,0x23,0x6e,0x47,0x2a,0x46,0xc6,0x5c,0x40,0xf2,
|
||||
0x55,0xcd,0xa4,0x96,0xcf,0xb6,0xf5,0x57,0x0c,0xb7,0x71,0xd5,0xf1,0x77,0xa8,0x51,
|
||||
0xf8,0xfa,0xf5,0xbe,0x84,0xff,0x00,0xde,0xb7,0x27,0x88,0x76,0x1a,0xbc,0x33,0x77,
|
||||
0x59,0xdb,0x7e,0x52,0x9b,0x8d,0x72,0x75,0x8b,0xa3,0x0b,0x50,0xfe,0xb0,0x3c,0xca,
|
||||
0x14,0xb2,0x3f,0x0f,0x37,0xcd,0x4f,0xf6,0x4d,0x5d,0x76,0x3b,0x81,0x63,0x18,0x7c,
|
||||
0x66,0xe3,0xd8,0x71,0xcb,0x4d,0x92,0x3b,0x60,0x04,0x35,0x6e,0x82,0xd4,0x74,0xa4,
|
||||
0x0f,0x4e,0x02,0x12,0x38,0xaa,0xca,0xf1,0x87,0xc2,0xdc,0x85,0xa8,0xd8,0x06,0x58,
|
||||
0x13,0xcb,0x17,0x1b,0x5b,0xd6,0xd5,0x28,0x0f,0x45,0xc7,0x77,0xcc,0xee,0x7f,0x11,
|
||||
0x27,0xb7,0xfb,0xa7,0xe9,0x5a,0x36,0x03,0x9e,0x1b,0x98,0x73,0x24,0x31,0xb6,0x2e,
|
||||
0xcd,0xa5,0x8f,0x68,0xb9,0xbd,0xce,0xcf,0xbf,0x02,0xdb,0x33,0xcd,0x4c,0xf8,0xb4,
|
||||
0x46,0x56,0x82,0xd9,0x26,0xeb,0x67,0x6d,0x8f,0x53,0x9b,0x5c,0xc7,0x5c,0x7f,0x08,
|
||||
0xbc,0x2d,0x0c,0x5e,0xa1,0x24,0x75,0x74,0x27,0xd1,0x32,0x5b,0x1f,0xc6,0xdf,0x24,
|
||||
0xf1,0xfb,0xc9,0x2a,0x4f,0xaf,0x49,0x17,0x17,0xac,0x3a,0x51,0x8a,0xee,0x4f,0x49,
|
||||
0x66,0xe3,0x57,0x75,0x33,0x3a,0xcd,0x76,0x61,0x12,0x21,0x5c,0x63,0x10,0xe1,0x61,
|
||||
0xce,0x9e,0xa6,0x64,0xb2,0xa0,0x78,0x24,0x72,0x08,0x20,0xf0,0xa4,0x92,0x93,0xca,
|
||||
0x54,0x41,0xf3,0xfd,0x03,0x15,0xbc,0x5d,0x6c,0x17,0x5b,0xe4,0x3b,0x74,0x89,0x56,
|
||||
0x9b,0x52,0xd9,0x44,0xe9,0x6d,0x20,0xa9,0x11,0x8b,0xa5,0x41,0xa2,0xbe,0x3f,0x64,
|
||||
0x28,0xa0,0x80,0x4f,0x6e,0x78,0x1c,0xf2,0x40,0x36,0x77,0xe1,0x55,0xb9,0xb3,0x93,
|
||||
0x63,0x92,0x34,0x86,0xff,0x00,0x28,0xae,0xe7,0x68,0x6d,0x52,0xec,0x6e,0x39,0xea,
|
||||
0xec,0x4e,0x79,0x71,0x8e,0x7d,0xcb,0x6a,0x57,0x52,0x47,0xaf,0x42,0x88,0xf4,0x6e,
|
||||
0xa9,0xf1,0x13,0x01,0x3b,0x66,0x0c,0x34,0xda,0x68,0x48,0xd7,0xa7,0x9d,0xac,0x43,
|
||||
0xbd,0x5b,0xb5,0xff,0x00,0x09,0x07,0x80,0x90,0x3f,0xee,0x3b,0x82,0xa2,0x8e,0x96,
|
||||
0xea,0x16,0x7b,0xe1,0xbb,0xba,0x59,0x4c,0x5c,0x18,0x71,0xf6,0x22,0xb8,0x22,0x5d,
|
||||
0xed,0xe8,0x3c,0x33,0x77,0xb7,0xa8,0x85,0x25,0xc6,0xc9,0xed,0xcf,0x1c,0x2d,0x0a,
|
||||
0xf5,0x4a,0x81,0x4a,0xbf,0x7d,0x26,0xfa,0x30,0x3c,0xe6,0xc9,0xa9,0x98,0x6d,0x9f,
|
||||
0x2a,0xc6,0xe7,0xb5,0x74,0xb1,0x5d,0xa3,0x22,0x5c,0x49,0x4d,0x1e,0xcb,0x42,0x87,
|
||||
0xa1,0x1e,0xa9,0x50,0x3c,0x85,0x24,0xf7,0x49,0x04,0x10,0x08,0x22,0xa0,0xcf,0x88,
|
||||
0x86,0xd4,0xd1,0xaf,0xba,0x60,0xbc,0x8e,0xc3,0x0b,0xcc,0xce,0xf1,0xa6,0x56,0xf4,
|
||||
0x50,0xcb,0x7c,0xbb,0x3e,0x28,0xf9,0x9c,0x8a,0x78,0xee,0xa2,0x3b,0xad,0xb1,0xdf,
|
||||
0xe6,0xe5,0x20,0x7d,0xe1,0x35,0x1e,0xbc,0x23,0xb7,0x7a,0xbc,0x1b,0x32,0xff,0x00,
|
||||
0x33,0x19,0x54,0xf2,0x9c,0x7e,0xfa,0xf1,0x72,0xc2,0xf4,0x97,0x78,0x4c,0x39,0xe7,
|
||||
0xd6,0x38,0xea,0xf4,0x4b,0xfe,0xc0,0x1f,0xeb,0x40,0x00,0x12,0xe9,0x35,0xd0,0x72,
|
||||
0x8e,0x63,0x8f,0x32,0x61,0xc2,0x73,0xb4,0xad,0xd9,0xe3,0xa1,0xea,0x3c,0x9d,0xc8,
|
||||
0xf7,0x1e,0x0a,0x09,0x63,0xec,0xdd,0x6f,0x05,0x71,0x34,0xa5,0x2b,0x77,0x51,0x25,
|
||||
0x29,0x4a,0x22,0x52,0x94,0xa2,0x25,0x46,0x0f,0x10,0xbd,0xd2,0x0d,0xb0,0x68,0x24,
|
||||
0xe9,0x56,0xa9,0x48,0x67,0x35,0xbf,0xf5,0x5b,0x6c,0x68,0x3d,0xd4,0xda,0xc8,0xfb,
|
||||
0xd9,0x20,0x7f,0xb2,0x41,0xe4,0x1e,0xe3,0xad,0x4d,0x82,0x08,0x35,0x27,0xeb,0xcf,
|
||||
0x9f,0x88,0x76,0xe5,0x17,0xb9,0x1d,0xc5,0xde,0x26,0x40,0x96,0xe3,0xd8,0x95,0x80,
|
||||
0xaa,0xd1,0x65,0x6c,0xab,0xee,0xd4,0xda,0x14,0x43,0xb2,0x12,0x07,0x6f,0xbd,0x70,
|
||||
0x29,0x41,0x5e,0xa5,0x01,0xb0,0x7f,0x64,0x00,0x45,0xa1,0x30,0x1c,0x1e,0xf3,0xaa,
|
||||
0x39,0xc5,0x9b,0x16,0xb1,0xb0,0x65,0xde,0xaf,0x12,0xd1,0x16,0x3a,0x54,0x4f,0x1d,
|
||||
0x4a,0x3d,0xd4,0xb2,0x01,0xe1,0x29,0x1c,0xa9,0x4a,0xf6,0x00,0x9f,0x6a,0xbf,0x9d,
|
||||
0x06,0xd1,0x9b,0x2e,0x81,0x69,0x5d,0x8f,0x0a,0xb2,0x24,0x29,0x88,0x0d,0x73,0x22,
|
||||
0x57,0x4f,0x0b,0x97,0x21,0x5d,0xdd,0x79,0x5d,0xcf,0x75,0x2b,0x9e,0x07,0x3f,0x28,
|
||||
0xe9,0x48,0xec,0x91,0x50,0x97,0xc2,0x6f,0x6e,0x7f,0x66,0xda,0x2e,0x5a,0xc1,0x7a,
|
||||
0x8a,0xa1,0x26,0x77,0x5d,0xba,0xc2,0x97,0x12,0x38,0x4b,0x00,0xf0,0xfc,0x81,0xf8,
|
||||
0xa9,0x43,0xcb,0x07,0xb7,0x01,0x0e,0x7a,0x85,0x0a,0xb1,0x95,0xad,0x2d,0x21,0x4b,
|
||||
0x5a,0x82,0x10,0x90,0x4a,0x94,0xa3,0xc0,0x03,0xdc,0x9a,0xf9,0x4b,0xe2,0x5e,0x63,
|
||||
0x38,0x85,0x77,0xd9,0x54,0xee,0xfe,0x5c,0x27,0xbd,0xe6,0xff,0x00,0x1f,0xcb,0xc7,
|
||||
0xad,0xd6,0x46,0x06,0x69,0x1a,0x8f,0x8a,0xe8,0xb3,0xec,0x2e,0x06,0xa3,0xe1,0x77,
|
||||
0xac,0x5e,0xea,0xe4,0x96,0xad,0x97,0x78,0xab,0x87,0x28,0xc3,0x74,0xb4,0xe9,0x69,
|
||||
0x63,0x85,0x80,0xa1,0xe9,0xc8,0xe4,0x1f,0xc0,0x9a,0xd6,0xfa,0x57,0xb5,0xed,0x24,
|
||||
0xdb,0x5c,0x29,0x77,0x9c,0x67,0x16,0x62,0x14,0xc8,0xcc,0x38,0xf3,0xf7,0x89,0x01,
|
||||
0xc9,0xb3,0x42,0x02,0x0f,0x5f,0x42,0x95,0xd4,0xa4,0xf2,0x9e,0x41,0x43,0x40,0x75,
|
||||
0x7d,0x09,0xae,0xbf,0x6e,0xdb,0xc1,0xc3,0xb7,0x29,0x96,0x66,0xd6,0x2c,0x71,0x0e,
|
||||
0xb2,0xe6,0x3b,0x20,0x06,0x1e,0x7d,0x63,0x8b,0x94,0x52,0x7a,0x7e,0x25,0xb4,0xf6,
|
||||
0x29,0x4f,0x58,0x23,0x83,0xdc,0x05,0x36,0x4f,0x05,0x65,0x29,0xde,0xd5,0xcc,0x67,
|
||||
0x38,0x9e,0x11,0xaf,0x0d,0xa8,0x2f,0x8c,0x1b,0x17,0x32,0xe4,0x5e,0xe0,0x11,0x71,
|
||||
0xc1,0xdb,0xad,0xed,0xd2,0xea,0x71,0xa5,0xdd,0xe0,0xab,0x73,0x77,0x1e,0x28,0x96,
|
||||
0xd7,0x6c,0x93,0x71,0x4d,0x1a,0x7d,0xf9,0x13,0x24,0xa0,0xb5,0x23,0x2c,0x5b,0x6a,
|
||||
0x65,0x2c,0x20,0x8f,0x98,0x45,0x42,0xc0,0x59,0x5f,0x7e,0x3c,0xc5,0x04,0xf4,0xf0,
|
||||
0x4a,0x42,0x89,0x0a,0x4f,0x55,0xe1,0x05,0xa5,0x0b,0x99,0x78,0xcd,0x75,0x36,0x68,
|
||||
0x2a,0x4b,0x08,0x4d,0x8e,0x12,0x95,0xdf,0xa9,0xc5,0xf4,0xbd,0x21,0x47,0xe8,0x40,
|
||||
0x0c,0x80,0x7d,0xfc,0xc5,0x7d,0x2a,0x18,0xee,0x87,0x00,0x6b,0x4e,0x77,0x1b,0xa8,
|
||||
0x38,0xc4,0x06,0xba,0x62,0x45,0xbd,0x3f,0xf0,0x6c,0x36,0x3f,0x61,0x97,0x15,0xe6,
|
||||
0x34,0x80,0x3d,0xf8,0x42,0xd2,0x3f,0x4a,0xba,0x5d,0xa2,0xe8,0xea,0xb4,0x2b,0x6f,
|
||||
0x78,0x86,0x2b,0x26,0x32,0x63,0x5d,0xd1,0x1b,0xe3,0x2e,0x89,0x1c,0x15,0x7c,0x5b,
|
||||
0xc7,0xcc,0x74,0x28,0x8e,0xca,0x28,0xe4,0x37,0xcf,0xd1,0xb1,0x5d,0xc7,0x33,0x33,
|
||||
0x0d,0xcb,0x39,0x59,0x94,0xb8,0x58,0xb1,0xaa,0xd3,0xb9,0xdd,0xce,0x6d,0x83,0x89,
|
||||
0x27,0xd2,0xc2,0xc0,0x00,0x35,0x6c,0x37,0x56,0xb1,0xea,0x92,0x4b,0xbb,0xc1,0x44,
|
||||
0x6f,0x18,0x0d,0x57,0x10,0xec,0x18,0x5e,0x9c,0x44,0x96,0x03,0xd3,0x1e,0x5d,0xee,
|
||||
0xe0,0xc2,0x09,0x0a,0x0d,0x23,0xa9,0xa8,0xfd,0x5f,0x54,0xa9,0x4a,0x7c,0xf1,0xf5,
|
||||
0x68,0x1f,0x61,0x53,0xd7,0x18,0x74,0xe2,0xba,0x6d,0x68,0x72,0xe0,0xb5,0x28,0xdb,
|
||||
0x6d,0x0c,0xaa,0x42,0xdc,0x3f,0x31,0xf2,0xd9,0x1d,0x64,0x93,0xef,0xf2,0x9a,0xa4,
|
||||
0x0d,0xcf,0x6a,0x7a,0xf7,0x23,0xba,0x7b,0xdd,0xd6,0x17,0xf4,0x8b,0x7c,0xcb,0x9b,
|
||||
0x56,0x9b,0x4a,0x1b,0x57,0x50,0x5c,0x66,0xd4,0x19,0x69,0x49,0xff,0x00,0xc4,0xe0,
|
||||
0xb9,0xc7,0xd5,0xc3,0x57,0x3f,0xb8,0x5b,0x81,0xc7,0xf6,0xf7,0xa8,0xf2,0xd2,0xae,
|
||||
0x83,0x17,0x1a,0xb8,0x29,0x2a,0x1e,0xc4,0x46,0x5f,0x15,0xab,0xe6,0x6c,0x23,0xec,
|
||||
0xdc,0x2f,0x06,0xc2,0xdc,0x2c,0xf7,0x6a,0x73,0xba,0xea,0x79,0x67,0xed,0x7b,0x7b,
|
||||
0x29,0x23,0x7d,0xdc,0xe7,0x2a,0xaa,0xc6,0xb6,0x5f,0x97,0xeb,0xbe,0xd7,0x74,0xff,
|
||||
0x00,0x2f,0xc1,0xac,0xad,0xdd,0xb2,0x49,0x17,0x7b,0x9b,0x77,0x15,0x39,0x29,0x98,
|
||||
0xe5,0xc8,0xc5,0xc0,0x1b,0x59,0x53,0xab,0x48,0x21,0x0e,0x34,0xe8,0xe0,0x72,0x7e,
|
||||
0xf7,0xd3,0x81,0xdb,0xfb,0xb7,0xf8,0x54,0x6b,0xa4,0xc4,0xa4,0xbc,0xce,0x3b,0x00,
|
||||
0x9f,0x51,0x22,0xe9,0xc9,0x1f,0xe0,0x42,0xaa,0xca,0xb6,0x4f,0x88,0x7f,0x90,0xbb,
|
||||
0x50,0xd3,0x4b,0x62,0xb9,0x05,0x56,0x94,0xdc,0x17,0xd5,0xfb,0xa6,0x4a,0xd7,0x24,
|
||||
0x83,0xf9,0x17,0x88,0xfd,0x2b,0x76,0x25,0x41,0x69,0x0a,0x49,0x0a,0x49,0x1c,0x82,
|
||||
0x3d,0x08,0xa9,0xab,0xbe,0x23,0xe2,0xf4,0x35,0x75,0x14,0xd4,0x9a,0x0c,0x6d,0x91,
|
||||
0xfa,0x49,0x04,0x9b,0x6a,0x36,0xf1,0xb7,0xa6,0xdc,0x2a,0x08,0x1a,0x40,0x25,0x53,
|
||||
0x3d,0xdb,0xc2,0xaf,0x5d,0x6d,0xcc,0xa9,0x71,0xe2,0xe3,0xf7,0x55,0x01,0xc8,0x6e,
|
||||
0x25,0xd4,0x25,0x47,0xf0,0x1e,0x6a,0x50,0x3f,0xbc,0xd6,0x00,0xf6,0xc1,0x35,0xee,
|
||||
0x26,0x43,0x6d,0xb4,0x49,0xd3,0xbb,0x83,0x2e,0xce,0x7d,0x2c,0x26,0x52,0x1d,0x69,
|
||||
0xf8,0xac,0xf3,0xfb,0xee,0xba,0xd2,0xd6,0x96,0xd0,0x07,0x72,0xa5,0x1f,0xcb,0x93,
|
||||
0xc0,0xab,0xcc,0xba,0x5e,0x6d,0xf6,0x38,0xe9,0x7e,0xe5,0x3a,0x35,0xbd,0x85,0x28,
|
||||
0x20,0x3b,0x29,0xe4,0xb4,0x92,0xa3,0xe8,0x39,0x51,0x03,0x9e,0xc7,0xb5,0x75,0x12,
|
||||
0xf5,0x23,0x13,0x83,0x02,0x54,0xd7,0xf2,0x6b,0x4b,0x71,0x22,0xb4,0xa7,0x9e,0x77,
|
||||
0xe3,0x5b,0x21,0xb4,0x24,0x12,0xa5,0x1e,0x15,0xe8,0x00,0x27,0xf4,0xa5,0x3f,0xc5,
|
||||
0x0c,0x7e,0xdb,0xc2,0xc7,0xdf,0xf0,0xbb,0x9f,0x67,0x5b,0xf4,0x43,0x4e,0xc5,0x50,
|
||||
0x5b,0xc4,0xd2,0xcb,0x56,0x82,0xc1,0xc0,0x34,0x27,0x11,0x22,0xef,0x7e,0x7c,0x22,
|
||||
0xf3,0x90,0x4d,0x69,0x20,0xbd,0x72,0xb8,0xba,0x4b,0x31,0x9b,0xe3,0xb9,0x42,0x5b,
|
||||
0x4f,0x9b,0xd0,0xdf,0x3e,0x8f,0xf5,0x1e,0x4a,0x8a,0x8c,0x59,0xc9,0xb1,0xd9,0x58,
|
||||
0xb6,0x51,0x75,0xb0,0xca,0xe9,0x5c,0xdb,0x74,0xc7,0x60,0xbb,0xe5,0x72,0x52,0x5c,
|
||||
0x6d,0x65,0x0a,0xe9,0xfa,0x8e,0x41,0xe2,0xa6,0x16,0xda,0x10,0xf6,0xef,0xbc,0x42,
|
||||
0xe4,0x66,0xf3,0x1a,0x71,0x16,0xc8,0xb3,0xdd,0xc9,0x14,0xd3,0x87,0x95,0xb5,0x1e,
|
||||
0x39,0x4a,0x21,0xb6,0x4f,0xa1,0x29,0x57,0xc3,0x24,0xfd,0x42,0x55,0xc5,0x70,0xb4,
|
||||
0xc3,0x45,0x86,0xa4,0xf8,0x95,0xdf,0xec,0x12,0xa1,0x99,0x16,0x9b,0x56,0x5b,0x72,
|
||||
0xbb,0xce,0x41,0x48,0x28,0xf8,0x76,0x24,0x2d,0xc4,0x75,0x8f,0xe0,0x5a,0xfc,0x94,
|
||||
0x11,0xef,0xe6,0x71,0xef,0x5d,0x92,0x87,0x16,0xfb,0x22,0x37,0xd2,0xd6,0xbb,0x54,
|
||||
0x91,0x43,0xdb,0x4a,0x7c,0x4b,0x9c,0x49,0x23,0xdb,0x80,0x3a,0x69,0x03,0x6b,0x05,
|
||||
0x6c,0xe6,0xea,0xdc,0x78,0x9b,0x29,0x93,0xa8,0x3a,0x10,0xbd,0x3e,0xf0,0xc9,0xbc,
|
||||
0x60,0x6f,0xa0,0x19,0xd6,0xdc,0x6c,0x5c,0xa6,0xa5,0x3d,0xc0,0x92,0x87,0x93,0x35,
|
||||
0xe0,0x08,0xf5,0x09,0x5a,0x54,0x01,0xf7,0x09,0x15,0xd4,0xf8,0x46,0x3f,0xe6,0xed,
|
||||
0xb2,0xfa,0xdf,0xfa,0xbc,0x9a,0x40,0xfe,0xf8,0xd1,0x8f,0xfd,0xea,0x4f,0xee,0x12,
|
||||
0x0f,0xda,0x9a,0x09,0xa9,0x30,0xf8,0xea,0xf3,0xf1,0xbb,0x93,0x7c,0x7d,0x79,0x8a,
|
||||
0xe0,0xa8,0x9b,0xe0,0xfd,0x2c,0x2f,0x42,0x73,0x18,0xbf,0xbc,0xd6,0x48,0xa7,0x0f,
|
||||
0xe4,0xa8,0xac,0x0f,0xfd,0x86,0xb8,0x24,0x75,0x92,0xd7,0xe5,0x4c,0x42,0x49,0x4d,
|
||||
0xdc,0x67,0x6b,0xcf,0xab,0xf9,0xfd,0x95,0xd9,0x16,0x91,0xa0,0x74,0x53,0xc6,0xa1,
|
||||
0xcf,0x8a,0xa6,0x04,0xee,0x59,0xb6,0x05,0x5e,0x23,0xb6,0x16,0xee,0x37,0x76,0x8d,
|
||||
0x3d,0xc3,0xc7,0x2a,0xf2,0x57,0xd5,0x1d,0x5c,0x7f,0x69,0xe6,0xc9,0xfc,0x12,0x4f,
|
||||
0xb5,0x6b,0x1f,0x10,0xfd,0x6e,0xcc,0xb4,0x2b,0x73,0x9a,0x57,0x7d,0xb3,0x64,0x97,
|
||||
0x78,0x36,0x06,0xe0,0xb4,0xfc,0xcb,0x3c,0x79,0xae,0x26,0x1c,0xb0,0xdc,0xb7,0x3c,
|
||||
0xe0,0xe3,0x21,0x5d,0x0a,0x2b,0x6d,0x41,0x24,0x91,0xcf,0x01,0x3d,0xfe,0x51,0xc4,
|
||||
0xe1,0xd5,0x6c,0x32,0x36,0xb0,0x69,0x0e,0x51,0x8c,0xb3,0x21,0x95,0x33,0x90,0x5a,
|
||||
0x1f,0x8b,0x1e,0x57,0x3d,0x6d,0x85,0x3a,0xd1,0xf2,0x9c,0xe4,0x7a,0x80,0xa2,0x95,
|
||||
0x76,0xfa,0x56,0x22,0x8a,0x92,0x5c,0xb9,0x3e,0x19,0x8d,0x3d,0xc0,0xc7,0x21,0xd5,
|
||||
0xe8,0x1a,0xeb,0x38,0x1f,0x62,0xbd,0x92,0x1e,0x1c,0xc5,0x1b,0xfc,0x38,0xf4,0x47,
|
||||
0x05,0xb4,0xed,0x75,0xab,0xa4,0x50,0xde,0x4a,0xe6,0x6e,0xd2,0x95,0x7c,0x33,0xe3,
|
||||
0x8f,0x2d,0x5d,0x05,0x6d,0x18,0x65,0xa2,0x48,0x2d,0xb6,0x7c,0xd1,0xc9,0xee,0xbe,
|
||||
0xb2,0xae,0xc0,0xa5,0x29,0x8a,0x9b,0xa1,0xda,0x56,0x4f,0xb2,0xcd,0x49,0xb6,0x6a,
|
||||
0xfe,0x96,0x17,0xe4,0xe2,0x10,0x27,0x22,0x5a,0x01,0x2a,0x5b,0x96,0x85,0xf5,0x01,
|
||||
0xe4,0x3e,0x41,0xea,0x5c,0x77,0x3a,0x8a,0x02,0xc9,0xf4,0x51,0x42,0xcf,0x24,0x29,
|
||||
0x7b,0x93,0xc2,0x33,0x52,0x25,0x2b,0x1a,0xce,0xb4,0xce,0xe6,0x3c,0xa9,0x56,0x49,
|
||||
0x89,0xb9,0x46,0x69,0xc3,0xf7,0x89,0x4b,0x9f,0x76,0xfa,0x38,0xf6,0x08,0x5b,0x68,
|
||||
0x3f,0x9b,0xa7,0xf0,0xab,0x03,0xb8,0x5b,0xe2,0xdd,0xa0,0x49,0x83,0x3a,0x33,0x33,
|
||||
0x61,0x49,0x6d,0x4c,0xbf,0x1a,0x43,0x61,0xc6,0xdd,0x6d,0x43,0x85,0x21,0x49,0x3c,
|
||||
0x85,0x24,0x82,0x41,0x07,0xb1,0x06,0xb6,0x3c,0x47,0x1c,0xc4,0x32,0xc6,0x66,0xac,
|
||||
0xed,0x5d,0xda,0xc7,0x23,0xbb,0xcd,0x77,0x0f,0x63,0x87,0x77,0xc8,0x10,0xd2,0x00,
|
||||
0x20,0x6d,0xc5,0xad,0x70,0xa3,0x6b,0x1b,0x24,0x63,0xc1,0x62,0x9a,0x3b,0xaa,0x76,
|
||||
0x8d,0x6a,0xd3,0x3c,0x7f,0x35,0xb1,0xac,0x7c,0x05,0xda,0x32,0x5e,0xf2,0xba,0xfa,
|
||||
0x94,0xc3,0x83,0xe5,0x71,0x95,0x1e,0x07,0xcc,0x85,0x85,0x24,0xf6,0xef,0xd3,0xcf,
|
||||
0xa1,0xaa,0xa2,0xf1,0x1f,0xdb,0x83,0xba,0x0d,0xac,0x71,0xf3,0x8c,0x61,0xa5,0xdb,
|
||||
0xf1,0xac,0x95,0xf5,0x4c,0x8e,0xa8,0x61,0x4d,0x8b,0x7d,0xc1,0x24,0x29,0xc4,0x25,
|
||||
0x43,0xf6,0x3a,0x8f,0xde,0xa3,0x82,0x38,0xe5,0x61,0x20,0x06,0xea,0xc4,0xb4,0x53,
|
||||
0x43,0xe5,0x6d,0xa7,0x3d,0xbc,0xd9,0x71,0xa2,0xf4,0xbd,0x2c,0xc9,0x1d,0x54,0xe8,
|
||||
0xb0,0x55,0xf3,0xb9,0x61,0xb8,0x00,0x3a,0xd0,0x0f,0xaa,0xa3,0xba,0x80,0x38,0x51,
|
||||
0x27,0xa1,0x4d,0xa5,0x27,0xf6,0xfa,0x8e,0x59,0xb9,0x8d,0x11,0x83,0xb8,0x4d,0x18,
|
||||
0xc8,0xb0,0xc9,0x41,0x28,0x97,0x25,0x9f,0x3e,0xdd,0x25,0x5d,0xbe,0x1e,0x62,0x39,
|
||||
0x53,0x2b,0xe7,0xe9,0xd5,0xf2,0xab,0xea,0x95,0x28,0x76,0xe6,0xb1,0x78,0x0e,0x35,
|
||||
0x06,0x59,0xc7,0x84,0xf4,0xaf,0xbd,0x2c,0x9b,0x1e,0xba,0x0f,0x51,0xfd,0x4c,0x3c,
|
||||
0xf5,0xb1,0xb6,0xce,0xb9,0xf4,0xf6,0x19,0x19,0x63,0xca,0xee,0x36,0x27,0xb9,0xb6,
|
||||
0xf7,0x49,0xa0,0x56,0xac,0x82,0x5b,0xa9,0x39,0x4d,0xb4,0x8b,0x65,0xf5,0xa4,0xa4,
|
||||
0x27,0x99,0x48,0x48,0x3e,0x68,0x48,0xe0,0x04,0xba,0x92,0x95,0x8e,0x00,0x00,0xa9,
|
||||
0x49,0x1f,0xb3,0x52,0x1e,0xa8,0x67,0xc3,0x97,0x5e,0xe7,0x6d,0x77,0x74,0x88,0xc7,
|
||||
0xb2,0x4e,0xbb,0x5d,0x93,0x21,0x7c,0x63,0xb7,0xc8,0xd2,0xd5,0xe5,0x88,0x92,0x43,
|
||||
0x85,0x2c,0xba,0xb0,0x48,0x00,0xb6,0xe9,0x28,0x25,0x5d,0x92,0x87,0x1c,0x35,0x7c,
|
||||
0xd5,0xf6,0x50,0x21,0xc0,0x39,0xa6,0xe0,0xac,0x5a,0x52,0x94,0xaa,0xa2,0x52,0x94,
|
||||
0xa2,0x28,0xb1,0xe2,0x4b,0xb8,0x03,0xa0,0x7b,0x5f,0xbf,0x39,0x01,0xf7,0x18,0xc8,
|
||||
0xb2,0x52,0x6c,0x36,0xc5,0xb2,0xae,0x95,0xb4,0xa7,0x50,0xaf,0x35,0xd0,0x79,0x05,
|
||||
0x3d,0x0d,0x07,0x38,0x50,0xee,0x16,0x51,0xf5,0xe4,0x51,0x6e,0x90,0x69,0x9d,0xcf,
|
||||
0x58,0xf5,0x37,0x1b,0xc2,0xec,0xe8,0x26,0x75,0xe2,0x62,0x23,0x05,0xf1,0xc8,0x65,
|
||||
0xbf,0x57,0x1d,0x57,0xf2,0xa1,0x01,0x4b,0x3f,0x82,0x4d,0x4b,0x9f,0x17,0xad,0x6f,
|
||||
0x1a,0x91,0xb9,0x16,0x70,0xf8,0x32,0x54,0xed,0xa3,0x0a,0x88,0x21,0xa9,0x00,0x82,
|
||||
0x83,0x35,0xde,0x1c,0x90,0xa1,0xf9,0x27,0xc9,0x6c,0xf3,0xe8,0x5a,0x57,0xeb,0x9b,
|
||||
0x78,0x44,0x68,0x98,0x9b,0x76,0xca,0x35,0x4a,0xe3,0x13,0xa9,0xb8,0x43,0xec,0x6b,
|
||||
0x4b,0xab,0xe3,0x8f,0x35,0x40,0x2e,0x4a,0xd2,0x3d,0x79,0x4a,0x0b,0x68,0x07,0xd3,
|
||||
0x87,0x56,0x3e,0xbc,0x6b,0x19,0x97,0x17,0x6e,0x07,0x85,0x4f,0x5d,0xf7,0x9a,0x2c,
|
||||
0xdf,0x37,0x1d,0x9b,0xfa,0xee,0x7c,0x81,0x52,0x46,0xdd,0x6e,0x01,0x59,0x1e,0x15,
|
||||
0x87,0xda,0xf4,0xff,0x00,0x11,0xb3,0x63,0x36,0x48,0xe2,0x2d,0xa2,0xd3,0x11,0xa8,
|
||||
0x51,0x5a,0xe7,0x92,0x96,0xd0,0x90,0x91,0xc9,0xf7,0x27,0x8e,0x49,0x3d,0xc9,0x24,
|
||||
0x9f,0x5a,0x88,0x9e,0x27,0xfb,0x8e,0x3a,0x57,0xa4,0xad,0xe0,0xb6,0x69,0x41,0xbc,
|
||||
0x93,0x2f,0x6d,0x6d,0x3c,0x5b,0x73,0x87,0x23,0xdb,0xc7,0x67,0x54,0x40,0xee,0x3c,
|
||||
0xc3,0xf7,0x43,0x9e,0xc4,0x79,0xbc,0x77,0x4d,0x4d,0x37,0x1c,0x43,0x4d,0xa9,0x6e,
|
||||
0x29,0x28,0x42,0x41,0x52,0x94,0xa3,0xc0,0x48,0x1e,0xa4,0x9f,0x61,0x54,0x07,0xba,
|
||||
0xfd,0x6c,0x7f,0x5f,0xf5,0xdf,0x27,0xcb,0x0b,0xbd,0x76,0xc5,0x3e,0x62,0x5a,0xd0,
|
||||
0x39,0x01,0x10,0x9a,0x25,0x2d,0x70,0x0f,0x70,0x54,0x39,0x59,0xfe,0x65,0xab,0xd3,
|
||||
0xd2,0xbe,0x65,0xf8,0x7b,0x82,0x1c,0x73,0x19,0x35,0x55,0x3d,0xe6,0x43,0xdf,0x75,
|
||||
0xfc,0x5c,0x4f,0x74,0x1f,0x7b,0xb8,0xf5,0xb7,0x9a,0xbf,0x99,0xfa,0x1b,0x61,0xe2,
|
||||
0xb7,0x1f,0x85,0x65,0xd5,0xeb,0x76,0xec,0x22,0x47,0x6c,0x90,0x89,0xf6,0x69,0xb1,
|
||||
0x9d,0x03,0xdd,0x20,0x25,0xde,0xff,0x00,0xda,0x69,0x35,0x73,0x55,0x53,0x5e,0x11,
|
||||
0x9a,0x5d,0x3a,0xf5,0xab,0xd9,0x0e,0x76,0xe3,0x5d,0x36,0x8b,0x1d,0xb9,0x50,0x50,
|
||||
0xe9,0xf5,0x5c,0xa7,0xd4,0x9e,0x12,0x9f,0xaf,0x4b,0x68,0x70,0x9f,0xa7,0x52,0x3e,
|
||||
0xb5,0x63,0xfb,0x8a,0xd5,0x96,0x74,0x3f,0x45,0x72,0xcc,0xcd,0x7d,0x0a,0x93,0x6e,
|
||||
0x86,0xaf,0x82,0x69,0xcf,0x47,0x65,0x2f,0x84,0x30,0x8e,0x3d,0x48,0x2e,0x29,0x1c,
|
||||
0xf1,0xdf,0x8e,0x4f,0xb5,0x5d,0xfc,0x46,0x68,0xaf,0xcc,0xcd,0xa5,0xa6,0xdd,0xe5,
|
||||
0xac,0x65,0xbf,0x11,0x26,0xc3,0xe8,0x42,0xa4,0x1b,0x47,0x72,0xab,0xd7,0x46,0xb4,
|
||||
0xb1,0xbd,0xcf,0xf8,0x8c,0xea,0x06,0x59,0x2e,0x3a,0x65,0xe2,0x38,0xad,0xf1,0xd9,
|
||||
0xaf,0x38,0x4f,0xdd,0xbe,0xe3,0x0e,0x79,0x30,0xd1,0xf8,0x85,0x29,0xa0,0xe7,0x07,
|
||||
0xb1,0x4b,0x6a,0x07,0xd4,0x03,0x64,0x7a,0xb7,0x85,0xdc,0x75,0x1b,0x4d,0x32,0x4c,
|
||||
0x5e,0xd5,0x7d,0xff,0x00,0x26,0xa6,0xde,0x21,0x2e,0x12,0x6e,0xa2,0x31,0x90,0x63,
|
||||
0xa1,0x7f,0x2b,0x84,0x36,0x16,0x8e,0x54,0x50,0x54,0x01,0xea,0x1c,0x12,0x0f,0x7e,
|
||||
0x38,0x3a,0xc7,0x65,0x1a,0x06,0xad,0x01,0xd0,0xeb,0x65,0xbe,0xe4,0xd2,0x46,0x57,
|
||||
0x78,0x57,0xda,0xd7,0xc7,0x88,0xe5,0xc3,0x25,0xc0,0x08,0x69,0x47,0xfd,0x9a,0x7a,
|
||||
0x51,0xc0,0xed,0xd4,0x16,0x47,0xed,0x12,0x79,0x5a,0xa3,0xbd,0x7d,0x1c,0xd1,0xbc,
|
||||
0xc5,0xfc,0x5b,0x29,0xcb,0x93,0x0e,0xf9,0x1d,0x28,0x54,0x88,0xac,0x43,0x7e,0x47,
|
||||
0x91,0xd4,0x02,0x92,0x16,0xa6,0xd0,0xa0,0x0f,0x04,0x1e,0x9e,0x79,0xe0,0x8e,0xdd,
|
||||
0xc5,0x61,0x71,0xca,0xda,0xbc,0x6f,0x16,0x64,0x58,0x4b,0x1d,0x23,0x69,0x83,0x5b,
|
||||
0x18,0x6b,0x75,0x6c,0xcb,0x0d,0x56,0xb1,0x04,0x13,0xd4,0x5a,0xd6,0x05,0x7b,0x60,
|
||||
0x0c,0x6d,0xdd,0xe2,0xb4,0x66,0x8b,0x78,0x54,0x62,0x5a,0x5d,0x9c,0x58,0x32,0x9b,
|
||||
0xbe,0x6b,0x73,0xc9,0xa7,0x59,0x66,0xb5,0x70,0x8f,0x1d,0xb8,0x4d,0xc3,0x8e,0xb7,
|
||||
0x5a,0x58,0x5a,0x3a,0xd3,0xd4,0xe2,0x8a,0x42,0x80,0x3c,0x05,0x0e,0x78,0xef,0xdb,
|
||||
0xb5,0x6d,0x2f,0x11,0x4c,0xac,0xe2,0x9b,0x41,0xce,0xd4,0xdb,0xbe,0x5c,0x9b,0x82,
|
||||
0x23,0x5b,0x9a,0xe7,0xf7,0xbc,0xd9,0x0d,0x87,0x07,0xfe,0x50,0x72,0xb7,0x9e,0x07,
|
||||
0x9f,0xe3,0xba,0x9f,0x8b,0x42,0xc8,0xf1,0x5b,0xbc,0x6b,0xe5,0x92,0x62,0x4a,0x99,
|
||||
0x99,0x15,0x5c,0xa4,0xf0,0x78,0x29,0x20,0xf0,0x52,0xa0,0x7b,0x14,0xa8,0x02,0x0f,
|
||||
0x62,0x05,0x42,0x2f,0x18,0x0c,0xe9,0x8b,0x66,0x92,0x61,0x78,0x92,0x54,0x7e,0x32,
|
||||
0xef,0x77,0x5c,0xf3,0xc1,0xec,0x19,0x8c,0xd1,0x4a,0x81,0xfc,0xd5,0x21,0xbe,0x3f,
|
||||
0xdd,0x35,0x2e,0x15,0x57,0x8a,0x66,0x2c,0xcd,0x46,0xcc,0x51,0xe5,0xef,0x63,0xc6,
|
||||
0xc4,0x01,0x60,0xd3,0xa8,0x8b,0x00,0x00,0xe3,0x7d,0x95,0x1c,0x1a,0xc8,0xce,0x95,
|
||||
0x5a,0x79,0x46,0xb3,0xe7,0xb9,0xb5,0x92,0x35,0x9a,0xfd,0x99,0x5f,0x2e,0xd6,0x78,
|
||||
0xc8,0x43,0x6c,0xdb,0xa5,0xcf,0x75,0x71,0xd0,0x94,0x00,0x10,0x03,0x65,0x5d,0x3d,
|
||||
0x80,0x1c,0x76,0xab,0xda,0xdb,0x06,0x28,0xee,0x13,0xb7,0x5d,0x37,0xb2,0xbe,0x16,
|
||||
0x99,0x31,0xac,0x10,0xcb,0xe8,0x73,0xd5,0x0e,0xad,0xa4,0xad,0x69,0xfd,0x14,0xa5,
|
||||
0x0f,0xd2,0xa8,0x63,0x4c,0x70,0xc7,0xf5,0x17,0x51,0xf1,0x6c,0x56,0x31,0xe8,0x7e,
|
||||
0xf5,0x74,0x8d,0x6f,0x4a,0xf8,0xe4,0x23,0xcd,0x75,0x28,0xea,0x3f,0x80,0xea,0xe4,
|
||||
0xfe,0x02,0xbd,0x19,0x32,0xc2,0x23,0x32,0xdb,0x2d,0x27,0xa5,0xb6,0xd2,0x10,0x94,
|
||||
0x8f,0x60,0x3b,0x01,0x5b,0xf7,0xc5,0x79,0x62,0xa7,0x86,0x92,0x86,0x16,0x86,0x82,
|
||||
0x5c,0xf2,0x00,0xb7,0x40,0x0e,0xdd,0x6e,0x7e,0x8a,0x1a,0x70,0x4d,0xc9,0x55,0x27,
|
||||
0xe2,0xe7,0x9f,0x39,0x7b,0xd7,0x2c,0x7b,0x15,0x6a,0x61,0x76,0x15,0x8a,0xce,0x97,
|
||||
0x9c,0x8c,0x15,0xf2,0xb5,0x25,0xf5,0xa9,0x4a,0x24,0x7f,0x11,0x6d,0x0c,0x1f,0xcb,
|
||||
0x8f,0xad,0x41,0x4a,0xdc,0x5b,0xc3,0xcb,0xd7,0x9c,0xee,0x87,0x53,0x2e,0xcb,0x74,
|
||||
0x3e,0x3e,0xda,0x7e,0x1b,0x6e,0x03,0xc8,0x2d,0xc7,0x3f,0x0e,0xdf,0x07,0xdc,0x74,
|
||||
0x34,0x9a,0xfb,0xed,0x13,0x6f,0x12,0xf7,0x29,0xad,0x16,0xac,0x67,0x87,0x5a,0xb1,
|
||||
0x47,0xfe,0x9b,0x79,0x96,0xd8,0xfe,0xa6,0x22,0x08,0xea,0x48,0x3e,0xca,0x59,0x21,
|
||||
0xb4,0x9f,0x62,0xbe,0x78,0x21,0x26,0xba,0xd6,0x0a,0xd8,0x32,0xfe,0x5d,0x80,0xd4,
|
||||
0x1d,0x2d,0x8e,0x30,0xe7,0x7a,0x91,0xa9,0xdf,0xa9,0x36,0xf1,0x2a,0xd9,0xf7,0x7c,
|
||||
0x86,0xca,0xc6,0x3c,0x2b,0x74,0x31,0xcd,0x3c,0xd1,0x49,0x99,0xb5,0xca,0x3a,0x5b,
|
||||
0xbb,0x66,0x0e,0xa5,0xe6,0x39,0x07,0xad,0x10,0x5a,0xea,0x4b,0x5c,0xf2,0x3b,0x75,
|
||||
0xa8,0xb8,0xbe,0xdd,0x8a,0x4b,0x67,0xf0,0x19,0xd6,0xdf,0x74,0x87,0xec,0x0d,0xdc,
|
||||
0x6e,0x23,0x35,0x5b,0x48,0xf2,0x64,0x4d,0x81,0x6d,0x88,0xe8,0xf5,0xea,0x72,0x1b,
|
||||
0x12,0xe4,0x8f,0xcb,0x97,0x63,0xfe,0xa0,0xfd,0x2a,0x4b,0xdb,0xad,0xd1,0x6c,0xf6,
|
||||
0xf8,0xb0,0x20,0xc6,0x6a,0x1c,0x18,0xad,0x21,0x86,0x23,0x30,0x80,0x86,0xda,0x6d,
|
||||
0x20,0x25,0x28,0x4a,0x47,0x60,0x90,0x00,0x00,0x0f,0x40,0x2b,0xe5,0x06,0xd3,0x16,
|
||||
0xd9,0x2a,0xe7,0x29,0x94,0x04,0x39,0x3d,0xf1,0x2a,0x42,0xbf,0x89,0x61,0xa6,0xda,
|
||||
0x07,0xfc,0x0d,0x20,0x7e,0x95,0xf2,0x4d,0x76,0x62,0xa8,0xae,0xaa,0xae,0xa9,0x76,
|
||||
0xdf,0xc4,0x0d,0x36,0xe8,0x03,0xda,0x40,0xf6,0x6b,0x6c,0xb2,0x41,0x80,0x00,0x3a,
|
||||
0x2f,0x8e,0x51,0x69,0x17,0xec,0x66,0xef,0x6c,0x23,0xa8,0x4d,0x86,0xf4,0x62,0x0f,
|
||||
0xbf,0x5a,0x0a,0x7f,0xef,0x50,0x0b,0xc1,0xc2,0x6f,0x99,0x83,0xea,0x5c,0x3e,0x7f,
|
||||
0xaa,0xb8,0xc3,0x77,0x8f,0xf7,0xda,0x70,0x7f,0xfc,0xea,0xc4,0x90,0x78,0x5a,0x7f,
|
||||
0x3a,0xae,0x9f,0x09,0x3b,0x7f,0xd8,0x59,0x26,0xbc,0x59,0xf8,0x29,0x4c,0x19,0xf6,
|
||||
0xe6,0x52,0x93,0xed,0xd2,0xb9,0xc8,0x3f,0xf4,0x8a,0xc9,0xe0,0xce,0xd5,0x96,0x71,
|
||||
0x68,0xcf,0x87,0x60,0x47,0xe7,0x20,0xfe,0xe1,0x51,0xdf,0x3b,0x4f,0xaf,0xec,0xb1,
|
||||
0x9f,0x19,0x38,0x41,0x37,0xad,0x2c,0x96,0x13,0xf3,0x2e,0x3d,0xc5,0xa2,0xaf,0xa8,
|
||||
0x0a,0x8e,0x40,0xff,0x00,0xd4,0x7f,0xbe,0xa6,0x16,0xc5,0xb3,0x71,0x9f,0x6d,0x3f,
|
||||
0x4e,0x67,0x97,0x3a,0xde,0x89,0x6e,0x16,0xb7,0x41,0x57,0x2a,0x4a,0xa3,0x2d,0x4c,
|
||||
0x00,0x7f,0x12,0x96,0xd2,0xaf,0xc9,0x42,0xb9,0xbb,0x92,0xda,0x46,0x1b,0xba,0x6f,
|
||||
0xf2,0x6c,0x65,0xd3,0x6f,0x31,0x13,0x62,0x5b,0xea,0x8e,0x9b,0x43,0xed,0x35,0xe6,
|
||||
0xf9,0xbe,0x5f,0x50,0x70,0xad,0xa5,0x92,0x3e,0xe9,0x3c,0x74,0xf1,0xea,0x7f,0x0e,
|
||||
0x32,0x7d,0x09,0xd0,0x6c,0x63,0x6e,0x98,0x4b,0x98,0xae,0x25,0xf1,0xdf,0x65,0xae,
|
||||
0x5a,0xe6,0xab,0xed,0x09,0x1e,0x73,0x9e,0x62,0xd2,0x84,0xab,0x83,0xc0,0x00,0x70,
|
||||
0x84,0xf6,0x03,0xd7,0x93,0xef,0x52,0xd7,0xe3,0x74,0x15,0x79,0x56,0x93,0x0b,0xdf,
|
||||
0xb7,0x89,0xc4,0xf1,0xb5,0x89,0x7e,0xd7,0xbf,0x42,0x0f,0xb2,0xa0,0x61,0x12,0x17,
|
||||
0x78,0x15,0x5f,0x71,0x10,0x9d,0xac,0x78,0xa8,0x2d,0xa4,0xbc,0xe4,0x3c,0x7b,0x30,
|
||||
0x94,0x47,0x71,0xc2,0x56,0xdd,0xc3,0xe6,0x09,0x3f,0x44,0x26,0x60,0x00,0x7d,0x03,
|
||||
0x60,0x9f,0x43,0x56,0x91,0x55,0xf1,0xe2,0xdf,0xa6,0x12,0x1e,0xc5,0xb0,0xad,0x4f,
|
||||
0xb5,0xb3,0xd1,0x36,0xc5,0x2f,0xec,0xe9,0x92,0x5a,0x4f,0xde,0x25,0xa7,0x0f,0x5b,
|
||||
0x0b,0x51,0xf6,0x4a,0x1d,0x4a,0x80,0xfe,0x67,0xc7,0xd6,0xa6,0xb6,0x8e,0x6a,0x24,
|
||||
0x6d,0x5a,0xd2,0xac,0x4f,0x31,0x8a,0x12,0x86,0xef,0x56,0xd6,0x65,0xad,0xa4,0x9e,
|
||||
0x43,0x4e,0x29,0x03,0xcc,0x6f,0x9f,0x7e,0x95,0xf5,0x27,0xfb,0x35,0x26,0x66,0x77,
|
||||
0xda,0x78,0x56,0x1d,0x8c,0x0d,0xdd,0xa4,0xc4,0xff,0x00,0xee,0x8f,0x82,0x7c,0xdc,
|
||||
0x0d,0xfd,0x15,0x19,0xdd,0x73,0x9b,0xee,0xb3,0x1a,0x54,0x54,0xcb,0x77,0x90,0x8d,
|
||||
0x00,0xdc,0x4c,0x9d,0x39,0xd5,0x3e,0x96,0xb1,0xbb,0xba,0x53,0x70,0xb0,0x65,0x6d,
|
||||
0x36,0x10,0x96,0x59,0x75,0x44,0x79,0x12,0xd0,0x3b,0x00,0x87,0x12,0xe2,0x03,0xa9,
|
||||
0xfd,0xd0,0xd9,0x5a,0x7b,0xa9,0x62,0x54,0x30,0xfb,0x52,0x98,0x6d,0xf6,0x1c,0x43,
|
||||
0xcc,0xba,0x90,0xb6,0xdc,0x6d,0x41,0x49,0x5a,0x48,0xe4,0x10,0x47,0x62,0x08,0xef,
|
||||
0xcd,0x69,0x15,0xb8,0x65,0x55,0x03,0x63,0x92,0x66,0xf7,0x24,0x1a,0x9a,0xe1,0xc3,
|
||||
0x87,0x91,0xea,0x3c,0x41,0xdc,0x78,0x85,0x28,0x70,0x3c,0x2a,0x85,0xf1,0x52,0xd0,
|
||||
0x71,0xa7,0xda,0xc9,0x13,0x3b,0xb6,0x44,0x2d,0x59,0x72,0xe6,0xca,0xa4,0x29,0xb1,
|
||||
0xf2,0x37,0x70,0x6c,0x00,0xef,0xa0,0xf9,0x7c,0xc4,0x14,0x2f,0xbf,0x75,0x2b,0xcd,
|
||||
0x3e,0xc7,0x8b,0x3f,0xd8,0x0e,0xbf,0x2f,0x71,0x3b,0x63,0xc6,0x6f,0xb3,0x9e,0x4b,
|
||||
0xd9,0x0d,0xb0,0x1b,0x35,0xdc,0x85,0x12,0xa5,0x49,0x60,0x24,0x07,0x15,0xcf,0xef,
|
||||
0x38,0xd9,0x69,0xc3,0xed,0xcb,0x84,0x0f,0x4a,0xc2,0x37,0xaf,0xa2,0x23,0x5e,0x76,
|
||||
0xef,0x93,0x58,0xe3,0xc4,0x32,0xef,0xb0,0x9b,0xfb,0x56,0xd0,0x94,0x0e,0x57,0xf1,
|
||||
0x4c,0x82,0x42,0x12,0x3d,0xcb,0x88,0x2e,0x37,0xc1,0xed,0xf7,0x9c,0xfa,0x80,0x6a,
|
||||
0x0f,0x78,0x36,0xeb,0x59,0xc2,0xf5,0xe2,0xf1,0xa7,0xd2,0xd6,0x7e,0xcf,0xcc,0x61,
|
||||
0x15,0xc7,0x1c,0xfe,0xcc,0xc8,0xc9,0x5b,0x89,0xf7,0xec,0x14,0xd1,0x7f,0x9f,0x7e,
|
||||
0x52,0x8a,0xfa,0xcb,0xe1,0xd6,0x35,0xf6,0xb6,0x0c,0xd8,0x64,0x37,0x92,0x1e,0xe1,
|
||||
0xf4,0xfb,0xa7,0xe9,0xb7,0xab,0x4a,0xc7,0x4e,0xdd,0x2e,0xbf,0x55,0x74,0x94,0xa5,
|
||||
0x2b,0xa9,0x2b,0x74,0xae,0x8f,0x3a,0xcb,0xa1,0xe0,0x18,0x46,0x43,0x94,0x5c,0x39,
|
||||
0xf8,0x0b,0x25,0xba,0x45,0xca,0x47,0x07,0x8f,0xbb,0x65,0xb5,0x38,0xae,0xff,0x00,
|
||||
0x92,0x4d,0x77,0x95,0x0e,0x3c,0x58,0xf5,0x15,0x78,0x1e,0xce,0xaf,0x90,0x98,0x7d,
|
||||
0x51,0xe5,0x64,0xb7,0x08,0xb6,0x54,0x29,0xb3,0xc2,0xba,0x4a,0x8b,0xee,0x8f,0xc9,
|
||||
0x4d,0xb0,0xb4,0x9f,0xc1,0x44,0x7b,0xd1,0x15,0x1c,0x66,0x99,0x6d,0xcf,0x50,0xb3,
|
||||
0x2b,0xe6,0x4d,0x77,0x70,0x3f,0x77,0xbd,0x4e,0x7a,0xe1,0x29,0x68,0x4f,0x01,0x4e,
|
||||
0xba,0xb2,0xb5,0x70,0x3d,0x87,0x2a,0x3c,0x0f,0x61,0x57,0xdb,0xb5,0xed,0x23,0x6f,
|
||||
0x43,0x74,0x1b,0x0f,0xc4,0x02,0x14,0x99,0x91,0x21,0x25,0xe9,0xe5,0x5e,0xa6,0x5b,
|
||||
0xa4,0xb8,0xff,0x00,0xe8,0x16,0xb5,0x24,0x7f,0x2a,0x52,0x2a,0x9f,0x76,0x11,0xa4,
|
||||
0xeb,0xd5,0xcd,0xd0,0xe2,0x10,0xdc,0x60,0x3d,0x6c,0xb3,0xbd,0xf6,0xe4,0xfe,0xa0,
|
||||
0x0a,0x43,0x51,0xc8,0x52,0x02,0x81,0xf5,0x0a,0x77,0xca,0x41,0x1f,0xcf,0xf4,0xab,
|
||||
0xb1,0xc2,0xb5,0x23,0x17,0xd4,0x76,0xee,0xae,0x63,0x37,0xc8,0x77,0xb4,0xda,0xe6,
|
||||
0xb9,0x6e,0x9a,0x62,0x39,0xd7,0xe4,0x48,0x6c,0xf0,0xa4,0x2b,0xfe,0xc7,0xd0,0x8e,
|
||||
0xe0,0x91,0x5f,0x38,0xfc,0x57,0xc4,0x64,0x90,0xc3,0x87,0x44,0x09,0x6b,0x3b,0xef,
|
||||
0xb7,0x00,0x9b,0xb5,0x97,0xe9,0xf7,0xb9,0xe6,0xea,0xfa,0x9d,0xbc,0xb9,0x6b,0xad,
|
||||
0xe8,0xe5,0x4f,0xe1,0x9b,0x56,0xd4,0xcb,0x9c,0x64,0xa8,0xbf,0xf6,0x42,0xe2,0x24,
|
||||
0xa3,0xd5,0x3e,0x7a,0x92,0xc1,0x57,0xe8,0x1d,0x27,0xf4,0xaa,0x3a,0xd2,0xcd,0x2d,
|
||||
0xc8,0xf5,0x97,0x39,0xb6,0x62,0x78,0xad,0xbd,0x77,0x0b,0xbc,0xf7,0x3a,0x52,0x91,
|
||||
0xd9,0x0d,0x23,0xf7,0x9d,0x71,0x5f,0xba,0x84,0x8e,0xe5,0x47,0xfe,0x7c,0x0a,0xf4,
|
||||
0x3d,0x91,0x63,0xd6,0xdc,0xb6,0xc3,0x70,0xb2,0xde,0x61,0x33,0x72,0xb5,0x4f,0x61,
|
||||
0x71,0xa5,0x44,0x90,0x9e,0xa4,0x3a,0xda,0x87,0x0a,0x49,0x1f,0x88,0x35,0x87,0x69,
|
||||
0x1e,0xdf,0xf4,0xf3,0x42,0x20,0x48,0x89,0x82,0x62,0xd0,0xf1,0xf4,0xc9,0x3c,0xbe,
|
||||
0xf3,0x65,0x6f,0x48,0x77,0xbf,0x20,0x2d,0xe7,0x54,0xa7,0x14,0x90,0x7d,0x12,0x55,
|
||||
0xc0,0xf6,0x02,0xb4,0xcc,0xab,0x9d,0x21,0xcb,0x18,0x65,0x45,0x3b,0x21,0x2e,0x9d,
|
||||
0xee,0xbb,0x4e,0xda,0x78,0x03,0xbd,0xbd,0xf6,0x3b,0xd8,0x0d,0xef,0xc8,0x52,0xc9,
|
||||
0x17,0x68,0xe0,0x6f,0xb2,0xe3,0xed,0xdf,0x43,0x6c,0xdb,0x76,0xd2,0x7b,0x3e,0x17,
|
||||
0x67,0x21,0xff,0x00,0x86,0x05,0xe9,0xb3,0xbc,0xb0,0x85,0xcd,0x94,0xbe,0x3c,0xd7,
|
||||
0x94,0x07,0xd7,0x80,0x90,0x09,0x24,0x21,0x28,0x4f,0x27,0xa7,0x9a,0xd3,0xd9,0x1c,
|
||||
0xe6,0xb7,0x3d,0xba,0xcb,0x76,0x2b,0x19,0x49,0x93,0x80,0xe9,0x43,0xe8,0xbb,0xdd,
|
||||
0x9d,0x4a,0x7a,0x9b,0x99,0x7c,0x21,0x49,0x8f,0x1f,0x9f,0x4e,0x19,0x1d,0x6a,0x3c,
|
||||
0x73,0xf3,0x05,0xa4,0x8f,0x43,0x5c,0x5d,0xf8,0x6f,0x46,0x06,0xdd,0xf0,0xf9,0x38,
|
||||
0xde,0x39,0x31,0x99,0x3a,0x91,0x74,0x67,0xa2,0x3b,0x48,0x3d,0x5f,0x66,0x34,0xa1,
|
||||
0xc1,0x92,0xe0,0xf6,0x57,0x1f,0xd5,0xa4,0xfa,0x9e,0x14,0x41,0x48,0xe0,0xff,0x00,
|
||||
0x7e,0x18,0x62,0xd0,0xf6,0xd4,0xad,0x93,0x60,0xbc,0x64,0x5e,0x66,0xdd,0x67,0xbf,
|
||||
0x7c,0x79,0x6b,0x2b,0x71,0x73,0x0b,0xc4,0x02,0xb2,0x7b,0xf2,0x58,0x11,0xcf,0xeb,
|
||||
0xcf,0xa9,0x35,0x8e,0x8e,0x92,0xba,0x9b,0x0d,0x9b,0x33,0x56,0x02,0x5f,0x2b,0xb4,
|
||||
0x30,0x9e,0x6e,0xf0,0x75,0x49,0xe9,0x60,0x5a,0xdf,0xc4,0x6e,0x38,0x0b,0xd5,0xc1,
|
||||
0x70,0x60,0xf0,0x5b,0x97,0x71,0xfa,0xdd,0x6e,0xdb,0xd6,0x8f,0x5f,0xf3,0x59,0xe9,
|
||||
0x4b,0xef,0x44,0x6b,0xca,0x83,0x11,0x47,0xff,0x00,0x9a,0x96,0xbf,0x95,0x96,0xfd,
|
||||
0x47,0x6e,0xae,0xea,0x23,0xb8,0x4a,0x54,0x78,0x3c,0x71,0x54,0x07,0x93,0x64,0x97,
|
||||
0x3c,0xc7,0x21,0xb9,0x5f,0x6f,0x53,0x1c,0xb8,0x5d,0xae,0x52,0x1c,0x97,0x2e,0x53,
|
||||
0xbc,0x75,0x3a,0xea,0xd4,0x54,0xa5,0x1e,0x3b,0x0e,0x49,0x3d,0x80,0x00,0x7b,0x54,
|
||||
0xbe,0xf1,0x39,0xdc,0x90,0xd5,0xad,0x59,0x46,0x11,0x64,0x96,0x1d,0xc5,0xf1,0x15,
|
||||
0xad,0x97,0x14,0xd2,0xc9,0x44,0xab,0x81,0xec,0xf2,0xfe,0x84,0x37,0xc7,0x96,0x9e,
|
||||
0xdd,0x88,0x70,0x82,0x42,0xea,0x31,0xe8,0xb6,0x9b,0x48,0xd6,0x0d,0x58,0xc5,0x30,
|
||||
0xc8,0xca,0x71,0xb5,0x5e,0x6e,0x0d,0x45,0x71,0xd6,0x93,0xd4,0xa6,0x9a,0x2a,0xe5,
|
||||
0xd7,0x00,0xfe,0x44,0x05,0xab,0xfb,0x35,0xdd,0x72,0x0e,0x06,0xcc,0xbf,0x83,0xbb,
|
||||
0x10,0xab,0x1a,0x64,0x90,0x6b,0x71,0x3f,0x75,0x80,0x5c,0x0f,0xa7,0x78,0xfa,0xd8,
|
||||
0xf0,0xac,0xe6,0x7e,0xb7,0x69,0x0a,0xe6,0xfc,0x3e,0x30,0x09,0x5a,0x7b,0xb4,0xcc,
|
||||
0x22,0x34,0xe6,0xc3,0x53,0x6e,0x6d,0x3b,0x77,0x71,0x00,0xf3,0xc2,0x24,0x38,0xa7,
|
||||
0x1a,0xfd,0x4b,0x45,0xa2,0x47,0xb1,0x24,0x7b,0x55,0x7c,0x78,0xa9,0xea,0x40,0xcc,
|
||||
0xb7,0x30,0x6c,0x0c,0x15,0x7c,0x2e,0x2d,0x6d,0x62,0x09,0xef,0xca,0x54,0xfb,0x83,
|
||||
0xcf,0x71,0x43,0xf4,0x75,0xb4,0x1f,0xc5,0xb3,0x57,0x11,0x02,0x0c,0x3b,0x15,0xae,
|
||||
0x3c,0x38,0xad,0x22,0x24,0x08,0x6c,0xa5,0x96,0x9b,0x4f,0x64,0xb4,0xda,0x13,0xc2,
|
||||
0x40,0xfc,0x00,0x03,0xfb,0xab,0xcf,0x1e,0xb5,0x67,0xcb,0xd5,0x2d,0x5d,0xcc,0xb2,
|
||||
0xd5,0x85,0xa5,0x37,0x9b,0xb4,0x99,0x8d,0x21,0x67,0x92,0xdb,0x4a,0x70,0x96,0xd1,
|
||||
0xfd,0x94,0x74,0xa7,0xf4,0xad,0x13,0xe1,0xd3,0x1d,0x8c,0x66,0x1a,0xcc,0x62,0x41,
|
||||
0xc5,0xcf,0xa1,0x91,0xdb,0x7f,0xa8,0x70,0x53,0x4f,0xdd,0x60,0x6a,0xde,0x1e,0x1a,
|
||||
0x98,0x2b,0xd9,0xa6,0xed,0xb1,0x99,0x01,0xb0,0xe4,0x4b,0x0c,0x79,0x37,0x79,0x3c,
|
||||
0xfe,0xea,0x52,0xd9,0x6d,0xb2,0x3f,0xfc,0xaf,0x35,0x57,0x3f,0x98,0xe4,0x28,0xc4,
|
||||
0x71,0x1b,0xe5,0xf5,0xc0,0x0b,0x76,0xb8,0x2f,0xcd,0x50,0x3e,0x9c,0x36,0xda,0x96,
|
||||
0x7f,0xe9,0xaa,0xe1,0xf0,0x73,0xc2,0x1c,0x5d,0xc3,0x51,0xf3,0x07,0x59,0x29,0x69,
|
||||
0xb6,0xa2,0xda,0x63,0x3c,0x47,0x65,0x15,0x15,0x3a,0xf2,0x47,0xe5,0xd2,0xc1,0xfe,
|
||||
0xd0,0xa9,0xa1,0xbc,0xbc,0x88,0xe2,0xdb,0x56,0xd5,0x19,0xc9,0x07,0xa9,0x76,0x37,
|
||||
0xe1,0x82,0x3d,0x8b,0xe3,0xc8,0xe7,0xf4,0xf3,0x79,0xac,0x2e,0x7d,0x97,0xed,0x5c,
|
||||
0xd6,0xca,0x21,0xb8,0x6f,0x67,0x1f,0xe6,0x37,0x3f,0xf6,0xb2,0xf7,0x08,0xd3,0x1d,
|
||||
0xd5,0x07,0x49,0x92,0xec,0xc9,0x2e,0xc8,0x7d,0xc5,0x3a,0xfb,0xab,0x2e,0x38,0xe2,
|
||||
0xcf,0x2a,0x52,0x89,0xe4,0x92,0x7e,0xa4,0xd5,0xde,0xec,0x0b,0x6d,0x23,0x6f,0x3a,
|
||||
0x2b,0x19,0x77,0x48,0xa1,0xac,0xcb,0x23,0x08,0xb8,0x5d,0x89,0xfd,0xb6,0x07,0x1f,
|
||||
0x73,0x1b,0xd0,0x71,0xe5,0xa5,0x47,0xa8,0x7f,0x1a,0xdc,0xee,0x40,0x15,0x5f,0x5e,
|
||||
0x1a,0xdb,0x72,0xff,0x00,0x3c,0xda,0xd4,0x8c,0x96,0xed,0x18,0xb9,0x8b,0x62,0x0a,
|
||||
0x6e,0x6b,0xc1,0x68,0xe5,0x12,0x26,0x12,0x4c,0x76,0x7b,0xfa,0x80,0x52,0x5c,0x57,
|
||||
0xaf,0x66,0xc0,0x3f,0xb6,0x0d,0x59,0x4e,0xf6,0xb5,0xb0,0xe8,0x46,0xdd,0x32,0x6b,
|
||||
0xf4,0x57,0x92,0xcd,0xee,0x6a,0x05,0xaa,0xd4,0x54,0xae,0x0f,0xc4,0xbc,0x08,0x0b,
|
||||
0x4f,0xe2,0x84,0x07,0x1c,0x03,0xfd,0x9d,0x6d,0xff,0x00,0x11,0x31,0x59,0x71,0x1a,
|
||||
0xb8,0x32,0xc5,0x01,0xef,0x38,0xb7,0x5f,0xa9,0xf9,0x5a,0x7c,0x87,0xcc,0x7d,0xba,
|
||||
0x28,0xa0,0x68,0x68,0x32,0x39,0x64,0x5a,0x0d,0xaf,0x96,0x8d,0x79,0x19,0xbb,0xb6,
|
||||
0x72,0xd2,0xa2,0xe3,0xb9,0x0b,0xf6,0x56,0xde,0x69,0xc0,0xb4,0xc9,0x6d,0xb4,0x36,
|
||||
0x52,0xfa,0x48,0xed,0xd2,0xb2,0xa5,0xf0,0x47,0xa8,0x4f,0x35,0xa3,0xfc,0x4d,0xb5,
|
||||
0xd2,0x4e,0x95,0xe8,0xd5,0xb3,0x1a,0xb5,0x3c,0xa8,0xf7,0x8c,0xbe,0x6f,0xc2,0x97,
|
||||
0x50,0xa2,0x95,0x37,0x0d,0xa2,0x85,0xc8,0x29,0x23,0xdd,0x45,0x4d,0x36,0x47,0xa1,
|
||||
0x4b,0x8b,0xfc,0x2a,0x2c,0x78,0x47,0x6a,0x91,0xc7,0x35,0x93,0x21,0xc1,0xe4,0xc8,
|
||||
0x42,0x22,0x64,0xb6,0xff,0x00,0x88,0x8e,0xda,0xcf,0x75,0x4a,0x8d,0xca,0x80,0x4f,
|
||||
0xe6,0xd2,0xdf,0x27,0xeb,0xe5,0x8f,0xa5,0x61,0xbe,0x25,0x5a,0x94,0x9d,0x42,0xdd,
|
||||
0xa4,0x8b,0x4c,0x69,0x3f,0x11,0x6f,0xc6,0x58,0x8d,0x67,0x40,0x42,0xf9,0x6c,0x3d,
|
||||
0xcf,0x9a,0xff,0x00,0x03,0xd9,0x41,0x6e,0x96,0xd5,0xef,0xcb,0x5c,0x7b,0x0a,0xc2,
|
||||
0xe1,0xf9,0x3a,0x3a,0x4c,0xe4,0x28,0xf4,0xde,0x18,0x9a,0x24,0x17,0xf1,0x00,0x00,
|
||||
0x3f,0xdf,0xeb,0x62,0xbd,0xba,0x4b,0xc5,0x7f,0x15,0x73,0x2c,0x38,0x5d,0x65,0xb5,
|
||||
0x9f,0x55,0x24,0x2b,0xfe,0x15,0x01,0x7c,0x3a,0xd2,0x9b,0x7e,0xe5,0x37,0x3b,0x01,
|
||||
0x09,0xe9,0x42,0x6f,0x9f,0x28,0xe3,0xd0,0x26,0x64,0xd0,0x3f,0xea,0xa9,0xf4,0xca,
|
||||
0x3c,0xb6,0x50,0x8f,0xe1,0x48,0x15,0x5f,0xdb,0x0d,0x7d,0x2c,0x6f,0x3f,0x72,0xb0,
|
||||
0xca,0x90,0x16,0xe5,0xca,0x4b,0xa1,0x1c,0xfc,0xc4,0x26,0x7b,0xc0,0x90,0x3e,0x83,
|
||||
0xac,0x73,0xf9,0x8a,0xd0,0x70,0x21,0xab,0x07,0xc5,0x9a,0x3f,0xa2,0x33,0xf4,0x90,
|
||||
0x29,0x5f,0xf3,0x35,0x6d,0x0f,0x13,0xe9,0xb7,0xcb,0x66,0xd6,0x65,0xcd,0xb1,0xdd,
|
||||
0x66,0xda,0x94,0xc5,0xda,0x21,0x96,0xb8,0x4f,0xa9,0x95,0x3a,0xc2,0xba,0xd0,0x5b,
|
||||
0x51,0x49,0x04,0xa4,0xad,0x6d,0x92,0x3d,0x39,0x48,0xa8,0xdb,0xe1,0x3d,0xaf,0x17,
|
||||
0xf9,0x7a,0x8d,0x7e,0xd3,0xcb,0xe5,0xf2,0x5d,0xca,0xd7,0x32,0xda,0x67,0x5b,0x99,
|
||||
0x9f,0x25,0x6e,0xf9,0x0f,0x32,0xb1,0xd6,0x86,0x42,0x89,0xe9,0x0a,0x43,0x8a,0x52,
|
||||
0x80,0xff,0x00,0x54,0x0f,0xb1,0xa9,0x99,0xbe,0xfc,0x49,0xcc,0xcf,0x69,0x1a,0x93,
|
||||
0x09,0xa1,0xcb,0xb1,0xad,0xc2,0xe4,0x0f,0x1e,0x82,0x33,0xa8,0x90,0xbf,0xfd,0x0d,
|
||||
0x2b,0xfb,0xea,0x9f,0xf6,0x81,0x9b,0x2b,0x4f,0x77,0x39,0xa6,0xd7,0xa0,0xf2,0x63,
|
||||
0xb6,0x9b,0xcb,0x31,0x1e,0x75,0x67,0x84,0xa5,0x99,0x1c,0xb0,0xe1,0x27,0xd8,0x74,
|
||||
0x3a,0xaa,0xe8,0xf9,0x4a,0x8a,0x1c,0x63,0x26,0xd7,0x51,0x96,0x82,0xf6,0x97,0x11,
|
||||
0xb6,0xf7,0x0d,0x6b,0x9b,0xfa,0x82,0x3d,0x14,0x32,0x12,0xd9,0x5a,0x55,0xdf,0xeb,
|
||||
0xae,0x96,0xc4,0xd6,0xad,0x21,0xca,0xf0,0xa9,0x9c,0x25,0x37,0x78,0x2b,0x65,0x97,
|
||||
0x4f,0xff,0x00,0x49,0xf1,0xf3,0x32,0xe7,0xf6,0x5c,0x4a,0x15,0xc7,0xbf,0x1c,0x7b,
|
||||
0xd4,0x65,0xf0,0xad,0xce,0xe7,0xdc,0x74,0x5b,0x21,0xc0,0x6f,0x08,0x53,0x17,0x6c,
|
||||
0x26,0xf0,0xe4,0x53,0x15,0xd4,0xf4,0xb8,0xc3,0x2f,0x15,0x2c,0x21,0x60,0xf7,0xe4,
|
||||
0x3c,0x99,0x23,0xbf,0xd0,0x0f,0x6a,0x9a,0xde,0x95,0x0b,0xe0,0xd8,0x9b,0xd0,0x1f,
|
||||
0x11,0xdf,0x31,0x89,0x21,0x8c,0x7b,0x56,0xec,0xef,0xb9,0xf0,0xfc,0x84,0x36,0x8b,
|
||||
0x93,0x1c,0x2d,0x7c,0x8f,0x72,0xae,0x85,0x28,0x13,0xea,0xa9,0x2a,0x15,0xcc,0xf0,
|
||||
0x79,0xbf,0x8c,0xc2,0xab,0x70,0x97,0xf3,0x6e,0xd9,0x9f,0xdd,0x1f,0xcf,0x6f,0x33,
|
||||
0x1d,0xff,0x00,0x2a,0x9d,0xc2,0xce,0x0e,0xf6,0x5d,0x5f,0x8b,0x46,0x95,0x2b,0x2c,
|
||||
0xd0,0xcb,0x46,0x67,0x15,0x94,0xae,0x5e,0x29,0x70,0x01,0xf5,0x7a,0x11,0x12,0x4f,
|
||||
0x4b,0x6b,0x23,0xeb,0xc3,0xa2,0x3f,0x6f,0xa1,0x51,0xa8,0xff,0x00,0xe1,0xd7,0xbe,
|
||||
0x37,0x34,0xea,0xeb,0x03,0x4b,0xf3,0xcb,0x81,0x38,0x94,0xc7,0x03,0x36,0x8b,0x9c,
|
||||
0x85,0x73,0xf6,0x63,0xca,0x3d,0x9a,0x59,0xff,0x00,0x52,0xb5,0x1e,0x01,0x3d,0x9b,
|
||||
0x51,0xe4,0xf0,0x92,0x4a,0x6c,0x2f,0x75,0x91,0xf1,0xcb,0x86,0xdd,0xf3,0xeb,0x76,
|
||||
0x51,0x78,0x81,0x62,0xb6,0xce,0xb4,0xc8,0x8e,0xdc,0xdb,0x8b,0xa1,0xb6,0x91,0x20,
|
||||
0xa0,0x96,0x0f,0x7f,0xda,0x3e,0x60,0x41,0x09,0x1d,0xc9,0x1c,0x0e,0xf5,0xe7,0xf6,
|
||||
0xba,0xe6,0x45,0xa4,0x83,0x32,0xe5,0xa9,0xb0,0x9a,0xe6,0xdd,0xac,0x71,0xd2,0x6d,
|
||||
0xf2,0xdc,0x5c,0x16,0x9e,0xa1,0xd7,0xf6,0x36,0x3b,0x1d,0xed,0xa6,0x26,0x37,0x87,
|
||||
0x05,0xe9,0x6f,0xd2,0xa9,0x23,0x73,0x38,0xbc,0xcd,0xa0,0x6f,0x71,0x77,0x9b,0x0a,
|
||||
0x5c,0x8d,0x16,0x2d,0xd6,0x3e,0x53,0x68,0x00,0x74,0x82,0xca,0xdd,0xf3,0x14,0xd0,
|
||||
0xe3,0xd5,0xb0,0xe2,0x5e,0x67,0x8f,0x74,0xa3,0x83,0xea,0x6a,0x6c,0x78,0x67,0xee,
|
||||
0xc5,0xdd,0x5d,0xc2,0x1d,0xd3,0xdc,0x9e,0x61,0x7b,0x2d,0xc6,0xe3,0xa5,0x51,0x24,
|
||||
0xbb,0xfb,0x53,0xad,0xe3,0x84,0x82,0xa3,0xcf,0x75,0xb4,0x4a,0x50,0xa2,0x78,0xe5,
|
||||
0x2a,0x6c,0xfc,0xc7,0xac,0xd6,0x15,0xe2,0xb1,0x89,0x59,0x75,0x23,0x4c,0x2c,0x3a,
|
||||
0x85,0x8c,0xdd,0x2d,0xb7,0xa7,0xb1,0x5b,0x8a,0xad,0x37,0x45,0xdb,0x64,0x36,0xf9,
|
||||
0x65,0xa7,0xf8,0xe9,0x0e,0x29,0x0a,0x3d,0x25,0x0e,0xa1,0x29,0xe9,0x3d,0xf9,0x78,
|
||||
0xfa,0x77,0xad,0x77,0x27,0x36,0xaf,0x2a,0x66,0x87,0xe1,0x75,0x63,0xba,0xfe,0xe1,
|
||||
0x3e,0x06,0xfb,0xb1,0xde,0xfc,0x0f,0xee,0x23,0x90,0xbd,0xcb,0x69,0x23,0xd4,0x15,
|
||||
0xa8,0x63,0x99,0x04,0x0c,0xb3,0x1e,0xb5,0xdf,0x2d,0x52,0x51,0x32,0xd7,0x73,0x8a,
|
||||
0xd4,0xd8,0x92,0x5b,0x3c,0xa5,0xd6,0x5c,0x40,0x5a,0x16,0x3f,0x02,0x95,0x03,0xfa,
|
||||
0xd7,0x63,0x51,0x47,0xc3,0x03,0x53,0x9b,0xd4,0xad,0x9c,0x61,0xc8,0x2f,0x17,0xa7,
|
||||
0xe3,0xaa,0x7a,0xc1,0x2c,0x1f,0xdc,0x2c,0xab,0xa9,0x94,0x8f,0xc3,0xc8,0x71,0x8f,
|
||||
0xf8,0xfd,0x2a,0x57,0x57,0xd4,0xcb,0x1e,0x95,0x53,0xde,0x38,0x39,0x8a,0x9c,0xbc,
|
||||
0xe9,0x5e,0x28,0xdb,0xe4,0x25,0x98,0xf3,0x6e,0x8f,0xb0,0x0f,0x62,0x56,0xa6,0x9b,
|
||||
0x69,0x44,0x7e,0x1e,0x5b,0xa0,0x7e,0x66,0xad,0x86,0xb4,0x06,0x7f,0xb3,0x2c,0x1b,
|
||||
0x58,0x37,0x00,0xce,0xa8,0x67,0xf1,0x1b,0xca,0x15,0x6d,0xb5,0xb1,0x6a,0xb4,0xd8,
|
||||
0xa5,0x36,0x0c,0x26,0x52,0x85,0xba,0xe2,0x9d,0x79,0x07,0xb3,0xcb,0x2a,0x79,0x40,
|
||||
0x25,0x43,0xa4,0x00,0x09,0x0a,0x3c,0x74,0x91,0x52,0x06,0xdf,0x62,0xeb,0x85,0xaa,
|
||||
0x36,0x41,0x2f,0x49,0x71,0x9c,0x96,0x70,0xbe,0x40,0x5d,0xa2,0x5d,0xca,0xc7,0x67,
|
||||
0x7a,0x4a,0x92,0xca,0x96,0x92,0xb4,0xb6,0xf2,0x50,0x7c,0xb5,0x72,0x90,0x3a,0x81,
|
||||
0x04,0x7b,0x10,0x78,0x23,0xbc,0xc2,0xf4,0xfb,0x72,0xdb,0x5f,0xbe,0xaf,0x28,0xb1,
|
||||
0x61,0x59,0xc6,0x26,0xf3,0x6d,0x7f,0x48,0x93,0xf6,0x2b,0xeb,0x8a,0xe3,0x5e,0xa5,
|
||||
0x2f,0x02,0x82,0xda,0xd2,0x3d,0x78,0x57,0x3c,0x11,0xcf,0x62,0x39,0xaf,0x43,0x90,
|
||||
0xe1,0xc7,0xb7,0x44,0x62,0x24,0x46,0x1b,0x8b,0x15,0x84,0x25,0xa6,0x98,0x65,0x01,
|
||||
0x08,0x6d,0x09,0x1c,0x25,0x29,0x48,0xec,0x00,0x00,0x00,0x07,0xa5,0x7d,0xaa,0xce,
|
||||
0x4a,0x2a,0x69,0x44,0x82,0x48,0xda,0x7b,0x4f,0x9a,0xe0,0x1d,0x56,0xd8,0x5f,0xad,
|
||||
0xbc,0xd5,0x6e,0x47,0x8a,0xa5,0xcb,0x1f,0x8c,0x46,0x69,0x1a,0xdc,0x86,0xee,0xf8,
|
||||
0x05,0x8e,0xe1,0x38,0x0e,0x0c,0x88,0x92,0xde,0x8c,0x85,0x1f,0xaf,0x42,0xba,0xff,
|
||||
0x00,0xea,0xac,0x1f,0x51,0xfc,0x56,0x35,0x8b,0x32,0x80,0xe4,0x2b,0x1b,0x16,0x5c,
|
||||
0x2d,0x95,0xff,0x00,0xf7,0x36,0xd8,0xea,0x7a,0x57,0x1e,0xe3,0xad,0xe5,0x29,0x23,
|
||||
0xf3,0x4a,0x01,0x1f,0x5a,0xb0,0xfd,0xf0,0x78,0x75,0x62,0x3b,0x8d,0xc7,0x6e,0x99,
|
||||
0x1e,0x29,0x6d,0x8b,0x8e,0xea,0x7b,0x48,0x5c,0x86,0x65,0xc5,0x4a,0x59,0x66,0xea,
|
||||
0xe7,0xed,0x16,0xa5,0x0e,0xc0,0xa9,0x5d,0xc0,0x77,0xb2,0x81,0x20,0xa8,0xa9,0x23,
|
||||
0x8a,0xa2,0xdb,0xad,0xa6,0x6d,0x8e,0xeb,0x32,0xd9,0x70,0x8a,0xec,0x3b,0x84,0x37,
|
||||
0x97,0x1e,0x44,0x57,0x90,0x52,0xe3,0x4e,0xa1,0x45,0x2a,0x42,0x81,0xee,0x08,0x20,
|
||||
0x82,0x3f,0x0a,0xd5,0x62,0xc9,0x59,0x7a,0x09,0x7b,0x56,0x51,0xb6,0xfe,0x77,0x23,
|
||||
0xe8,0x49,0x1f,0xa2,0x93,0xb5,0x79,0xf1,0x4b,0xb5,0xda,0x75,0xfa,0xe7,0x2a,0xe3,
|
||||
0x73,0x9b,0x22,0xe3,0x70,0x94,0xe2,0x9e,0x91,0x2e,0x5b,0xaa,0x75,0xd7,0x96,0xa3,
|
||||
0xca,0x94,0xb5,0xa8,0x92,0xa5,0x13,0xdc,0x92,0x79,0xac,0xff,0x00,0x49,0xb7,0x1d,
|
||||
0xa8,0xfa,0x1b,0x6f,0xbc,0xc1,0xc1,0xf2,0x99,0x56,0x18,0x97,0x74,0x74,0x4b,0x65,
|
||||
0xa4,0x36,0xe2,0x49,0xe0,0xa4,0x2d,0x1d,0x69,0x57,0x96,0xe0,0x07,0x8e,0xb4,0x70,
|
||||
0xaf,0x4e,0xfd,0x85,0x62,0xb2,0xf4,0xfb,0x29,0xb7,0xda,0x45,0xd6,0x56,0x35,0x78,
|
||||
0x8d,0x6c,0x23,0x91,0x35,0xe8,0x0e,0xa1,0x92,0x3e,0xbd,0x65,0x3d,0x3e,0xe3,0xde,
|
||||
0xba,0x0a,0xdb,0x27,0xa5,0xa7,0xa9,0x8b,0xb0,0x9e,0x30,0xe6,0x6d,0xb1,0x00,0x8d,
|
||||
0xb8,0xd8,0xed,0xb7,0x82,0x8c,0x12,0x0d,0xc2,0xfd,0x5a,0xd4,0xe2,0xd4,0xa5,0x28,
|
||||
0xa9,0x4a,0x3c,0x95,0x13,0xc9,0x26,0xac,0x0b,0xc2,0x23,0x48,0xd5,0x7b,0xd4,0x5c,
|
||||
0x9f,0x51,0x25,0xb0,0x95,0x44,0xb1,0x45,0x16,0xd8,0x2b,0x5a,0x79,0x3f,0x14,0xff,
|
||||
0x00,0x75,0xa9,0x07,0xd8,0xa5,0xa4,0x94,0x9f,0xc1,0xf1,0xf8,0xd5,0x7e,0x54,0xd4,
|
||||
0xda,0xc7,0x88,0x55,0x9b,0x6b,0xda,0x57,0x03,0x0e,0x85,0xa7,0x0f,0x5f,0x1f,0x72,
|
||||
0x5b,0xb3,0xae,0x97,0x45,0x5e,0x44,0x72,0xf3,0xcb,0x57,0x48,0xe8,0x6b,0xc8,0x5f,
|
||||
0x01,0x2d,0x21,0xa4,0xf7,0x57,0x72,0x92,0x7b,0x73,0x5a,0x96,0x72,0xa7,0xc4,0x6b,
|
||||
0x30,0x69,0x69,0x30,0xc8,0xf5,0xc9,0x25,0x9b,0xc8,0x16,0x6f,0x2e,0xdd,0xc4,0x0d,
|
||||
0xc0,0xb7,0x5d,0xd4,0xb1,0x16,0x87,0x5d,0xc5,0x59,0xb6,0xe8,0x73,0xbf,0xf3,0x69,
|
||||
0xb7,0x7d,0x43,0xc8,0x92,0xe9,0x66,0x44,0x5b,0x34,0x84,0x46,0x70,0x7e,0xec,0x87,
|
||||
0x13,0xe5,0x32,0x7f,0xf3,0x16,0x8a,0xf3,0xeb,0x56,0x8b,0xbc,0x9d,0xe1,0xe1,0xba,
|
||||
0xe7,0xb2,0x09,0x53,0x71,0x39,0x0b,0x44,0x9b,0xbd,0xea,0x1d,0xa6,0x7d,0xaa,0x59,
|
||||
0x4a,0x65,0xc0,0x50,0x2b,0x93,0xca,0xd2,0x09,0xe5,0x2a,0xf8,0x6f,0x95,0x60,0x90,
|
||||
0x41,0xf6,0x21,0x40,0x55,0xd5,0x6a,0x9f,0x0c,0xb0,0xa9,0xb0,0xdc,0x3e,0xa0,0xd5,
|
||||
0x30,0xb2,0x43,0x21,0x04,0x1e,0x6c,0xd0,0x2d,0xfa,0x93,0xff,0x00,0x8a,0x49,0xdc,
|
||||
0x1c,0x45,0x95,0x9a,0xed,0x97,0x5d,0xec,0x1b,0x32,0xd8,0x8d,0xa7,0x26,0xbb,0x32,
|
||||
0x2e,0x19,0x06,0x5b,0x74,0x9d,0x36,0xd3,0x65,0x4a,0xfa,0x1c,0x94,0xb4,0x28,0x47,
|
||||
0xeb,0x51,0xe0,0xf4,0xb6,0x90,0xc2,0x49,0x57,0x1e,0x8a,0x48,0x1c,0x95,0x0a,0x84,
|
||||
0xda,0xcf,0xba,0xdd,0x50,0xd7,0x99,0xd3,0x17,0x94,0xe5,0x73,0x55,0x6c,0x90,0xa2,
|
||||
0x45,0x8e,0x0b,0xaa,0x8f,0x6f,0x6d,0x3d,0x5c,0xa5,0x21,0x94,0x9e,0x15,0xd3,0xdb,
|
||||
0x85,0x2f,0xa9,0x5d,0x87,0x2a,0x27,0xbd,0x61,0x19,0xd6,0x7f,0x72,0xcf,0xa4,0x59,
|
||||
0xd5,0x3d,0x49,0x44,0x6b,0x3d,0xae,0x35,0x9e,0x04,0x66,0xc7,0x08,0x62,0x3b,0x28,
|
||||
0xe0,0x01,0xf8,0xa9,0x45,0x6e,0x28,0xfb,0xad,0xc5,0x1e,0xdc,0xf0,0x31,0xaa,0xdb,
|
||||
0xf0,0xac,0xb5,0x4b,0x47,0x53,0x36,0x25,0x3b,0x03,0xaa,0x25,0x71,0x71,0x27,0x7d,
|
||||
0x20,0x9d,0x9a,0xde,0x96,0x16,0x04,0x8d,0xc9,0xf2,0xb0,0x11,0x3a,0x42,0x40,0x68,
|
||||
0xe1,0x5d,0xd7,0x86,0xbe,0x27,0x69,0xc6,0xf6,0x8b,0x89,0x4c,0xb6,0xa5,0x2a,0x7e,
|
||||
0xf2,0xec,0xbb,0x84,0xe7,0x81,0xfe,0xb1,0xff,0x00,0x88,0x5b,0x3f,0xa7,0x4a,0x19,
|
||||
0x42,0x38,0xfe,0x42,0x7d,0xcd,0x42,0x9f,0x15,0xed,0x6b,0xff,0x00,0x2d,0x75,0x96,
|
||||
0xdd,0x81,0x41,0x70,0x2a,0xd9,0x89,0x31,0xcc,0x82,0x85,0x73,0xd7,0x35,0xf4,0xa5,
|
||||
0x6b,0xe7,0xbf,0x1f,0x23,0x61,0xb4,0x8f,0x70,0xa2,0xe0,0xae,0x9b,0x65,0x9e,0x20,
|
||||
0x49,0xdb,0x36,0x09,0x7d,0xc4,0xb2,0x1b,0x1c,0xbc,0x86,0xd4,0x56,0xb9,0xd6,0x8f,
|
||||
0x83,0x75,0x29,0x5b,0x12,0x14,0x9e,0x14,0xd2,0xfa,0x8f,0x01,0xa5,0x10,0x95,0x72,
|
||||
0x9e,0xe9,0x3d,0x67,0xa5,0x7d,0x5d,0xa2,0x36,0x4b,0x90,0xce,0xcb,0xb2,0x3b,0xad,
|
||||
0xf6,0xe8,0xf1,0x93,0x73,0xba,0x4b,0x76,0x6c,0xa7,0x8f,0xab,0x8e,0xb8,0xb2,0xb5,
|
||||
0xab,0xf5,0x52,0x89,0xad,0x2f,0x01,0xca,0x75,0x54,0xf9,0xa6,0xb3,0x16,0xae,0x17,
|
||||
0x68,0x2e,0x31,0x9e,0xba,0xef,0xbf,0xf8,0xb7,0xbb,0xbf,0x5d,0xb8,0x52,0xbe,0x40,
|
||||
0x63,0x0d,0x0b,0x97,0x81,0xe6,0xf7,0x7d,0x36,0xcc,0xac,0xd9,0x4d,0x86,0x4f,0xc2,
|
||||
0x5e,0x2d,0x32,0x91,0x2e,0x33,0xbc,0x72,0x02,0xd2,0x79,0xe1,0x43,0xdd,0x27,0xb8,
|
||||
0x23,0xdc,0x12,0x3d,0xeb,0x97,0x02,0xed,0x37,0x39,0xd4,0xf8,0xd7,0x3b,0xb4,0x83,
|
||||
0x2a,0xe3,0x78,0xbc,0x26,0x44,0xb7,0xd4,0x38,0xf3,0x1d,0x75,0xe0,0xa5,0xa8,0x81,
|
||||
0xc7,0xa9,0x51,0x3d,0xab,0x17,0xae,0xdf,0x0e,0x94,0x98,0x39,0x7d,0x8e,0x4a,0xfb,
|
||||
0xa1,0x99,0xcc,0x38,0x7f,0x20,0xe2,0x4f,0xfd,0xab,0xae,0x4b,0x13,0x3b,0xf3,0x35,
|
||||
0xa3,0x5e,0x9b,0x5f,0xc6,0xdb,0x9b,0x5f,0xa5,0xd5,0xb0,0xe8,0xbd,0x22,0x1f,0x53,
|
||||
0x5e,0x7e,0x77,0x01,0x7f,0xb8,0x59,0x77,0x35,0xa9,0x77,0x1b,0x54,0xf9,0x36,0xe9,
|
||||
0xad,0xe4,0xf7,0x22,0xdc,0xa8,0x6f,0x29,0xa7,0x10,0x7e,0x25,0xc1,0xd9,0x49,0x20,
|
||||
0x8a,0x9f,0xbb,0x85,0xf1,0x58,0x6b,0x4e,0xf5,0x42,0x6e,0x33,0x83,0x63,0x30,0x32,
|
||||
0x6b,0x65,0xa6,0x42,0xa3,0xce,0xba,0xcc,0x94,0xb4,0xa6,0x4b,0x89,0x3c,0x2d,0x11,
|
||||
0xfa,0x07,0x01,0x29,0x20,0x8f,0x30,0xf5,0x05,0x1e,0x78,0x4f,0x1c,0x15,0x56,0x46,
|
||||
0x73,0x94,0x39,0x9c,0x66,0xd9,0x06,0x46,0xf3,0x3f,0x0e,0xf5,0xe2,0xe1,0x22,0xe0,
|
||||
0xb6,0x82,0xba,0xba,0x14,0xeb,0x8a,0x70,0xa7,0x9e,0x07,0x3c,0x15,0x71,0xcf,0x02,
|
||||
0xb8,0x87,0xc3,0x6c,0xb9,0x88,0x61,0x6e,0x96,0xaa,0xba,0x2d,0x2c,0x95,0x82,0xd7,
|
||||
0x22,0xfc,0xdf,0x71,0xc8,0xdb,0xaa,0xbb,0x9d,0xed,0x76,0xc0,0xa9,0x3b,0xa4,0xfe,
|
||||
0x21,0xf9,0x95,0x93,0x00,0xcb,0x70,0x5d,0x45,0x91,0x3b,0x39,0xc7,0xef,0x56,0x69,
|
||||
0x96,0xf6,0x26,0xc9,0x74,0x39,0x3e,0x1b,0x8e,0xb0,0xe2,0x12,0x4b,0x8b,0x3c,0xba,
|
||||
0x82,0xa5,0x00,0xa0,0xb2,0x54,0x07,0x74,0x9e,0xdd,0x2a,0x89,0x08,0x5a,0x9a,0x5a,
|
||||
0x56,0x85,0x14,0x2d,0x27,0x90,0xa4,0x9e,0x08,0x3f,0x51,0x5f,0x94,0xae,0xcb,0x47,
|
||||
0x85,0x51,0xe1,0xf2,0x4b,0x25,0x24,0x61,0x86,0x42,0x0b,0x80,0xd8,0x12,0x3c,0x6d,
|
||||
0xc0,0x3d,0x6d,0xcf,0xaa,0xb5,0x2e,0x2e,0xe5,0x5e,0x86,0xb0,0x6e,0xc6,0x36,0x93,
|
||||
0xed,0x32,0xcd,0xaa,0xc5,0x96,0x27,0xdd,0x6f,0x76,0xd8,0x2a,0xb6,0x43,0x75,0x45,
|
||||
0x2d,0xbf,0x32,0x4b,0x21,0xc0,0x15,0xc7,0x7e,0x94,0x0f,0x31,0x6a,0x03,0x82,0x43,
|
||||
0x64,0x72,0x09,0xe6,0xaa,0x06,0xe1,0xb9,0x1c,0xe7,0x28,0xd6,0x7c,0x7f,0x52,0xb2,
|
||||
0x9b,0xd4,0x9c,0x86,0xf9,0x67,0x9f,0x1e,0x6b,0x01,0xf5,0xf4,0x36,0xda,0x5a,0x74,
|
||||
0x38,0x1a,0x6d,0x09,0x01,0x2d,0xa0,0x90,0x7b,0x24,0x01,0xca,0x89,0xf5,0x24,0xd6,
|
||||
0x57,0xaa,0x1a,0xd2,0xc6,0x67,0xb4,0xcd,0x1c,0xc2,0x13,0x70,0x2f,0xdc,0xb1,0xcb,
|
||||
0x85,0xd9,0x13,0x22,0xa9,0x44,0xa9,0x2d,0x95,0xb6,0xb8,0xcb,0x23,0xe9,0xd2,0xf3,
|
||||
0x88,0x4f,0xfe,0x1a,0x87,0xb5,0x6a,0x16,0x74,0xf7,0x29,0x91,0x66,0x37,0x76,0xb1,
|
||||
0xab,0xc3,0xb6,0x90,0x9e,0xa3,0x3d,0x10,0x1d,0x2c,0x01,0xf5,0xf3,0x3a,0x7a,0x78,
|
||||
0xfd,0x6b,0x46,0xca,0x39,0x52,0x97,0x08,0x82,0x77,0x4b,0x18,0x32,0x3d,0xf2,0x36,
|
||||
0xe4,0x6f,0xa0,0x38,0xb4,0x01,0xd0,0x10,0x2f,0xb7,0x37,0xf2,0x0a,0x69,0x64,0x2e,
|
||||
0x22,0xcb,0x67,0xee,0xff,0x00,0x70,0xf7,0x3d,0xc5,0x6b,0x3d,0xf2,0xf2,0xbb,0x8b,
|
||||
0xb2,0x31,0x98,0x92,0x1c,0x8b,0x62,0x89,0xf3,0x25,0xa6,0x62,0x25,0x5d,0x29,0x58,
|
||||
0x41,0xf4,0x5b,0x80,0x05,0xa8,0x9e,0xfc,0xab,0x8e,0xc1,0x29,0x03,0x48,0x80,0x49,
|
||||
0x00,0x0e,0x49,0xf6,0x15,0xd8,0x63,0xd8,0xf5,0xcb,0x2c,0xc8,0x2d,0xb6,0x3b,0x3c,
|
||||
0x27,0x6e,0x17,0x6b,0x8c,0x96,0xe2,0x44,0x86,0xc2,0x79,0x71,0xe7,0x96,0xa0,0x94,
|
||||
0x21,0x23,0xea,0x49,0x03,0xf5,0xab,0xe1,0xd9,0x67,0x87,0xb6,0x17,0xb6,0x3c,0x72,
|
||||
0xdf,0x77,0xbd,0x41,0x87,0x93,0x6a,0x5b,0x88,0x4b,0xd2,0xaf,0x32,0x1a,0x0e,0x22,
|
||||
0x0b,0x9c,0x7f,0x57,0x10,0x28,0x7c,0x81,0x3c,0xf1,0xe6,0x76,0x5a,0xcf,0x27,0xb0,
|
||||
0x21,0x29,0xe8,0x34,0x54,0x70,0xe1,0xf4,0xd1,0xd2,0xd3,0xb6,0xcc,0x60,0x00,0x0f,
|
||||
0x4f,0xfd,0xeb,0xd4,0xa8,0x09,0x2e,0x37,0x2a,0x9b,0x70,0xdd,0xb4,0xeb,0xac,0xde,
|
||||
0x2e,0x58,0xd6,0x9b,0x67,0x29,0x0e,0xb0,0xeb,0x62,0x6c,0x3b,0x44,0xa6,0x92,0xb6,
|
||||
0x9c,0x6d,0x48,0x71,0x21,0xce,0x90,0x0a,0x56,0x85,0x29,0x24,0x73,0xf3,0x05,0x11,
|
||||
0xdc,0x1a,0xc7,0x32,0xbd,0x30,0xd4,0xdd,0x24,0xb7,0xcb,0x6f,0x23,0xc5,0x72,0xac,
|
||||
0x3e,0x05,0xc1,0x29,0x8f,0x24,0x5c,0x60,0x49,0x86,0xcc,0x94,0x85,0x85,0xa5,0x0b,
|
||||
0xea,0x4a,0x52,0xb1,0xd4,0x84,0xa8,0x03,0xcf,0x74,0x83,0xec,0x2b,0xd3,0x65,0x71,
|
||||
0xae,0x76,0xc8,0x77,0xab,0x7c,0x98,0x17,0x08,0x8c,0x4f,0x83,0x25,0xb2,0xd3,0xf1,
|
||||
0x64,0xb6,0x1c,0x69,0xd4,0x11,0xc1,0x4a,0x92,0xa0,0x42,0x81,0x1e,0xa0,0xd5,0xd1,
|
||||
0x63,0x49,0xb9,0x1f,0xfc,0x38,0xfa,0x2a,0x2a,0xc4,0xf0,0x3f,0xcd,0xc3,0xd8,0xf6,
|
||||
0xa9,0x61,0xee,0xba,0x94,0x98,0xd2,0xa1,0xdd,0xa3,0xb6,0x4f,0x75,0x79,0x88,0x71,
|
||||
0xa7,0x48,0x1f,0x87,0x94,0xcf,0xf8,0x85,0x5a,0x25,0x68,0x0d,0x2e,0xd9,0x86,0x0b,
|
||||
0xa2,0x1a,0xf1,0x74,0xd4,0x8c,0x09,0x93,0x8e,0x33,0x78,0xb5,0x3d,0x6d,0xb8,0xe3,
|
||||
0xac,0x27,0xfa,0x12,0x96,0xa7,0x59,0x75,0x0f,0x32,0x39,0xfb,0xa2,0x0b,0x4a,0x05,
|
||||
0x03,0x94,0x9e,0xb1,0xd2,0x11,0xc1,0x0a,0xdf,0xf5,0xed,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0xb5,0xde,0x33,0xb7,0xad,0x38,0xc3,0xf5,0x03,0x21,0xce,0x2d,0x38,
|
||||
0x7d,0xae,0x36,0x5b,0x7e,0x91,0xf1,0x53,0xae,0xc5,0x80,0xb7,0xd4,0xe7,0x48,0x04,
|
||||
0xa1,0x4a,0xe7,0xcb,0x0a,0x23,0xa9,0x41,0x1d,0x3d,0x4a,0x25,0x4a,0xe4,0xf7,0xad,
|
||||
0x89,0x4a,0x22,0xfc,0x23,0x91,0x51,0xc3,0x72,0x9b,0x06,0xd2,0x6d,0xca,0x5a,0xa5,
|
||||
0xae,0xe3,0x62,0x8f,0x8e,0xe5,0x4a,0x6d,0x42,0x3e,0x49,0x66,0x65,0x2c,0xc8,0x43,
|
||||
0x9d,0xb8,0x2e,0xa5,0x3c,0x25,0xf4,0xf6,0x00,0x85,0x82,0x78,0xe4,0x25,0x48,0x27,
|
||||
0x9a,0x92,0x14,0xa2,0x2f,0x34,0xfb,0x8d,0xdb,0xbe,0x57,0xb6,0x3d,0x4d,0x9d,0x86,
|
||||
0x65,0x6c,0x0f,0x39,0xb1,0xe7,0x43,0x9e,0xc8,0x3e,0x44,0xf8,0xe4,0x90,0x87,0x9b,
|
||||
0x27,0xd8,0xf0,0x41,0x1e,0xa9,0x50,0x20,0xfa,0x56,0x35,0xa7,0x1a,0x53,0x98,0xea,
|
||||
0xfe,0x40,0xdd,0x93,0x0b,0xc6,0xae,0x59,0x35,0xcd,0x45,0x20,0xb1,0x6e,0x8e,0xa7,
|
||||
0x3c,0xb0,0x4f,0x01,0x4e,0x28,0x7c,0xad,0xa7,0xf9,0x94,0x42,0x47,0xb9,0xaf,0x40,
|
||||
0xbb,0xad,0xd9,0xe6,0x1d,0xbb,0x9b,0x5e,0x2f,0x0f,0x29,0x7e,0x55,0xbd,0x56,0x2b,
|
||||
0x87,0xc5,0x22,0x65,0xbf,0xa4,0x48,0x71,0x85,0x20,0x87,0x63,0x05,0x28,0x10,0x94,
|
||||
0xac,0x86,0xd4,0x55,0xc1,0x20,0xb6,0x38,0xf5,0x35,0xb3,0x74,0xcf,0x4a,0xb1,0x1d,
|
||||
0x1a,0xc5,0x23,0xe3,0x78,0x4e,0x3f,0x0b,0x1c,0xb2,0xb0,0x7a,0x84,0x58,0x4d,0xf1,
|
||||
0xd6,0xae,0x00,0x2b,0x71,0x47,0x95,0x38,0xb2,0x00,0xe5,0x6b,0x25,0x47,0x81,0xc9,
|
||||
0x34,0x45,0x4e,0x58,0x17,0x83,0x9e,0xb9,0xe4,0xb1,0x52,0xe5,0xf6,0x7e,0x37,0x87,
|
||||
0x30,0xa5,0x02,0xe4,0x69,0x93,0xd7,0x25,0xfe,0x40,0x3c,0x1e,0x96,0x10,0xb6,0xcf,
|
||||
0x1c,0x91,0xdd,0xc1,0xeb,0x59,0xbd,0xdb,0xc1,0x0f,0x3a,0x66,0x12,0x95,0x6c,0xd4,
|
||||
0x9c,0x7a,0x64,0xbe,0x3e,0x56,0xa5,0xc3,0x7d,0x86,0xc9,0xfc,0x56,0x9e,0xb2,0x3f,
|
||||
0xc3,0x57,0x03,0x4a,0x22,0xf3,0xf1,0xac,0x3e,0x1a,0xda,0xf7,0xa3,0x50,0x64,0xdc,
|
||||
0x65,0xe2,0x43,0x26,0xb4,0x47,0x3f,0x79,0x3f,0x18,0x7b,0xe3,0x40,0x1f,0xc5,0xe4,
|
||||
0x80,0x1e,0x09,0x1d,0xc9,0x51,0x6f,0x80,0x07,0x72,0x2a,0x2f,0xad,0x0a,0x6d,0x6a,
|
||||
0x42,0xd2,0x52,0xb4,0x9e,0x0a,0x54,0x38,0x20,0xfd,0x2b,0xd5,0x3d,0x44,0x3d,0xe5,
|
||||
0x78,0x73,0xe0,0xfb,0x9e,0xb7,0xce,0xbe,0x59,0x9a,0x8d,0x88,0x6a,0x3f,0x4a,0x9c,
|
||||
0x6a,0xf3,0x1d,0xae,0x19,0x9e,0xe7,0x1d,0x91,0x31,0x09,0x1f,0x30,0x3c,0x71,0xe6,
|
||||
0x8f,0x9d,0x3d,0x8f,0xce,0x07,0x41,0x22,0xa1,0x3a,0x56,0x4b,0xa9,0x1a,0x71,0x91,
|
||||
0xe9,0x1e,0x6f,0x76,0xc4,0x72,0xdb,0x5b,0xd6,0x6c,0x82,0xd6,0xf7,0x93,0x26,0x23,
|
||||
0xdc,0x12,0x93,0xc0,0x29,0x52,0x48,0xec,0xa4,0xa9,0x24,0x29,0x2a,0x04,0x85,0x24,
|
||||
0x82,0x09,0x06,0xb9,0x3a,0x51,0xa5,0x39,0x3e,0xb6,0x67,0xb6,0xac,0x3b,0x10,0xb6,
|
||||
0xae,0xe9,0x7c,0xb9,0x39,0xd0,0xd3,0x49,0xec,0x94,0x24,0x77,0x53,0x8e,0x2b,0xd1,
|
||||
0x28,0x48,0xe4,0x95,0x1f,0x40,0x28,0x8b,0x14,0x65,0x97,0x24,0xbc,0x86,0x9a,0x42,
|
||||
0x9d,0x75,0xc5,0x04,0xa1,0x08,0x1c,0xa9,0x44,0xf6,0x00,0x01,0xea,0x6a,0x53,0xe9,
|
||||
0x07,0x86,0x56,0xbf,0x6a,0xec,0x18,0xb7,0x16,0x71,0x66,0xf1,0x3b,0x5c,0x8e,0xed,
|
||||
0xcc,0xca,0x1f,0xf8,0x23,0xc7,0xf1,0x16,0x42,0x54,0xf8,0x1e,0xe0,0xf9,0x7c,0x11,
|
||||
0xdc,0x72,0x2a,0xd4,0xf6,0x75,0xe1,0xf1,0x81,0xed,0x6a,0xd5,0x0e,0xeb,0x2a,0x34,
|
||||
0x7c,0xa7,0x51,0x14,0x80,0xa9,0x19,0x04,0xa6,0x82,0x84,0x55,0x94,0xf0,0xa4,0x44,
|
||||
0x4a,0x87,0xdd,0x24,0x72,0xa1,0xd7,0xfb,0x6a,0x04,0xf2,0x40,0x21,0x29,0x95,0x74,
|
||||
0x45,0x50,0x16,0xef,0x04,0x3c,0xe1,0xd8,0x69,0x5c,0xfd,0x4b,0xc7,0xe3,0x4c,0x23,
|
||||
0x95,0x35,0x1e,0x13,0xef,0x36,0x0f,0xfb,0xe7,0xa0,0x9f,0xf0,0xd6,0xbe,0xcf,0x7c,
|
||||
0x1d,0x75,0xd7,0x16,0x69,0x6f,0x58,0xde,0xc6,0xf3,0x26,0xc1,0x3d,0x2c,0xdb,0xee,
|
||||
0x06,0x3b,0xe4,0x7d,0x4a,0x64,0x21,0xb4,0x0f,0xd1,0x66,0xaf,0x02,0x94,0x45,0xe5,
|
||||
0xf3,0x3f,0xd3,0x4c,0xb3,0x4a,0xef,0xee,0xd9,0x33,0x0c,0x72,0xe7,0x8d,0x5d,0x5b,
|
||||
0x27,0x98,0xd7,0x38,0xcb,0x65,0x4a,0x00,0xf1,0xd4,0x9e,0xa1,0xc2,0xd2,0x7d,0x94,
|
||||
0x9e,0x41,0xf5,0x04,0x8a,0xce,0x76,0xbd,0xb6,0x4c,0xaf,0x75,0x5a,0x9b,0x1b,0x12,
|
||||
0xc6,0x52,0x98,0xcc,0x36,0x91,0x22,0xe7,0x76,0x7d,0x3c,0xb3,0x6f,0x8d,0xd4,0x02,
|
||||
0x9c,0x50,0xe4,0x75,0x28,0xf3,0xc2,0x50,0x0f,0x2a,0x3f,0x40,0x14,0xa4,0xfa,0x18,
|
||||
0xd5,0x6d,0x1d,0xc3,0x35,0xc3,0x13,0x7f,0x1b,0xce,0x71,0xe8,0x59,0x15,0xa5,0xce,
|
||||
0x4a,0x5a,0x94,0x8f,0x9d,0x95,0xf0,0x47,0x98,0xd3,0x83,0x85,0x36,0xb0,0x09,0x01,
|
||||
0x68,0x20,0xf7,0x3d,0xfb,0xd6,0xbf,0xda,0x6e,0xd2,0x31,0x6d,0xa2,0xe2,0x17,0xbb,
|
||||
0x16,0x37,0x2e,0x4d,0xd1,0x57,0x5b,0x92,0xe7,0x3d,0x70,0x9e,0x84,0x09,0x05,0xbe,
|
||||
0x3a,0x59,0x65,0x4a,0x48,0x01,0x41,0xb4,0xf3,0xdf,0x81,0xca,0x96,0xb5,0x00,0x9e,
|
||||
0xae,0x01,0x17,0x5d,0xb7,0x2d,0x8b,0xe9,0x36,0xda,0xed,0x71,0xfe,0xc3,0xc7,0x63,
|
||||
0xdd,0xf2,0x30,0x84,0x89,0x19,0x1d,0xe1,0xa4,0xbf,0x31,0xc5,0x8e,0x79,0x28,0x2a,
|
||||
0x1c,0x32,0x93,0xcf,0xec,0xb6,0x13,0xc8,0x03,0xa8,0xa8,0x8e,0x6a,0x41,0xd2,0x94,
|
||||
0x45,0xae,0xef,0x1b,0x7b,0xd3,0xab,0xee,0xa5,0xd8,0x75,0x0a,0x56,0x23,0x6d,0x19,
|
||||
0x9d,0x91,0xc7,0x1c,0x89,0x78,0x65,0x90,0xd3,0xc4,0xad,0xb5,0x36,0x7c,0xc2,0x9e,
|
||||
0x03,0xbc,0x05,0x12,0x9e,0xbe,0xae,0x93,0xdd,0x3c,0x1a,0xd8,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x14,0x2e,
|
||||
0xf1,0x31,0xd9,0xbb,0x3b,0x8c,0xd2,0xc7,0x72,0xcc,0x76,0x08,0x5e,0xa2,0x62,0xf1,
|
||||
0xd6,0xf4,0x5f,0x21,0xa2,0xa7,0x6e,0x51,0x07,0x2a,0x72,0x21,0xe3,0xba,0x95,0xea,
|
||||
0xb6,0xfb,0x13,0xd5,0xca,0x40,0x1e,0x61,0x23,0xb8,0xf0,0xe7,0xd9,0xd4,0x5d,0xb0,
|
||||
0xe9,0x2b,0x17,0x6b,0xd4,0x44,0x1d,0x45,0xc9,0x18,0x6e,0x45,0xd5,0xe5,0x77,0x54,
|
||||
0x36,0x8f,0xcc,0xdc,0x34,0x9e,0x3b,0x74,0x72,0x0a,0xf8,0xf5,0x73,0x9e,0xea,0x4a,
|
||||
0x51,0xc4,0xb9,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,
|
||||
0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,
|
||||
0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,
|
||||
0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x7f,0xff,0xd9};
|
|
@ -0,0 +1,318 @@
|
|||
//
|
||||
// ncc1701
|
||||
// Data size = 4912 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 77, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t ncc1701[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x48,
|
||||
0x00,0x48,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0x4d,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1d,0x00,0x00,0x01,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x06,0x07,0x08,0x09,0x04,0x03,0x02,0x0a,
|
||||
0xff,0xc4,0x00,0x40,0x10,0x00,0x01,0x03,0x03,0x02,0x03,0x06,0x03,0x05,0x04,0x09,
|
||||
0x05,0x01,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x11,0x06,0x07,0x12,0x21,
|
||||
0x31,0x08,0x13,0x41,0x51,0x61,0x71,0x09,0x22,0x81,0x14,0x32,0x91,0xa1,0xb1,0x15,
|
||||
0x42,0x52,0x62,0x16,0x23,0x24,0x53,0x63,0x72,0x73,0x82,0xb2,0x17,0x33,0x92,0xa2,
|
||||
0xd1,0xf0,0xff,0xc4,0x00,0x1a,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0xff,0xc4,
|
||||
0x00,0x23,0x11,0x00,0x02,0x02,0x01,0x05,0x01,0x00,0x02,0x03,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x02,0x11,0x12,0x03,0x21,0x31,0x41,0x51,0x04,0x05,0x13,
|
||||
0x22,0x32,0x61,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,0x3f,
|
||||
0x00,0xd5,0x3a,0x2b,0x2c,0xb5,0xcf,0x6f,0x7d,0xd3,0xb4,0x6f,0x56,0xa3,0x65,0x1a,
|
||||
0xa2,0xd5,0x67,0xb0,0x5b,0xae,0x92,0x21,0x26,0xcf,0x22,0x02,0x56,0xa8,0xe1,0xb5,
|
||||
0x94,0x29,0x0e,0x2f,0xf7,0xd4,0x38,0x4e,0x4e,0x71,0x9e,0x94,0xa9,0x74,0xed,0xfb,
|
||||
0x3e,0xee,0xdb,0xc1,0x1a,0xd1,0x49,0xe2,0xf9,0x55,0xf6,0x76,0x92,0xd8,0x48,0xf4,
|
||||
0xc5,0x5a,0x8d,0x91,0x97,0xf8,0x69,0xc1,0x21,0x23,0x24,0xe0,0x79,0x9a,0x4e,0xb8,
|
||||
0x6a,0x5b,0x4d,0xa5,0x95,0x3b,0x36,0xe7,0x12,0x2b,0x69,0xea,0xa7,0x9f,0x4a,0x40,
|
||||
0xe7,0x8f,0x13,0x59,0x3d,0x74,0xed,0x71,0x2a,0xf8,0x15,0x19,0x7a,0xaa,0xe1,0x29,
|
||||
0xb0,0x4a,0x80,0x0f,0x9c,0x67,0xd8,0x54,0x69,0x72,0xdc,0xa9,0xbb,0x85,0xaa,0x58,
|
||||
0xb6,0x37,0x71,0x90,0xa8,0xe9,0x52,0x78,0xbb,0xd7,0x4f,0xcd,0x9c,0xa9,0xc5,0x7b,
|
||||
0xf0,0x80,0x91,0xea,0xb2,0x7c,0x05,0x0e,0x2a,0x2a,0xdb,0x1c,0x5c,0xa5,0x25,0x14,
|
||||
0xb7,0x66,0xd0,0x23,0x5d,0x58,0x1e,0x68,0xba,0xcd,0xd2,0x3c,0x96,0x87,0x55,0xb0,
|
||||
0xae,0xf0,0x0f,0x72,0x33,0x4a,0xb0,0x6e,0x71,0x2e,0x6d,0x97,0x22,0x49,0x6a,0x4a,
|
||||
0x07,0x52,0xd2,0xc2,0xb1,0xef,0xe5,0x59,0x85,0x62,0xd7,0x57,0x6d,0x31,0x6f,0x61,
|
||||
0x88,0xb3,0x1c,0x8c,0xd0,0x48,0x09,0x6a,0x2b,0x9c,0x28,0x23,0xa6,0x08,0x14,0xbb,
|
||||
0xa1,0xb7,0x73,0x50,0x6d,0xfe,0xa9,0x62,0xfb,0x0e,0x5a,0xd6,0x90,0xa1,0xf6,0xa8,
|
||||
0xae,0x2f,0xfa,0xb9,0x0d,0xe7,0xe6,0x0a,0xf5,0xc7,0x43,0xd4,0x57,0x04,0x3e,0x87,
|
||||
0x39,0xe3,0x8e,0xde,0x9e,0xcc,0xff,0x00,0x1e,0xe3,0x06,0xf2,0xdd,0x75,0x46,0x94,
|
||||
0xd4,0x4d,0xbe,0x1d,0xa7,0x74,0x46,0xc1,0x47,0x57,0xf4,0x8e,0x54,0x97,0xe7,0xf7,
|
||||
0x1f,0x69,0x16,0xeb,0x7b,0x05,0xe7,0xcb,0x5c,0x5c,0x3c,0x64,0x0e,0x41,0x39,0xe5,
|
||||
0x92,0x6a,0x4e,0xb4,0x5c,0x9b,0xbc,0xda,0xa1,0x4f,0x64,0x29,0x2c,0xca,0x61,0x0f,
|
||||
0xa0,0x2f,0xa8,0x4a,0x92,0x14,0x33,0xeb,0x83,0x55,0xb3,0xb6,0x8f,0x64,0x16,0xfb,
|
||||
0x43,0x69,0xe5,0x5d,0x74,0xf3,0xa9,0xb6,0xeb,0x78,0xcd,0xa1,0x94,0x48,0x2e,0x14,
|
||||
0x22,0x5c,0x74,0x92,0xae,0xe1,0x67,0xa0,0xe6,0x72,0x0e,0x3a,0xfa,0x1a,0xed,0x47,
|
||||
0x8e,0xef,0xa2,0x3c,0x87,0xf1,0x5d,0xd0,0x37,0x1b,0xdc,0x78,0x4c,0x69,0x2d,0x42,
|
||||
0x86,0x1d,0x59,0x4f,0xda,0x5f,0x4b,0x48,0x03,0xc8,0xf0,0xf1,0x13,0x52,0x2a,0x7b,
|
||||
0x76,0xe8,0x76,0x16,0x15,0x36,0xf1,0x62,0x8a,0xc9,0x03,0x90,0xb8,0x95,0x2c,0x79,
|
||||
0xe4,0x70,0x01,0xf9,0xd6,0x7c,0x5c,0x3e,0x17,0xbb,0xbd,0x76,0x9a,0xa9,0x32,0x74,
|
||||
0xeb,0xfc,0x44,0xf3,0x4a,0x2e,0xd1,0x42,0x4f,0xfe,0xf5,0xf2,0x9f,0x85,0x8e,0xe7,
|
||||
0x05,0x64,0xe8,0xf5,0xaf,0x3f,0xc5,0x79,0x8c,0x3f,0x45,0xd5,0xac,0x48,0xdc,0xbe,
|
||||
0x37,0x0f,0x88,0xee,0xd5,0x5b,0xd4,0xb4,0x1d,0x49,0x09,0xf5,0x85,0x72,0xee,0x3e,
|
||||
0x6e,0x5e,0x5f,0x7b,0xf3,0xa6,0xfb,0x7f,0x12,0x8d,0x03,0x32,0x52,0x1a,0x8d,0x70,
|
||||
0x95,0x21,0xd5,0xa4,0x84,0xa1,0xa6,0x40,0x41,0xc7,0x89,0x51,0x49,0xc7,0xe3,0x55,
|
||||
0x1d,0x9f,0x87,0x06,0xf3,0x45,0x42,0x5a,0x6b,0x4b,0x0e,0xe9,0x09,0x09,0x40,0xfd,
|
||||
0xb1,0x1c,0x60,0x0f,0xf7,0xd3,0x23,0x78,0x3b,0x2d,0xee,0x3e,0xc8,0x59,0x61,0xcf,
|
||||
0xd4,0x56,0x25,0x43,0x8f,0x31,0xd3,0x1d,0x90,0xdd,0xd1,0x32,0x14,0x55,0x8e,0x25,
|
||||
0x7c,0x89,0x59,0xe5,0x81,0xcc,0xe3,0x1d,0x3c,0xc5,0x52,0x51,0x25,0xe4,0x5e,0xb9,
|
||||
0x5d,0xbe,0x6c,0xf7,0x04,0xb4,0x44,0x47,0xca,0x51,0xf3,0x25,0x62,0x62,0x9b,0xe2,
|
||||
0xf7,0xe0,0xc6,0x7e,0xb5,0x0e,0xeb,0x8e,0xda,0x2b,0xd7,0x9b,0x8b,0x21,0xa4,0x5b,
|
||||
0xdb,0x72,0xdf,0x67,0x8a,0xca,0x61,0x43,0x7d,0xe5,0x29,0x0f,0x4e,0x7d,0x44,0x77,
|
||||
0xce,0xf5,0xe2,0x4b,0x68,0x4f,0xca,0x8e,0x9c,0x4a,0xc9,0x04,0xa4,0x62,0xb3,0xed,
|
||||
0xa7,0x67,0xdd,0xd2,0xde,0x0d,0x38,0xab,0xc6,0x8d,0xd2,0x53,0x6f,0x36,0xa6,0x9e,
|
||||
0x54,0x55,0x4b,0x44,0x86,0x5b,0x47,0x7a,0x8f,0xbc,0x91,0xc6,0xe2,0x49,0xc6,0x7c,
|
||||
0x05,0x3a,0xae,0x7d,0x8d,0x77,0x77,0x44,0xc0,0x73,0x53,0x5c,0xf4,0xa3,0x36,0x70,
|
||||
0x90,0x95,0x2c,0x4a,0xbc,0xc6,0xef,0x57,0xc1,0x92,0x02,0x51,0xde,0x7c,0xca,0xeb,
|
||||
0x80,0x32,0x4d,0x14,0xba,0x1a,0x6d,0x34,0xe4,0x4d,0x32,0x37,0x09,0xf9,0x17,0x98,
|
||||
0xd3,0xad,0x89,0x5d,0xa2,0x60,0x56,0x59,0x76,0x1b,0x84,0x38,0x95,0x79,0xf1,0x0e,
|
||||
0x64,0x9f,0x1f,0x3a,0xb8,0x9b,0x5f,0xda,0x21,0x2e,0x6d,0x4a,0xae,0x5a,0xb0,0x3d,
|
||||
0xfb,0x7e,0x0a,0x9c,0x60,0xb2,0xdc,0x65,0x87,0x26,0xf0,0xa4,0x14,0x2d,0x29,0xc7,
|
||||
0xef,0x03,0x83,0xe1,0x90,0x6b,0x3d,0xf4,0x9e,0xe0,0xea,0x7d,0x1f,0x2a,0x35,0xd2,
|
||||
0x26,0x9c,0x96,0xd4,0xb0,0x8e,0x5c,0x6c,0xa5,0x4a,0x46,0x7a,0x8c,0x78,0x7e,0x19,
|
||||
0xa5,0xbd,0x6b,0xda,0xf3,0x77,0xae,0x31,0x5e,0x8f,0x06,0xcf,0x2d,0xb0,0xe8,0x21,
|
||||
0x45,0x0c,0x84,0xf5,0xf5,0x3e,0xc2,0xb0,0xd3,0xd0,0x92,0x79,0x49,0xf3,0xd1,0xea,
|
||||
0x7d,0x9f,0x6e,0x9e,0xb2,0x5a,0x70,0x82,0x55,0xd9,0xe1,0xda,0xb3,0xb5,0xe6,0xe5,
|
||||
0x6b,0x2b,0xf1,0x6f,0x4d,0xdb,0xee,0x96,0x48,0x2c,0x8e,0x14,0xa2,0x52,0xd2,0x86,
|
||||
0xc1,0x1e,0x21,0x23,0x1f,0x89,0xc9,0xa8,0x0b,0x47,0x76,0xbb,0xdf,0xad,0xb3,0xd4,
|
||||
0x0c,0x5c,0xe2,0x6b,0x34,0x84,0x21,0xde,0xf1,0xdb,0x6c,0xb7,0x9b,0x5c,0x47,0xc7,
|
||||
0x8a,0x56,0xdf,0xaf,0x98,0xc1,0xf5,0xa6,0xce,0xb0,0xb5,0xee,0x7e,0xb8,0x94,0xeb,
|
||||
0xb3,0xad,0xf2,0xd6,0x56,0x4a,0x88,0x53,0xcd,0xa0,0x7f,0xca,0x9a,0xe7,0x63,0xf5,
|
||||
0x8c,0x97,0x56,0xa7,0x2d,0xcc,0x45,0x49,0x51,0x20,0x3d,0x2d,0x2a,0xe1,0x19,0xe4,
|
||||
0x39,0x12,0x6b,0xa1,0xa5,0xc2,0x3c,0xa4,0xfd,0x35,0xbb,0x63,0xbe,0x27,0xdb,0x69,
|
||||
0xb8,0x8c,0xd9,0xad,0x9a,0xad,0xd3,0xa4,0xb5,0x34,0xc2,0x86,0x1c,0x4a,0xb2,0xe4,
|
||||
0x12,0xe9,0x38,0xf9,0x5e,0xc0,0xc2,0x49,0xfe,0x20,0x31,0x9a,0xb9,0x48,0x5a,0x5d,
|
||||
0x42,0x56,0x85,0x05,0xa1,0x43,0x21,0x49,0x39,0x04,0x79,0x8a,0xfc,0xe9,0x7f,0xd0,
|
||||
0x8b,0xe1,0x6b,0x8a,0x7d,0xce,0x04,0x56,0x5b,0x19,0x21,0x2b,0x5b,0x9c,0x3f,0x4e,
|
||||
0x11,0xe7,0x56,0xf7,0x6a,0x7b,0x6d,0xee,0x26,0xd6,0xe8,0x4b,0x46,0x91,0x6f,0x53,
|
||||
0x37,0xa8,0x51,0x6d,0x68,0x47,0x8d,0x21,0x56,0xd0,0xe3,0x81,0xb1,0xf7,0x52,0xa5,
|
||||
0xa8,0x92,0xae,0x11,0xcb,0x9f,0x30,0x00,0x15,0x38,0x37,0xc1,0x59,0xa3,0x5c,0xa8,
|
||||
0xac,0xd7,0x8b,0xf1,0x26,0xdc,0x88,0x6e,0x23,0xbc,0xd3,0x16,0x8b,0x82,0x70,0x12,
|
||||
0x43,0xa5,0x4d,0x0c,0xff,0x00,0x17,0x25,0x79,0x53,0xd2,0xd5,0xf1,0x34,0xb8,0x96,
|
||||
0x12,0x2e,0x1b,0x7f,0x1c,0xba,0x4f,0x35,0x47,0xba,0x10,0x91,0xf4,0x2d,0x9f,0xd6,
|
||||
0xa7,0x09,0x0f,0x34,0x5f,0x4a,0x2a,0x87,0x5c,0xbe,0x23,0xd7,0x79,0x89,0x79,0x36,
|
||||
0xcd,0x2f,0x02,0x0a,0xd4,0x9c,0x36,0x66,0x3a,0xb7,0x78,0x4f,0x99,0xe1,0x23,0x3f,
|
||||
0x80,0xaf,0x58,0x3f,0x11,0xab,0x83,0xa9,0xee,0x9c,0xb3,0x59,0x97,0x25,0xbc,0x25,
|
||||
0xd0,0x97,0xdc,0x4f,0xcd,0xec,0x7a,0x51,0x84,0xbc,0x1e,0x51,0xf4,0xbd,0x94,0x55,
|
||||
0x2a,0x8f,0xdb,0xf6,0xed,0x24,0x9e,0x0d,0x39,0x6b,0x5e,0x3a,0xf0,0xc9,0x59,0xae,
|
||||
0x94,0xf6,0xf0,0xbc,0xf1,0x27,0x3a,0x6a,0xdf,0x8f,0x1c,0x3c,0xba,0x7f,0xae,0x5e,
|
||||
0x13,0x9c,0x4b,0x99,0x45,0x54,0xf8,0xbd,0xb9,0xdc,0x9a,0xf2,0x1a,0x6b,0x48,0x27,
|
||||
0x8d,0x47,0x1f,0x3d,0xc5,0x28,0x1f,0x8a,0x92,0x00,0xfa,0xd2,0xa0,0xed,0xc7,0x69,
|
||||
0x8f,0x29,0x6c,0xcc,0xd2,0xd2,0xd8,0xe1,0x1f,0x79,0x99,0x8d,0xbb,0xcf,0xcb,0x90,
|
||||
0x03,0x1e,0xa0,0xd2,0xc2,0x5e,0x0f,0x38,0x96,0x72,0x8a,0x80,0xed,0xbd,0xb4,0xf6,
|
||||
0xfe,0x67,0x00,0x92,0xdd,0xd6,0x02,0x8e,0x02,0x8b,0xb1,0x92,0xa4,0x8c,0xf5,0xe6,
|
||||
0x95,0x13,0x81,0xed,0x52,0x86,0x90,0xdd,0x7d,0x21,0xaf,0x55,0xc1,0x61,0xbf,0xc3,
|
||||
0xb8,0x3d,0x8c,0xf7,0x09,0x5f,0x03,0xb8,0xff,0x00,0x22,0xb0,0xaf,0xca,0x93,0x8b,
|
||||
0x5c,0xa2,0x93,0x4f,0x82,0xa9,0xf6,0x87,0xf8,0x68,0xe9,0xfd,0xd4,0xd6,0x37,0x3d,
|
||||
0x53,0xa5,0xee,0x31,0xec,0x57,0x0b,0xa3,0xcb,0x95,0x36,0x14,0xd6,0x4b,0xac,0x38,
|
||||
0xfa,0xce,0x56,0xea,0x54,0x0e,0x50,0x54,0x79,0x90,0x01,0x19,0xe7,0xca,0xab,0xad,
|
||||
0xfb,0xe1,0x55,0xb8,0x36,0xe0,0xe7,0xd9,0x53,0x62,0xbd,0x80,0x0f,0x09,0x62,0x62,
|
||||
0x9b,0x51,0xc7,0x41,0xfd,0x60,0x4e,0x0f,0xd6,0xb5,0x8a,0x8a,0x2f,0xa1,0xa6,0xd3,
|
||||
0x4e,0x2d,0xa6,0x8c,0x4d,0xba,0x76,0x16,0xdd,0x1d,0x21,0x24,0xba,0x8d,0xbd,0xba,
|
||||
0x2d,0x64,0x60,0x2e,0x08,0xfb,0x42,0x79,0xf2,0xe7,0xc2,0xa3,0x8a,0x61,0xc4,0xd2,
|
||||
0x3a,0xa3,0x6e,0x35,0x93,0x73,0x2f,0x7a,0x76,0xe1,0x6b,0x0c,0xab,0x81,0xc6,0xe6,
|
||||
0xc6,0x5b,0x7c,0xf0,0x46,0x32,0x46,0x39,0xa4,0x9f,0xc0,0x56,0xf7,0x57,0x2d,0xc2,
|
||||
0xd7,0x0e,0xec,0xc8,0x66,0x74,0x46,0x26,0x34,0x0e,0x7b,0xb9,0x0d,0xa5,0x69,0xcf,
|
||||
0xb1,0x14,0x95,0x25,0x55,0xb0,0xdc,0xa7,0x29,0x29,0xb9,0x36,0xd7,0xbb,0x99,0x3f,
|
||||
0x66,0xb8,0xc2,0xd4,0x76,0xc6,0x54,0xc3,0x8c,0x92,0x47,0xca,0x19,0x1c,0xc7,0xf9,
|
||||
0xbc,0xa9,0xd5,0xa4,0x34,0x74,0x9d,0x6f,0xa9,0xed,0xda,0x66,0xd6,0xeb,0x6e,0xdc,
|
||||
0xa7,0x28,0xf0,0x24,0x91,0xf2,0xb6,0x92,0x38,0xdc,0x50,0xeb,0xc2,0x07,0x3a,0x92,
|
||||
0x3b,0x54,0xfc,0x3b,0xd7,0x74,0x5c,0xfd,0x55,0xb4,0x6f,0xae,0xcf,0x70,0x73,0x89,
|
||||
0xe9,0x56,0x16,0x5d,0x2d,0xb6,0xe9,0xea,0x54,0xc1,0xe8,0x95,0x1f,0xe0,0x3c,0x8f,
|
||||
0x86,0x2a,0x95,0xec,0x47,0x66,0x6d,0xe6,0xbc,0xeb,0xbf,0xdb,0xf6,0x19,0x57,0x2d,
|
||||
0x33,0x78,0xb5,0xc8,0x52,0x11,0x7e,0xbb,0x3c,0xb6,0x92,0xca,0x81,0xc2,0x90,0x94,
|
||||
0x9f,0x9d,0x44,0x10,0x41,0x00,0x11,0xe0,0x48,0xae,0x58,0xfc,0xdf,0xca,0xd3,0xb5,
|
||||
0xe1,0xef,0x4b,0xf3,0x2f,0xf5,0xe2,0xe0,0x94,0xaa,0xac,0xdc,0x0b,0x3d,0xb5,0x16,
|
||||
0x6b,0x44,0x1b,0x7b,0x6a,0x2b,0x6e,0x2b,0x08,0x61,0x2a,0x57,0x52,0x12,0x90,0x90,
|
||||
0x7f,0x2a,0xeb,0x52,0x82,0x41,0x24,0x80,0x07,0x52,0x6a,0x09,0xb5,0x6a,0x5d,0x64,
|
||||
0x34,0x75,0xae,0xd9,0x7a,0xd4,0x31,0x9d,0xbb,0x30,0xc2,0x1b,0x99,0x73,0xb7,0xb1,
|
||||
0xdd,0x2a,0x4a,0xc0,0xe6,0xac,0x12,0x78,0x73,0xe9,0x49,0x93,0xe3,0x5c,0xae,0x4b,
|
||||
0xef,0x24,0xce,0x97,0x2d,0x58,0xe1,0x0b,0x5b,0xe5,0x39,0x1e,0xc2,0xbb,0xd6,0x93,
|
||||
0x7c,0x9f,0x36,0xf5,0x11,0x36,0xdd,0x75,0xd6,0x9e,0xb2,0x8c,0xcd,0xbc,0x43,0x63,
|
||||
0xd0,0xba,0x09,0xfc,0x05,0x34,0x6e,0x5d,0xa1,0x34,0x8c,0x0e,0x30,0xd3,0xf2,0xa6,
|
||||
0xad,0x3d,0x03,0x11,0xd5,0x85,0x7b,0x28,0xe0,0x54,0x50,0xe5,0x85,0xb6,0x1c,0x19,
|
||||
0x86,0xda,0x41,0xf1,0x48,0xfd,0x4d,0x76,0x31,0xa7,0xe1,0x05,0x25,0x6f,0xa5,0xa0,
|
||||
0x8f,0xe1,0x51,0xe5,0x8f,0xa5,0x68,0xb4,0x57,0x6c,0x87,0xa8,0xfa,0x16,0xa7,0x76,
|
||||
0xa5,0xef,0x90,0xeb,0x76,0xbd,0x33,0x29,0xd9,0x05,0x24,0x37,0xdf,0x38,0x30,0x15,
|
||||
0xfb,0xa4,0x84,0xe7,0x97,0xa6,0x6a,0xad,0xee,0x26,0xc5,0x6b,0x0d,0xfa,0xd4,0xcd,
|
||||
0xdd,0xf5,0x6d,0xd5,0x57,0x15,0xb4,0xf2,0xdd,0x8a,0xc4,0xf6,0xdd,0xee,0xa2,0x71,
|
||||
0x63,0x21,0x96,0x92,0xe8,0x08,0x18,0x03,0xdf,0x1c,0xce,0x6a,0xd1,0x31,0x36,0xc7,
|
||||
0x68,0xc0,0x8e,0xdb,0x09,0x23,0xc7,0x19,0x35,0xe8,0xf6,0xb6,0xb4,0x32,0x14,0xa2,
|
||||
0xf2,0x42,0xfc,0xea,0xd4,0x12,0xe1,0x12,0xe6,0xd9,0x18,0xed,0x46,0xd6,0xcd,0xd9,
|
||||
0x2d,0x22,0x2c,0x76,0x1b,0xc4,0xcb,0x45,0xb5,0x4a,0x5b,0xce,0xc5,0x8e,0xea,0x92,
|
||||
0xd2,0x9d,0x51,0xca,0xd6,0x02,0x8a,0x94,0x92,0x7d,0x15,0x49,0x1a,0xa6,0xd9,0x1d,
|
||||
0xc7,0x9c,0x71,0xf5,0xb9,0x31,0xf5,0x73,0x5b,0xaf,0x2c,0xa8,0x9f,0x52,0x4d,0x3c,
|
||||
0xf5,0x16,0xbb,0x87,0x27,0x88,0x21,0xf4,0x91,0x51,0xd5,0xe6,0xf4,0xdc,0xc2,0xae,
|
||||
0xed,0xc0,0xa1,0xe7,0x4d,0x40,0x97,0x21,0x87,0x7c,0x8e,0xc3,0x3c,0x5c,0x08,0x09,
|
||||
0x1e,0x43,0xa5,0x31,0xee,0x6f,0x36,0xd8,0x21,0x29,0x19,0xf1,0xe5,0x4f,0x6b,0xcb,
|
||||
0x0e,0x49,0x51,0x3c,0x49,0x03,0xde,0x9a,0x33,0xac,0xea,0x71,0x44,0x95,0xa7,0x1e,
|
||||
0xf4,0xe8,0x56,0x32,0x2e,0xb3,0x9c,0x42,0x95,0xc0,0x9e,0x25,0x63,0x09,0x40,0x20,
|
||||
0x64,0xf9,0x53,0x26,0xe1,0x71,0xbb,0xcd,0x9c,0x88,0xd8,0x10,0xf8,0x82,0xb0,0x09,
|
||||
0x07,0x8b,0xeb,0xed,0xfc,0x39,0xa7,0x3e,0xbe,0xdb,0x39,0xba,0x9e,0xf5,0x64,0x53,
|
||||
0x72,0x12,0xd5,0xba,0x3a,0xdc,0x54,0xa2,0x97,0x8b,0x6b,0xc1,0x03,0x87,0x87,0x1d,
|
||||
0x4e,0x45,0x23,0xbb,0xb5,0x37,0x5f,0xe9,0x55,0x9e,0x7b,0x97,0xa6,0xa7,0x43,0xb7,
|
||||
0x95,0xe0,0xba,0xde,0x1f,0x29,0x50,0xfb,0xa4,0x8e,0x4a,0xe9,0xd7,0x95,0x4d,0x31,
|
||||
0xec,0x21,0xbd,0x6e,0x6a,0xc7,0x0d,0x72,0xa6,0x4a,0x71,0xb6,0x9a,0x1c,0x4e,0x2b,
|
||||
0xbd,0x52,0x5b,0x03,0xa6,0x4f,0x32,0x6b,0x88,0xdf,0x2d,0xe5,0x02,0x42,0x1c,0x52,
|
||||
0x9a,0x73,0x07,0xbf,0x43,0x2a,0x29,0x20,0xf4,0xca,0xb1,0x52,0xc4,0xab,0x03,0x0e,
|
||||
0xa1,0x6d,0x38,0xd2,0x56,0xda,0xc7,0x09,0x0b,0x19,0x04,0x79,0x1a,0x6e,0x5b,0x74,
|
||||
0x13,0x36,0x10,0xf3,0x10,0x6e,0x12,0x23,0xc5,0x5a,0xb8,0x93,0x14,0x84,0xb8,0x86,
|
||||
0xfd,0x11,0xc4,0x09,0x03,0xd2,0x96,0x3b,0x8d,0x31,0xb5,0x3d,0x52,0xe1,0xc2,0x5b,
|
||||
0xcc,0xc4,0x5c,0xe5,0x80,0x08,0x65,0xb2,0x02,0x95,0xed,0x9e,0x54,0x8d,0x6d,0xd4,
|
||||
0x12,0x6e,0x0f,0x04,0x2a,0x13,0x71,0x95,0x9c,0x29,0xb7,0x1f,0xe1,0x75,0x1e,0xe9,
|
||||
0x20,0x7e,0x44,0xd4,0x93,0x6f,0xb0,0x45,0xb5,0xf7,0xc3,0xbe,0x93,0x20,0xba,0xae,
|
||||
0x35,0x17,0xd6,0x55,0x83,0xfc,0xa3,0xc0,0x7a,0x57,0xa4,0x88,0xf6,0xd7,0x14,0x92,
|
||||
0xf4,0x56,0xde,0x52,0x7a,0x17,0x10,0x0e,0x3d,0xa8,0x61,0x63,0x37,0xbc,0x4d,0xd1,
|
||||
0x2e,0xc5,0x85,0x21,0x0e,0x4c,0x68,0x82,0xb4,0x21,0xdc,0x60,0x7a,0x9c,0x1f,0xd2,
|
||||
0x95,0x2d,0x5a,0x14,0x45,0x8e,0x1a,0x69,0xa8,0xe9,0x6c,0xfc,0xca,0x41,0x6b,0x04,
|
||||
0xa8,0xf5,0xf9,0x93,0x8f,0xd2,0x9c,0x91,0xdc,0x84,0xc8,0xc3,0x30,0xd9,0x68,0xff,
|
||||
0x00,0x2a,0x42,0x6b,0xb1,0x2f,0x36,0xae,0x7c,0x21,0x20,0x78,0xf1,0x60,0x53,0xb1,
|
||||
0x1c,0x10,0x34,0xb3,0x4d,0xa9,0xb5,0xc8,0xc3,0x65,0xa5,0x85,0xa5,0x0d,0xa8,0x29,
|
||||
0x3c,0xbd,0x70,0x0d,0x3a,0x59,0x9e,0xdb,0x43,0x09,0xe2,0x5f,0xb8,0xe5,0x4d,0xb9,
|
||||
0x7a,0xae,0xcb,0x6e,0x04,0x49,0xba,0xc3,0x60,0x8e,0xa8,0x5b,0xe9,0xe2,0xfc,0x33,
|
||||
0x9a,0x48,0x97,0xbc,0xda,0x62,0x08,0xf9,0x25,0x3b,0x2d,0x63,0xf7,0x63,0xc7,0x51,
|
||||
0xfc,0xd5,0x81,0xf9,0xd5,0x58,0x89,0x05,0x13,0x14,0x47,0xdd,0x56,0x3d,0xab,0xec,
|
||||
0xc8,0x56,0x32,0x52,0xa3,0xee,0x2a,0x1a,0xb9,0xf6,0x89,0x4b,0x43,0x86,0x05,0x99,
|
||||
0xd5,0xf9,0x2e,0x4b,0xa1,0x03,0xff,0x00,0x14,0xe7,0xf5,0xa6,0x8d,0xd3,0x7d,0x35,
|
||||
0x75,0xcd,0xc0,0xdc,0x47,0x58,0x82,0x5c,0x3c,0x09,0x6e,0x33,0x3c,0x4a,0x24,0xf4,
|
||||
0x00,0xab,0x27,0x3e,0xd4,0xc2,0x8b,0x11,0x32,0xe0,0xcc,0x46,0x94,0xe4,0x82,0x19,
|
||||
0x6c,0x75,0x5b,0x98,0x4a,0x7f,0x13,0x5c,0x7b,0x75,0xaa,0xae,0x3a,0xff,0x00,0x72,
|
||||
0x6d,0x5a,0x6f,0x6e,0xa3,0x3d,0x7b,0xd4,0xaa,0x79,0x2b,0x0f,0xc6,0x25,0x2c,0x42,
|
||||
0x4a,0x48,0x2a,0x79,0xd7,0x47,0x24,0xa5,0x3e,0x9c,0xc9,0xe4,0x3a,0xd4,0x17,0xa2,
|
||||
0xf6,0x77,0x72,0xb7,0xff,0x00,0x51,0xa2,0xd1,0x69,0x6a,0x5d,0xf6,0xe4,0xb5,0x61,
|
||||
0xc4,0x38,0xe9,0x53,0x71,0xd3,0xc7,0xc2,0x56,0xea,0x87,0xca,0xda,0x41,0x0a,0xeb,
|
||||
0xcc,0xf0,0xf2,0x07,0x23,0x3a,0xf5,0xd8,0xfb,0xb2,0x9d,0xab,0xb2,0xde,0xdf,0x2a,
|
||||
0xdc,0x97,0x5b,0xb9,0x6a,0x5b,0x82,0x83,0xd7,0x4b,0x9a,0x51,0x8e,0xf1,0x5e,0x0d,
|
||||
0xa3,0xc4,0x36,0x9f,0x0f,0x3e,0xa6,0xb3,0x9c,0xf1,0x5b,0x1a,0x46,0x17,0xc9,0x3e,
|
||||
0x51,0x45,0x15,0xc6,0x74,0x85,0x14,0x51,0x40,0x05,0x55,0xfe,0xd0,0xba,0xf9,0xce,
|
||||
0xcf,0x97,0x01,0x7c,0xbc,0x69,0x89,0xd7,0xbd,0x1d,0x35,0xc2,0x57,0x76,0xb5,0x94,
|
||||
0x95,0xc2,0x75,0x47,0xee,0x3c,0xd9,0xc7,0xca,0x7c,0x16,0x0f,0x3e,0x98,0xcf,0x5b,
|
||||
0x41,0x5c,0x37,0xcb,0x24,0x0d,0x4b,0x68,0x97,0x6b,0xba,0x44,0x6a,0x7d,0xba,0x5b,
|
||||
0x6a,0x65,0xf8,0xcf,0xa4,0x29,0x0e,0x20,0x8c,0x10,0x41,0xaa,0x8c,0xb1,0x76,0x4c,
|
||||
0x96,0x48,0xa5,0x56,0xee,0xd9,0x3b,0x59,0xa9,0xec,0xb2,0x58,0x6f,0x50,0x0d,0x2d,
|
||||
0x74,0x79,0xa5,0xa1,0xa7,0x2e,0x30,0x96,0x52,0xc2,0x88,0x21,0x0b,0x3c,0x40,0x05,
|
||||
0x63,0x92,0xb1,0x9c,0x78,0x52,0x96,0xda,0x6e,0x76,0x90,0xb6,0xda,0xdd,0x8d,0x2b,
|
||||
0x77,0xad,0x5a,0xad,0xe7,0x5c,0xef,0x10,0xfc,0x97,0x1b,0x65,0x4d,0x8e,0x10,0x0a,
|
||||
0x40,0x07,0x98,0xc8,0x27,0x9f,0x4c,0xe3,0xa5,0x32,0x77,0xa7,0xe1,0x76,0x65,0x4b,
|
||||
0x95,0x73,0xdb,0x6b,0xf2,0x18,0x4a,0xfe,0x64,0xd9,0x6f,0x0a,0x51,0x4a,0x7f,0x95,
|
||||
0x0f,0x0c,0x90,0x3c,0x82,0x81,0xf7,0xaa,0x21,0xaa,0xf6,0xf2,0xf9,0xa4,0x2e,0x37,
|
||||
0x08,0x17,0x6b,0x7f,0x03,0xb0,0x5e,0x5c,0x77,0xd4,0x82,0x1c,0x42,0x56,0x95,0x70,
|
||||
0xab,0x98,0xf0,0xc8,0xeb,0x5d,0x29,0xa9,0x3b,0x39,0x9c,0x69,0xee,0x6a,0x45,0xcf,
|
||||
0x77,0xf4,0x4c,0x56,0xcf,0x1e,0xad,0xb4,0xab,0x87,0xf8,0x25,0x20,0x9f,0xc8,0xd3,
|
||||
0x06,0xe7,0xda,0x0f,0x44,0x7d,0xa1,0x48,0x4d,0xcd,0x0e,0x0c,0xff,0x00,0xdc,0x4f,
|
||||
0x43,0xf5,0xac,0xcc,0x30,0x1b,0xea,0x1b,0x4e,0x09,0xea,0x12,0x2b,0xe5,0x71,0x50,
|
||||
0x79,0x84,0x0e,0x5e,0x95,0xa5,0x3e,0x84,0x69,0x2a,0xf7,0xcf,0x44,0xbc,0x33,0xfb,
|
||||
0x4e,0x3a,0x4f,0xf3,0xba,0x69,0x12,0xe5,0xbc,0xfa,0x31,0xc2,0x4a,0x6e,0x70,0xb0,
|
||||
0x7a,0x9e,0xfb,0x15,0x9f,0x08,0x8e,0x85,0x27,0x9a,0x46,0x7d,0x2b,0xe7,0xec,0x8d,
|
||||
0x92,0x07,0x00,0x3f,0x4a,0x6a,0xc5,0x45,0xf3,0x7f,0x72,0xf4,0xb4,0xb1,0xf2,0x5d,
|
||||
0xe0,0xe0,0xf9,0xc8,0x02,0x93,0xe4,0xeb,0xab,0x09,0x4f,0xcb,0x78,0x82,0x07,0xa4,
|
||||
0x94,0xff,0x00,0xf6,0xa8,0xda,0xa1,0x35,0xfd,0xd2,0x4f,0xfb,0x6b,0xc9,0x70,0x9a,
|
||||
0x07,0x3d,0xca,0x39,0x7f,0x28,0xa7,0xb8,0x51,0x73,0x26,0xee,0x16,0x9b,0x64,0x10,
|
||||
0xe5,0xee,0x02,0x47,0x8f,0xf6,0x81,0xff,0x00,0xda,0x6d,0xcf,0xdc,0xed,0x1a,0xa5,
|
||||
0x80,0xe6,0xa0,0x82,0x02,0x7f,0x75,0x2e,0xe6,0xaa,0xc3,0x30,0x92,0xe8,0x77,0x87,
|
||||
0xba,0x6f,0xbb,0x47,0x1f,0xce,0x40,0xe2,0xe6,0x06,0x07,0x99,0xe7,0xf9,0x1a,0xf7,
|
||||
0xb4,0xbf,0x1a,0x04,0xf4,0xbd,0x32,0x02,0x2e,0x4c,0x00,0x41,0x8e,0xb5,0xa9,0x00,
|
||||
0x9f,0x03,0x94,0xf3,0xe5,0x49,0x95,0x45,0x96,0x67,0x7b,0xf4,0x55,0xac,0xb9,0xc3,
|
||||
0x32,0x24,0xd2,0xac,0x60,0xa9,0x95,0xb9,0xc3,0xec,0x07,0x2f,0xc7,0x35,0xc7,0x73,
|
||||
0xed,0x1f,0xa6,0x9f,0x8e,0xa6,0x12,0x94,0x94,0x1f,0x06,0x2d,0x49,0x42,0xbe,0x8b,
|
||||
0xe0,0x07,0xf3,0xa8,0x16,0x05,0xfe,0x1d,0xbe,0xe1,0x36,0x48,0xd3,0xd6,0xf9,0x2c,
|
||||
0xbe,0x41,0x6e,0x3c,0x9e,0x35,0xa1,0x8c,0x67,0x92,0x79,0xe4,0xf5,0xf1,0xf2,0xae,
|
||||
0x58,0x17,0x75,0x5b,0x98,0x98,0xd2,0x21,0xc3,0x73,0xed,0x23,0x05,0x6f,0x34,0x16,
|
||||
0xa6,0xc7,0xf2,0x13,0xf7,0x69,0x6f,0xe0,0x52,0x25,0xd9,0x9b,0xfb,0x64,0x57,0x10,
|
||||
0x6a,0xdd,0x39,0xe3,0xfe,0x54,0x27,0xf5,0x55,0x23,0x48,0xde,0xe5,0x38,0x4f,0xd9,
|
||||
0xac,0xc4,0x8f,0xf1,0xdf,0x03,0xf4,0x06,0x9b,0x36,0xd6,0xf5,0x36,0xa2,0xb3,0x47,
|
||||
0xb5,0xb3,0x66,0x99,0x3a,0xd4,0xd2,0xd2,0x95,0x18,0x16,0xe2,0xb7,0x3a,0xe7,0x1c,
|
||||
0x69,0x49,0x39,0xf7,0xa7,0x23,0x1d,0x9c,0x37,0x2e,0xf2,0xf8,0xfd,0x8d,0xb6,0xba,
|
||||
0xc1,0x4c,0x72,0x41,0xfb,0x5d,0xb1,0xd4,0x9e,0x23,0xea,0x50,0x90,0x07,0xff,0x00,
|
||||
0xb3,0x45,0xfa,0x15,0xe0,0x9d,0x3b,0x77,0x6f,0x0a,0x51,0x42,0x2d,0xd0,0xe3,0x2b,
|
||||
0xc7,0x8c,0xad,0x64,0x7f,0xc6,0x92,0x9f,0xdc,0x4d,0x41,0x27,0xac,0xa8,0xec,0x7f,
|
||||
0xa1,0x1c,0x0f,0xf9,0x15,0x54,0xb3,0x66,0xec,0x25,0xbe,0xd7,0xe7,0x12,0xb5,0x68,
|
||||
0x59,0x11,0x92,0xb5,0xf0,0x97,0x27,0x4d,0x8e,0xde,0x3d,0x48,0x2e,0x71,0x63,0xe8,
|
||||
0x6a,0x43,0xb1,0x7c,0x2f,0xf7,0x6e,0xe8,0xd2,0x1c,0x9f,0x37,0x4e,0xd9,0xc1,0x23,
|
||||
0x2d,0xbb,0x2d,0xc7,0x56,0x91,0xe3,0xf7,0x5b,0xc6,0x7d,0x33,0xf5,0xa9,0xb8,0x2e,
|
||||
0x58,0xd4,0x59,0x53,0x65,0x6a,0x1b,0xc4,0xac,0xf7,0xb7,0x69,0x58,0xff,0x00,0x0d,
|
||||
0x61,0xbf,0xf8,0x01,0x49,0x52,0x0a,0xe5,0x1c,0x3e,0xf3,0xd2,0x3f,0xd6,0x75,0x4b,
|
||||
0xfd,0x49,0xad,0x12,0xd3,0xff,0x00,0x09,0x77,0x16,0x84,0x1b,0xf6,0xe1,0xe0,0x92,
|
||||
0x0a,0xdb,0xb6,0xdb,0xf1,0x81,0xe2,0x02,0x96,0xa3,0x9f,0x7c,0x54,0xa7,0xa5,0xfe,
|
||||
0x17,0x7b,0x49,0x66,0x09,0x55,0xd2,0x4d,0xf2,0xfe,0xe0,0xe6,0x7b,0xf9,0x9d,0xca,
|
||||
0x49,0xf6,0x6c,0x0e,0x55,0x2f,0x52,0x0b,0x82,0xb0,0x66,0x4a,0x70,0x36,0xdf,0x2c,
|
||||
0x25,0x23,0xa7,0x95,0x38,0x74,0xbe,0xdb,0xea,0xbd,0x6f,0x25,0x2c,0x69,0xfd,0x35,
|
||||
0x74,0xbc,0x3a,0xa3,0x84,0x88,0x71,0x16,0xbc,0x9f,0x70,0x31,0x5b,0x61,0xa4,0xbb,
|
||||
0x26,0x6d,0x0e,0x89,0x71,0xa7,0x6d,0x5a,0x06,0xcc,0x87,0xdb,0xe6,0x97,0xdf,0x60,
|
||||
0x3c,0xbc,0xf9,0x92,0xbc,0xd4,0xa7,0x06,0xdb,0x12,0xd6,0xc7,0x73,0x0a,0x2b,0x31,
|
||||
0x19,0xfe,0xed,0x86,0xc2,0x13,0xf8,0x01,0x52,0xf5,0xbc,0x45,0x2d,0x3f,0x59,0x8f,
|
||||
0x9b,0x73,0xf0,0xda,0xde,0x2d,0x7e,0x94,0x48,0xb8,0xc1,0x87,0xa3,0xe1,0xab,0x18,
|
||||
0x37,0x97,0x48,0x77,0x1f,0xe9,0xa0,0x29,0x40,0xfb,0x81,0x56,0xa7,0x68,0xfe,0x15,
|
||||
0x3a,0x13,0x4b,0x38,0xd4,0xdd,0x71,0x78,0x99,0xab,0xe6,0xa0,0x85,0x08,0x91,0xc9,
|
||||
0x87,0x10,0x7a,0x1e,0x13,0xde,0x2b,0xdf,0x89,0x3e,0xd5,0x78,0xe8,0xac,0x9e,0xa4,
|
||||
0x99,0x6a,0x09,0x08,0x9a,0x47,0x44,0xe9,0xfd,0x03,0x67,0x6a,0xd5,0xa6,0xec,0xb0,
|
||||
0x6c,0x76,0xe6,0xc7,0xcb,0x1a,0x03,0x09,0x69,0x1e,0xe4,0x24,0x73,0x3e,0xa7,0x9d,
|
||||
0x2d,0xd1,0x45,0x66,0x58,0x51,0x45,0x14,0x00,0x51,0x45,0x14,0x00,0x51,0x45,0x14,
|
||||
0x00,0x56,0x4f,0xf6,0xd5,0xec,0xeb,0xaf,0xb6,0xd3,0x57,0xea,0x7d,0x4c,0xd2,0x15,
|
||||
0x77,0xd0,0xf7,0x99,0x8f,0xc9,0x12,0x98,0x1c,0x46,0x27,0x7c,0xa2,0xa2,0xdb,0xc3,
|
||||
0x19,0x00,0x15,0x10,0x15,0xd0,0xfe,0x55,0xac,0x15,0xcd,0x71,0xb7,0x45,0xbb,0xc1,
|
||||
0x7e,0x14,0xd8,0xed,0x4b,0x88,0xfa,0x0b,0x6e,0xb0,0xf2,0x02,0x90,0xb4,0x9e,0xa0,
|
||||
0x83,0xc8,0x8a,0x69,0xd1,0x2d,0x59,0x83,0xfb,0x7b,0x7f,0x46,0x95,0xb7,0x2e,0x23,
|
||||
0xe8,0x6f,0x84,0xba,0xa3,0xc0,0xac,0x12,0x72,0x07,0x3c,0x53,0xe0,0xdd,0x2c,0xb2,
|
||||
0x59,0x43,0xaf,0x42,0x85,0x21,0x2a,0xe6,0x4f,0x74,0x9c,0x8e,0x59,0xc1,0xe5,0xd7,
|
||||
0xad,0x5c,0x9e,0xd1,0x7f,0x0d,0x6b,0x56,0xa6,0x6a,0x75,0xe3,0x6c,0xe4,0x22,0xcd,
|
||||
0x71,0x70,0x97,0x15,0x63,0x94,0xaf,0xec,0x6e,0x9f,0x10,0xda,0xba,0xb6,0x7f,0x11,
|
||||
0xed,0x59,0xe7,0xb8,0x3a,0x23,0x59,0xed,0x05,0xe9,0xcb,0x15,0xde,0xcf,0x2e,0xd3,
|
||||
0x73,0x8e,0x38,0x97,0x12,0x6a,0x72,0x1c,0x18,0xe6,0xa6,0xd6,0x39,0x29,0x27,0x00,
|
||||
0xe4,0x12,0x3a,0xd6,0xb9,0x78,0x65,0x85,0xbd,0xc7,0x55,0xcd,0x16,0x37,0x50,0x54,
|
||||
0xdd,0xba,0x33,0x5c,0xce,0x0a,0x46,0x29,0x8b,0xaa,0xef,0x56,0xbb,0x0c,0x17,0x1c,
|
||||
0x10,0xdb,0x53,0xbd,0x10,0x90,0x4f,0x33,0xf8,0xd3,0x73,0xfa,0x7c,0xb4,0xa9,0x09,
|
||||
0x9c,0xc2,0xd8,0x56,0x70,0x49,0x1c,0x89,0xf4,0x22,0x91,0xf5,0x5b,0x12,0x75,0x0b,
|
||||
0x46,0x6b,0x2e,0xb0,0x22,0x36,0x33,0xfd,0x63,0xc1,0x27,0x1e,0x60,0x78,0xd2,0x53,
|
||||
0xbe,0x19,0x52,0xd2,0x94,0x3f,0xb2,0x17,0x74,0x74,0x88,0x97,0x16,0x1c,0x76,0xf5,
|
||||
0x71,0x54,0x75,0xac,0x15,0x21,0x09,0x01,0x28,0x6c,0x7b,0xe3,0x34,0xc0,0xd5,0x5a,
|
||||
0xd5,0xe8,0x17,0x75,0x33,0x6d,0x9a,0xf4,0x98,0xe9,0x56,0x12,0xa5,0x21,0x23,0x8c,
|
||||
0x67,0xc0,0x63,0x3c,0xeb,0xc3,0x58,0x4e,0x0c,0xd9,0x22,0x77,0x04,0x84,0xb8,0x03,
|
||||
0x79,0x1d,0x30,0x2b,0xc7,0x4c,0x14,0xaa,0x0f,0xda,0xcb,0x48,0x32,0x16,0x4b,0x69,
|
||||
0x59,0x4f,0x34,0x24,0x63,0x24,0x7a,0x9c,0xe3,0x3e,0x94,0xa5,0x27,0xc2,0x2a,0x31,
|
||||
0x4f,0x73,0x58,0xfb,0x1c,0x5d,0xbb,0x29,0xf6,0x83,0xb5,0xc4,0xb3,0x44,0xd0,0xb0,
|
||||
0xed,0x3a,0xd9,0x2c,0x20,0xc9,0xb4,0xdf,0x54,0xea,0xdd,0x7d,0x69,0x4f,0xce,0xb6,
|
||||
0x14,0xb5,0x90,0xb1,0xc8,0x9c,0x27,0x04,0x78,0x8a,0xb6,0x96,0xee,0xca,0x3b,0x3b,
|
||||
0x6a,0x5a,0xd4,0xc6,0xdb,0x69,0xc5,0x95,0x8c,0x11,0x22,0x02,0x1e,0x1f,0x40,0xb0,
|
||||
0x40,0xfa,0x56,0x1e,0x6d,0x3e,0xb3,0xb9,0xed,0x3e,0xe0,0xe9,0x9d,0x55,0x09,0xb7,
|
||||
0x13,0x3a,0xd7,0x31,0xb9,0x8d,0x26,0x40,0xe4,0xb0,0x0f,0x3e,0xbe,0x0a,0x49,0x52,
|
||||
0x7e,0xb5,0xfa,0x18,0x42,0xb8,0xd0,0x95,0x74,0xc8,0xcd,0x4d,0xbf,0x4a,0xa4,0x30,
|
||||
0xad,0xfd,0x9f,0x76,0xc2,0xd4,0xea,0x9d,0x87,0xb7,0x7a,0x56,0x3b,0x8a,0x1c,0x25,
|
||||
0x4d,0xd9,0xa3,0x82,0x47,0x97,0xdc,0xa7,0x0c,0x0d,0x05,0xa6,0x2d,0x51,0xc4,0x78,
|
||||
0x5a,0x72,0xd3,0x0d,0x80,0x4a,0x83,0x4c,0x41,0x69,0x09,0x04,0xf5,0x38,0x09,0xc5,
|
||||
0x2f,0x51,0x4a,0xc6,0x7c,0xa1,0xb4,0x34,0x90,0x94,0x24,0x21,0x20,0x60,0x04,0x8c,
|
||||
0x01,0x5f,0x54,0x51,0x48,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x9a,0xbb,0x8d,0xb5,0xba,0x57,
|
||||
0x76,0xb4,0xfb,0x96,0x6d,0x59,0x64,0x8b,0x79,0x82,0xa0,0x78,0x43,0xe8,0xf9,0xda,
|
||||
0x51,0x18,0xe2,0x6d,0x63,0xe6,0x42,0xbd,0x52,0x45,0x3a,0xa8,0xa0,0x0c,0xbf,0xed,
|
||||
0x0d,0xf0,0xca,0xbd,0xe9,0x61,0x2a,0xef,0xb7,0x4f,0x2f,0x52,0xd9,0xf9,0xad,0x56,
|
||||
0x99,0x18,0x13,0x19,0x1e,0x49,0x3d,0x1d,0xfc,0x8f,0xa1,0xaa,0x3d,0xaa,0xb4,0xd4,
|
||||
0xbb,0x0b,0x13,0x2d,0xb3,0x60,0x3b,0x0a,0x4b,0x20,0xb6,0xb8,0xef,0x34,0x5b,0x71,
|
||||
0x18,0xe5,0x8c,0x1f,0x2a,0xfd,0x10,0xd4,0x7d,0xb9,0x7b,0x05,0xa0,0x37,0x79,0xa2,
|
||||
0x35,0x56,0x98,0x83,0x73,0x7b,0x84,0xa5,0x32,0x8b,0x7c,0x0f,0xa7,0x3e,0x4b,0x4e,
|
||||
0x0d,0x5a,0x95,0x72,0x43,0x8f,0x87,0xe7,0x93,0x54,0x58,0xbe,0xd3,0xa3,0xa3,0xbb,
|
||||
0x1c,0x97,0x97,0x19,0x5c,0x4b,0x09,0x1d,0x12,0x7a,0xfe,0x1c,0xa9,0x17,0x4a,0x4b,
|
||||
0x47,0xd8,0x8b,0x7c,0x40,0x38,0xda,0x8e,0x53,0x9e,0x7c,0x27,0x9e,0x47,0xd6,0xb6,
|
||||
0x3f,0x5b,0x7c,0x27,0x36,0xce,0x7f,0xda,0xa5,0xd8,0xb5,0x1e,0xa2,0xd3,0x8a,0x21,
|
||||
0x4a,0x0c,0xb4,0xea,0x1f,0x6f,0xd8,0x85,0xa7,0x24,0x7d,0x6a,0x06,0xec,0xd9,0xf0,
|
||||
0xea,0xd2,0xba,0x87,0x7b,0xae,0x0a,0xbf,0xde,0xd5,0x73,0xb6,0x69,0xa9,0x8d,0xa9,
|
||||
0x56,0xf4,0x40,0x0d,0x26,0x69,0x1f,0x36,0x16,0x7b,0xc5,0x61,0x27,0x1c,0xc0,0x1c,
|
||||
0xfc,0xe8,0x74,0xf7,0x43,0x8d,0xad,0x99,0x07,0xf6,0x3c,0xec,0xfd,0xa9,0x7b,0x47,
|
||||
0xee,0x15,0x9e,0xdc,0x96,0x26,0x23,0x46,0xc0,0x90,0x89,0x57,0x49,0xef,0xa5,0x45,
|
||||
0x80,0xda,0x54,0x09,0x6d,0x24,0xf2,0x2b,0x5e,0x38,0x40,0x1e,0x79,0x3d,0x2b,0x73,
|
||||
0xc0,0x09,0x00,0x0e,0x40,0x57,0x15,0x96,0xc5,0x6d,0xd3,0x76,0xe6,0xa0,0x5a,0x60,
|
||||
0x46,0xb6,0x41,0x6b,0x92,0x23,0x44,0x65,0x2d,0x36,0x9f,0x64,0xa4,0x01,0x5d,0xd5,
|
||||
0x05,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,
|
||||
0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x1f,0xff,0xd9};
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,61 @@
|
|||
// JPEGDEC example for Adafruit GFX displays
|
||||
|
||||
#include "JPEGDEC.h"
|
||||
// Sample image (truncated) containing a 320x240 Exif thumbnail
|
||||
// if an image doesn't display, it may have been created using progressive, open gimp, export as a jpg, remove progressive.
|
||||
|
||||
#include "thumb_test.h"
|
||||
//#include "ncc1701.h" //http://clipart-library.com/clip-art/uss-enterprise-silhouette-11.htm
|
||||
//#include "batman.h" //http://clipart-library.com/clipart/batman-clip-art_19.htm
|
||||
|
||||
#include <M5StickCPlus.h>
|
||||
|
||||
#define DISPLAY_WIDTH 135
|
||||
#define DISPLAY_HEIGHT 240
|
||||
|
||||
|
||||
JPEGDEC jpeg;
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
|
||||
M5.Lcd.drawBitmap((int16_t)pDraw->x, (int16_t)pDraw->y, (int16_t)pDraw->iWidth, (int16_t)pDraw->iHeight, pDraw->pPixels);
|
||||
return 1;
|
||||
} /* JPEGDraw() */
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
|
||||
Serial.println("Starting...");
|
||||
|
||||
M5.begin();
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
} /* setup() */
|
||||
|
||||
void loop() {
|
||||
int i;
|
||||
long lTime;
|
||||
int iOption[4] = {0, JPEG_SCALE_HALF, JPEG_SCALE_QUARTER, JPEG_SCALE_EIGHTH};
|
||||
int iCenterX[4] = {0,0,0,0};
|
||||
int iCenterY[4] = {0,0,0,0};
|
||||
|
||||
for (i=0; i<4; i++)
|
||||
{
|
||||
M5.Lcd.fillScreen(TFT_BLACK);
|
||||
M5.Lcd.startWrite(); // Not sharing TFT bus on PyPortal, just CS once and leave it
|
||||
if (jpeg.openFLASH((uint8_t *)thumb_test, sizeof(thumb_test), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)ncc1701, sizeof(ncc1701), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)batman, sizeof(batman), JPEGDraw))
|
||||
|
||||
{
|
||||
lTime = micros();
|
||||
if (jpeg.hasThumb()) {jpeg.decode(iCenterX[i],iCenterY[i],JPEG_EXIF_THUMBNAIL | iOption[i]); } else { jpeg.decode(iCenterX[i],iCenterY[i], iOption[i]); }
|
||||
{
|
||||
lTime = micros() - lTime;
|
||||
Serial.printf("%d x %d image, decode time = %d us\n", jpeg.getWidth() >> i, jpeg.getHeight() >> i, (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
delay(2000); // pause between images
|
||||
} // for i
|
||||
} /* loop() */
|
|
@ -0,0 +1,845 @@
|
|||
//
|
||||
// batman-5
|
||||
// Data size = 13342 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 240, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t batman[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x47,
|
||||
0x00,0x47,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0xf0,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1e,0x00,0x01,0x00,0x02,0x02,0x03,0x01,0x01,0x01,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x09,0x06,0x07,0x04,0x05,0x0a,0x03,0x01,
|
||||
0x02,0xff,0xc4,0x00,0x49,0x10,0x00,0x01,0x03,0x03,0x03,0x02,0x04,0x03,0x05,0x04,
|
||||
0x05,0x0a,0x04,0x07,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x06,0x07,0x08,0x11,
|
||||
0x12,0x21,0x09,0x13,0x31,0x41,0x14,0x22,0x51,0x15,0x23,0x61,0x71,0x81,0x32,0x42,
|
||||
0x52,0x62,0x24,0x33,0x82,0x91,0x92,0x16,0x17,0x18,0x53,0x63,0x72,0xa1,0xb1,0xb2,
|
||||
0xc1,0x73,0x93,0xa2,0xc2,0x19,0x34,0x43,0x44,0x83,0x84,0xc3,0xff,0xc4,0x00,0x1c,
|
||||
0x01,0x01,0x00,0x01,0x05,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x03,0x01,0x04,0x05,0x06,0x07,0x02,0x08,0xff,0xc4,0x00,0x38,0x11,0x00,
|
||||
0x01,0x03,0x02,0x05,0x01,0x06,0x03,0x06,0x06,0x03,0x01,0x00,0x00,0x00,0x00,0x01,
|
||||
0x00,0x02,0x03,0x04,0x11,0x05,0x06,0x12,0x21,0x31,0x51,0x13,0x22,0x41,0x61,0x71,
|
||||
0x81,0x07,0x32,0x91,0x15,0x42,0x62,0x92,0xa1,0xb1,0x14,0x23,0x52,0x72,0x82,0xa2,
|
||||
0x33,0xb2,0xc1,0xf0,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,
|
||||
0x3f,0x00,0xb5,0x3a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,
|
||||
0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,
|
||||
0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,
|
||||
0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,
|
||||
0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,
|
||||
0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,
|
||||
0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,
|
||||
0x44,0xa5,0x29,0x44,0x4a,0x52,0x94,0x44,0xa5,0x29,0x44,0x4a,0x52,0xa2,0xae,0xf8,
|
||||
0x37,0xe7,0x8d,0x6d,0x27,0x1e,0x36,0xd8,0x69,0x66,0xff,0x00,0xa8,0xd3,0xd8,0x2b,
|
||||
0xb7,0xd9,0x4a,0x8f,0x97,0x1d,0x27,0x90,0x24,0x49,0x20,0x82,0x96,0xc1,0x1d,0x92,
|
||||
0x08,0x52,0xc8,0xe0,0x70,0x3a,0x94,0x92,0x29,0x55,0x4a,0xf3,0xf3,0xa5,0x5e,0x23,
|
||||
0xba,0xd3,0xa6,0xda,0xbb,0x71,0xce,0x66,0xe4,0x6f,0xe5,0x48,0xbb,0xbc,0x17,0x75,
|
||||
0xb2,0x5d,0x1c,0x26,0x1c,0x84,0x03,0xd9,0x2d,0x20,0x76,0x8e,0x52,0x3b,0x25,0x4d,
|
||||
0x81,0xc7,0x60,0x42,0x87,0x29,0x37,0x13,0xb5,0xfd,0xec,0xe9,0xa6,0xea,0xad,0x4d,
|
||||
0x8c,0x6e,0xe8,0x2d,0xb9,0x3a,0x1a,0x2e,0x4b,0xc6,0x6e,0x4a,0x4a,0x26,0xb3,0xc1,
|
||||
0xe1,0x4a,0x48,0xe7,0x87,0x5b,0xf4,0x3d,0x68,0x27,0x80,0xa1,0xd4,0x12,0x4f,0x48,
|
||||
0x22,0xdf,0xb4,0xa5,0x28,0x89,0x4a,0x56,0xa2,0xdc,0xd6,0xe0,0xa0,0xed,0xab,0x0a,
|
||||
0xb2,0xe5,0xd7,0x68,0xe1,0xfb,0x23,0xb7,0xc8,0x96,0xdb,0x82,0x81,0x3d,0x4c,0xb0,
|
||||
0xf7,0x52,0x54,0xf2,0x78,0xe7,0x92,0x8e,0x02,0xf8,0xe3,0xe6,0x09,0x29,0xec,0x48,
|
||||
0x20,0x8b,0x6e,0xd2,0xb5,0xde,0x79,0xb8,0x9d,0x2f,0xd3,0x06,0x63,0x39,0x95,0xea,
|
||||
0x06,0x39,0x62,0x32,0x99,0x4c,0x88,0xed,0x4b,0xb9,0x34,0x97,0x5f,0x69,0x43,0x94,
|
||||
0xb8,0xdb,0x7d,0x5d,0x4b,0x49,0x1f,0xbc,0x90,0x47,0x7a,0xc5,0xac,0x7b,0xdb,0xd0,
|
||||
0x4c,0x86,0x40,0x62,0x26,0xad,0xe2,0x69,0x70,0x9e,0x00,0x97,0x72,0x6e,0x30,0x27,
|
||||
0xe8,0x0b,0xa5,0x22,0x88,0xb7,0x6d,0x2b,0x52,0xe8,0xc6,0xe2,0xf1,0xfd,0x72,0xcd,
|
||||
0x75,0x22,0xcb,0x8e,0x2d,0xb9,0x50,0xf0,0xdb,0x83,0x36,0xc5,0xcf,0x69,0xd0,0xe2,
|
||||
0x25,0x3a,0xa6,0xca,0x96,0xb4,0x11,0xdb,0xa5,0x2b,0x0a,0x6c,0x7a,0xf2,0x5b,0x51,
|
||||
0xe7,0x82,0x2b,0x6d,0x51,0x12,0x94,0xa5,0x11,0x29,0x51,0xd3,0x74,0xdb,0xec,0xd3,
|
||||
0x3d,0xab,0x5b,0xdf,0x8f,0x79,0xb8,0x0b,0xee,0x5f,0xd0,0x15,0x1f,0x17,0xb6,0x38,
|
||||
0x15,0x29,0x44,0x8e,0x52,0x5e,0x3d,0xc3,0x08,0x3c,0x83,0xd4,0xbe,0xe4,0x77,0x4a,
|
||||
0x55,0xe9,0x55,0x05,0x9d,0x78,0x8f,0xeb,0x7e,0x67,0xac,0xb0,0x35,0x05,0x8c,0x9d,
|
||||
0xcb,0x12,0xed,0xab,0xe2,0x05,0x86,0xde,0xa5,0x26,0xda,0xd3,0x24,0x82,0xa6,0x9c,
|
||||
0x68,0x9f,0xbe,0xeb,0xe3,0xe6,0x52,0xf9,0x51,0xed,0xc1,0x48,0x4a,0x42,0x48,0xbd,
|
||||
0x04,0x52,0xa3,0x3e,0xca,0xf7,0xc7,0x8a,0x6e,0xef,0x15,0x2d,0x37,0xe5,0x58,0xf3,
|
||||
0xdb,0x73,0x21,0x77,0x5c,0x79,0x4b,0xe4,0xf4,0x8e,0x01,0x91,0x1c,0x9f,0xdb,0x64,
|
||||
0xa9,0x40,0x7f,0x12,0x09,0x01,0x5e,0xa9,0x52,0xe4,0xc5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xad,
|
||||
0x05,0xbc,0xed,0xd9,0xd9,0x36,0x91,0xa5,0x0e,0xdf,0xa5,0xa5,0xa9,0xf9,0x35,0xc7,
|
||||
0xae,0x35,0x8a,0xd0,0xb5,0x11,0xf1,0x52,0x00,0x1c,0xad,0x5c,0x77,0x0d,0x36,0x14,
|
||||
0x95,0x2c,0xf6,0xf5,0x4a,0x41,0x05,0x69,0xa2,0x2c,0x1b,0x7f,0x1b,0xec,0xb4,0xed,
|
||||
0x3f,0x11,0xfb,0x22,0xcc,0xa6,0x2e,0x9a,0x95,0x76,0x60,0x9b,0x7d,0xbd,0x47,0xa9,
|
||||
0x10,0x9b,0x3c,0x8f,0x8a,0x7c,0x7f,0x08,0x23,0xe5,0x41,0xee,0xb2,0x0f,0xb0,0x51,
|
||||
0x14,0xdb,0x61,0xd1,0xad,0x69,0xdc,0xee,0x55,0x3b,0x22,0x83,0x8c,0x5f,0xf2,0xeb,
|
||||
0x9d,0xdd,0xe5,0x4a,0x93,0x7b,0x90,0xc9,0x6d,0x87,0x5c,0x57,0x72,0x4c,0x87,0x3a,
|
||||
0x5a,0x1f,0x82,0x7a,0x87,0x00,0x70,0x07,0x02,0xb9,0x38,0x46,0xb8,0x67,0x39,0x56,
|
||||
0xb3,0x4f,0xc8,0x95,0x61,0xb3,0xea,0x26,0xa4,0x65,0x33,0x1b,0x6e,0x34,0xbc,0x82,
|
||||
0x07,0xc6,0xb8,0xd4,0x85,0x2b,0x84,0x79,0x0c,0xa9,0x41,0x94,0x9f,0xd8,0x4a,0x7a,
|
||||
0x90,0x42,0x12,0x84,0x84,0xf4,0x00,0x79,0xbc,0x7d,0x2d,0xb4,0xe5,0x36,0x4d,0x3f,
|
||||
0xb2,0x43,0xcd,0xaf,0x8d,0xe4,0x59,0x5a,0x18,0xea,0xb8,0xdc,0x19,0x61,0xb6,0x1a,
|
||||
0x5b,0xca,0x25,0x45,0x28,0x42,0x12,0x91,0xd0,0x8e,0x7a,0x01,0xe9,0x04,0x84,0x82,
|
||||
0x7b,0x93,0x5c,0xb7,0x39,0xe6,0xfa,0x8c,0xb2,0xd6,0x36,0x18,0x9a,0xe7,0x3f,0x8d,
|
||||
0x4e,0x37,0xf3,0x3a,0x40,0xe0,0x71,0x72,0xe0,0x6f,0xc0,0x22,0xe4,0x5c,0x45,0x10,
|
||||
0x93,0x92,0xa9,0xd1,0xdf,0x0c,0xcd,0xc1,0x37,0x13,0xce,0x18,0x8c,0x47,0x17,0xc7,
|
||||
0x3e,0x42,0x6f,0x11,0x3a,0xff,0x00,0xe2,0xe0,0x1f,0xf1,0xad,0x0b,0x95,0xe1,0x99,
|
||||
0x9e,0x8b,0x65,0xe9,0x83,0x7d,0xb6,0x5d,0x71,0x1c,0x8a,0x12,0xc3,0xad,0x79,0xc9,
|
||||
0x5c,0x77,0x90,0x41,0xec,0xe3,0x4b,0x1c,0x72,0x39,0x1d,0x96,0x82,0x41,0xf6,0x35,
|
||||
0xe8,0xbe,0xa3,0xbe,0xfd,0x34,0x72,0xc9,0xab,0x5b,0x6d,0xcb,0x9e,0xb8,0x45,0x42,
|
||||
0xae,0xb8,0xe4,0x07,0xef,0x56,0xc9,0xc1,0x3f,0x7b,0x1d,0xc6,0x51,0xe6,0x38,0x90,
|
||||
0x7f,0x85,0xc4,0x20,0xa5,0x43,0xd0,0xf6,0x3c,0x72,0x94,0x91,0xcf,0xb0,0x3f,0x8a,
|
||||
0x35,0xb3,0xd7,0x47,0x4f,0x89,0x44,0xcd,0x0f,0x20,0x5d,0xa0,0x82,0xdb,0x9b,0x5f,
|
||||
0x72,0x6e,0x3a,0xf0,0x7f,0x65,0x33,0xe9,0xc0,0x17,0x69,0x50,0x8f,0x6f,0x3e,0x2f,
|
||||
0x7a,0x9d,0xa6,0x2c,0x47,0xb5,0x67,0xf0,0xda,0xd4,0x9b,0x2b,0x69,0x4b,0x68,0x94,
|
||||
0xfb,0xa2,0x35,0xc9,0xa4,0x8e,0x07,0x77,0x82,0x48,0x77,0xb0,0x3f,0xd6,0x24,0xa9,
|
||||
0x47,0xd5,0x75,0x62,0xda,0x35,0xe2,0x3d,0xa0,0xda,0xd2,0xa6,0x63,0x43,0xcc,0x5a,
|
||||
0xc6,0x2e,0xce,0x27,0xab,0xec,0xcc,0xa1,0x22,0x03,0x80,0xf3,0xc7,0x48,0x71,0x44,
|
||||
0xb2,0xa5,0x7f,0x2a,0x1c,0x51,0x3f,0x4a,0xa0,0xf9,0x98,0x65,0xd2,0x0e,0x15,0x6a,
|
||||
0xca,0x9e,0x64,0x26,0xd1,0x72,0x9d,0x2a,0xdf,0x1d,0xce,0x7b,0x97,0x63,0xa1,0x85,
|
||||
0xb9,0xc8,0xfa,0x71,0x25,0xbe,0x0f,0xb9,0x0a,0xfa,0x57,0x47,0x5f,0x48,0x31,0xed,
|
||||
0x90,0x5d,0x86,0xfc,0x8f,0x70,0x6c,0x7e,0x85,0x58,0xaf,0x54,0x51,0x25,0xb1,0x3e,
|
||||
0x33,0x72,0x23,0x3c,0xdc,0x98,0xee,0x0e,0xa4,0x3a,0xd2,0xc2,0x90,0xa1,0xf5,0x04,
|
||||
0x76,0x22,0xa0,0xc7,0x8c,0xac,0xaf,0x87,0xda,0x4c,0x06,0xf9,0xe3,0xcf,0xca,0x21,
|
||||
0xb7,0xf9,0xfd,0xcc,0x95,0x7f,0xed,0xaa,0x78,0xd3,0xdd,0x6b,0xcf,0xf4,0x99,0x6e,
|
||||
0x1c,0x33,0x34,0xbf,0x62,0xe9,0x75,0x41,0x6e,0xb5,0x6a,0xb8,0x3a,0xc3,0x6e,0x91,
|
||||
0xe8,0x56,0x84,0xa8,0x25,0x5f,0xa8,0x35,0x98,0xea,0xc6,0xf0,0xb5,0x77,0x5c,0xf0,
|
||||
0x48,0x98,0x7e,0x77,0x98,0x3b,0x91,0xd8,0xa2,0x4d,0x6e,0xe0,0xc3,0x52,0x22,0x47,
|
||||
0x43,0x89,0x79,0x08,0x71,0x01,0x45,0xd4,0x36,0x95,0xab,0xe5,0x75,0x7d,0x94,0x48,
|
||||
0xf4,0xfa,0x57,0xb4,0x5a,0x6d,0x4b,0x52,0xcf,0x2a,0x25,0x47,0x80,0x39,0x27,0xd8,
|
||||
0x76,0x15,0xf9,0x5d,0xd5,0xa3,0x09,0xc8,0x2f,0xf6,0x1b,0xb5,0xee,0xd9,0x64,0xb8,
|
||||
0x5c,0x6d,0x16,0x8f,0x2f,0xed,0x19,0xd1,0x23,0x2d,0xd6,0x61,0xf9,0x9d,0x5e,0x59,
|
||||
0x79,0x49,0x04,0x36,0x15,0xd0,0xbe,0x0a,0xb8,0x07,0xa4,0xfd,0x2b,0x8f,0x8e,0xe3,
|
||||
0x37,0x8c,0xc2,0xf1,0x1e,0xd3,0x61,0xb5,0x4d,0xbd,0xdd,0x24,0x1e,0x96,0x60,0xdb,
|
||||
0xa3,0xae,0x43,0xee,0x1f,0xa2,0x50,0x80,0x54,0x7f,0x41,0x44,0x56,0x51,0xe0,0x7b,
|
||||
0x95,0xb7,0x17,0x33,0xd5,0x5c,0x65,0x47,0x97,0x67,0x5b,0xe0,0xdc,0x5b,0x04,0xfa,
|
||||
0x06,0x1c,0x75,0xb5,0xf0,0x3f,0xfd,0x94,0x73,0xf9,0x0a,0xb6,0x79,0xd3,0xa3,0x5b,
|
||||
0x22,0x3b,0x2a,0x64,0x86,0xa2,0x45,0x69,0x3d,0x4e,0x3e,0xfa,0xc2,0x10,0x81,0xf5,
|
||||
0x2a,0x3d,0x80,0xaf,0x35,0x18,0x7e,0xa1,0x6a,0x66,0xd6,0x33,0xab,0xdb,0x76,0x1b,
|
||||
0x8c,0xfc,0x1b,0x2b,0xf8,0x75,0x5a,0xee,0x28,0x0d,0x20,0x48,0x6d,0xb5,0x29,0x0e,
|
||||
0x29,0xa5,0x05,0xa4,0xf4,0x2b,0xa9,0x08,0x27,0x8e,0x14,0x08,0xe3,0xb7,0x71,0x5d,
|
||||
0x26,0xa0,0x6b,0x0e,0x75,0xaa,0xef,0xb4,0xee,0x67,0x98,0xdf,0x32,0x95,0x34,0x4a,
|
||||
0x9a,0x17,0x6b,0x83,0xb2,0x12,0xd1,0xfe,0x44,0xad,0x44,0x23,0xfb,0x20,0x51,0x15,
|
||||
0xea,0x6b,0x3f,0x89,0x5e,0x83,0x68,0xd2,0xa4,0xc5,0x73,0x2c,0x4e,0x5d,0x78,0x65,
|
||||
0x3c,0xfd,0x9d,0x8b,0x24,0x4d,0x24,0xff,0x00,0x09,0x78,0x10,0xca,0x48,0x3e,0xa0,
|
||||
0xb9,0xc8,0xfa,0x7b,0x55,0x72,0xee,0x1f,0xc5,0xc3,0x55,0x35,0x61,0x99,0x16,0xac,
|
||||
0x25,0x96,0xf4,0xce,0xc2,0xea,0x14,0xda,0xdc,0x80,0xf1,0x7a,0xe4,0xe0,0x3d,0x89,
|
||||
0xf8,0x92,0x13,0xe5,0xf6,0xe3,0x8f,0x29,0x29,0x50,0x3c,0xfc,0xe7,0xb7,0x10,0x5a,
|
||||
0x94,0x45,0xf5,0x99,0x31,0xfb,0x84,0xa7,0xa5,0x4a,0x7d,0xc9,0x32,0x5e,0x59,0x71,
|
||||
0xc7,0x9e,0x59,0x5a,0xd6,0xa2,0x79,0x25,0x44,0xf7,0x24,0xfd,0x4d,0x7c,0xab,0xed,
|
||||
0x0a,0x2a,0xe7,0x4c,0x62,0x32,0x3b,0xad,0xe7,0x12,0xda,0x7f,0x32,0x78,0x1f,0xf3,
|
||||
0xac,0x9b,0x57,0x30,0xe4,0xe9,0xe6,0xaa,0xe6,0x38,0xba,0x09,0x2d,0x59,0x6f,0x12,
|
||||
0xed,0xe8,0x51,0x24,0xf5,0x21,0xa7,0x96,0x84,0x9e,0xff,0x00,0x50,0x90,0x6a,0x13,
|
||||
0x2b,0x04,0xa2,0x1b,0xf7,0x88,0x27,0xd8,0x58,0x1f,0xdc,0x2a,0xdb,0xc5,0x7f,0x78,
|
||||
0x2d,0xdf,0x35,0xd3,0x19,0xd6,0x9d,0x47,0xc5,0xcd,0xd2,0xca,0xab,0x6d,0xc3,0xc9,
|
||||
0x87,0x90,0x46,0x65,0x61,0x84,0x4a,0x4a,0x42,0xd4,0xcf,0x99,0xc7,0x42,0x89,0x42,
|
||||
0x87,0x53,0x67,0x9e,0xa4,0x2f,0x85,0x02,0x95,0x77,0xbd,0x7d,0x8b,0x6f,0x7e,0xc7,
|
||||
0xbb,0xac,0x1d,0x4c,0xcb,0x11,0xec,0xfa,0x87,0x69,0x69,0x3f,0x6b,0xd9,0x90,0xae,
|
||||
0x10,0xe8,0xf4,0xf8,0xa8,0xc0,0x92,0xa5,0x34,0xa3,0xc7,0x23,0xb9,0x6d,0x44,0x25,
|
||||
0x44,0x82,0x85,0x2f,0x45,0x6c,0x47,0x43,0xf4,0xda,0xfd,0xb4,0xb9,0x96,0x98,0xd7,
|
||||
0x57,0x73,0xac,0x67,0x2d,0x77,0xcf,0xbb,0x5b,0xee,0x4d,0x25,0xb1,0x0e,0x58,0x69,
|
||||
0xb4,0x3a,0xc8,0x42,0x4f,0x28,0x5a,0x14,0x84,0x90,0xbe,0x79,0x3c,0x36,0xb4,0x9e,
|
||||
0x3a,0x49,0x83,0x3a,0xe5,0xa3,0x99,0xdf,0x87,0x9e,0xbe,0xd9,0xf2,0x7c,0x4a,0xe7,
|
||||
0x24,0x5b,0x04,0x85,0x4a,0xb0,0x5e,0xf8,0xe4,0x38,0x80,0x7e,0x78,0xb2,0x40,0xe0,
|
||||
0x15,0x74,0x9e,0x95,0xa7,0xd1,0x69,0x57,0x23,0x8e,0x4a,0x53,0xa3,0x61,0x19,0xc2,
|
||||
0x8f,0x13,0xc4,0xe7,0xc2,0x5c,0x34,0x48,0xc2,0x43,0x6f,0x71,0xa8,0x0e,0x76,0x36,
|
||||
0x21,0xc3,0x7b,0x8e,0x9b,0x8f,0x1b,0x4a,0xe8,0x8b,0x5a,0x1c,0xaf,0xf6,0x95,0xa4,
|
||||
0x76,0x8d,0xba,0x6c,0x7b,0x76,0x1a,0x51,0x13,0x27,0xb4,0x94,0x43,0xbc,0xc7,0xe9,
|
||||
0x8f,0x7a,0xb3,0x95,0x82,0xe4,0x19,0x3c,0x77,0x1c,0x73,0xc9,0x6d,0x7c,0x15,0x21,
|
||||
0x7e,0xe3,0xb1,0xe1,0x49,0x50,0x1b,0xba,0xb7,0xf5,0x0a,0x52,0x94,0xa2,0x25,0x29,
|
||||
0x4a,0x22,0x52,0x94,0xa2,0x25,0x29,0x4a,0x22,0xc6,0x35,0x37,0x52,0x2c,0x3a,0x43,
|
||||
0x80,0xdf,0x33,0x2c,0x9e,0x62,0x60,0x58,0xac,0xd1,0x95,0x26,0x4b,0xc7,0x8e,0x48,
|
||||
0x1d,0x92,0x84,0x82,0x47,0x52,0xd4,0xa2,0x94,0x25,0x3e,0xea,0x52,0x47,0xbd,0x79,
|
||||
0xd8,0xdd,0x0e,0xe3,0xb2,0x2d,0xd1,0x6a,0xe5,0xd3,0x34,0xbf,0x28,0xb2,0xca,0xc9,
|
||||
0x8f,0x6c,0xb6,0xa5,0x5c,0xb7,0x02,0x22,0x54,0x4b,0x6d,0x27,0xea,0x7b,0x95,0x29,
|
||||
0x5f,0xbc,0xa5,0x28,0xf0,0x01,0x00,0x4a,0xaf,0x16,0x6d,0xdd,0xab,0x55,0x35,0x14,
|
||||
0x69,0x46,0x35,0x31,0x47,0x14,0xc5,0x24,0xab,0xed,0x37,0x1b,0xe3,0xa6,0x6d,0xcd,
|
||||
0x3c,0xa5,0x43,0x9f,0x52,0x86,0x41,0x52,0x07,0xa7,0xce,0x5c,0xe4,0x10,0x94,0x1a,
|
||||
0xd5,0xbe,0x1e,0x9b,0x50,0xff,0x00,0x48,0x4d,0x4c,0x37,0xec,0x82,0x19,0x73,0x04,
|
||||
0xc7,0x1c,0x43,0xb3,0x12,0xe2,0x0f,0x97,0x3e,0x47,0xab,0x71,0x41,0xf4,0x23,0xd1,
|
||||
0x6b,0xf5,0xf9,0x78,0x07,0x8f,0x30,0x1a,0xc5,0x62,0x98,0x95,0x3e,0x11,0x47,0x25,
|
||||
0x75,0x51,0xb3,0x18,0x2f,0xeb,0xd0,0x0f,0x32,0x76,0x0b,0xd3,0x5a,0x5c,0x6c,0x14,
|
||||
0xae,0xf0,0xc8,0xda,0x18,0xc0,0xb1,0xd6,0x35,0x67,0x2b,0x87,0xd3,0x91,0xdd,0xd8,
|
||||
0x3f,0x62,0xc5,0x75,0x24,0x2a,0x14,0x35,0x8e,0x0b,0xc4,0x1f,0x47,0x1d,0x07,0xb7,
|
||||
0xd1,0xb2,0x3b,0xfc,0xea,0x02,0x46,0xee,0xdf,0x73,0x56,0xad,0xaf,0x69,0x6b,0xf7,
|
||||
0xe7,0xd0,0xd4,0xdc,0x86,0x69,0x54,0x5b,0x2d,0xb1,0xc2,0x78,0x91,0x23,0x8e,0x7a,
|
||||
0x97,0xc7,0x07,0xcb,0x40,0x21,0x4a,0x20,0x8f,0x64,0x82,0x0a,0x85,0x6e,0x69,0x93,
|
||||
0x22,0xda,0x60,0x3f,0x2e,0x53,0xcd,0x43,0x85,0x19,0xa5,0x3a,0xeb,0xce,0xa8,0x21,
|
||||
0xb6,0x9b,0x48,0xe5,0x4a,0x24,0xf6,0x00,0x00,0x4f,0x3e,0xc0,0x55,0x13,0x6e,0xa7,
|
||||
0x5c,0x2f,0x5b,0xb6,0xd7,0xe9,0x13,0x6d,0x31,0xa5,0xcf,0x81,0xe7,0x0b,0x56,0x39,
|
||||
0x6b,0x8e,0xd2,0x96,0xe2,0x98,0x0a,0x21,0x1c,0x36,0x07,0x25,0xc7,0x14,0x4a,0xc8,
|
||||
0xe3,0x9e,0x54,0x13,0xe8,0x91,0x5f,0x2f,0xe0,0x74,0x53,0xe7,0xec,0x7a,0x4c,0x43,
|
||||
0x11,0xff,0x00,0x85,0x9b,0xbb,0xa0,0x1f,0x75,0x80,0xf8,0x0e,0x6e,0x7a,0x02,0x79,
|
||||
0x2b,0x20,0xf2,0x21,0x65,0x9b,0xca,0xb2,0xff,0x00,0x0f,0x5d,0xd3,0x65,0x9b,0x9a,
|
||||
0xc2,0xb2,0x97,0x33,0x08,0x91,0x05,0xca,0xc9,0x35,0xa6,0xd1,0x3e,0x0b,0x45,0x96,
|
||||
0xe4,0x36,0xea,0x14,0xa0,0x92,0x8e,0x48,0xeb,0x41,0x41,0xe4,0x8e,0x01,0x0b,0x47,
|
||||
0x6e,0x41,0x2a,0xd8,0x5b,0xd9,0xcd,0xe1,0xe0,0x3b,0x57,0xd4,0x79,0xd2,0xdd,0x4b,
|
||||
0x66,0x5d,0xa5,0xdb,0x5b,0x08,0x24,0x75,0x38,0xec,0x91,0xe4,0x25,0x29,0x1e,0xff,
|
||||
0x00,0xd6,0x15,0x1e,0x3d,0x92,0xa3,0xed,0x5f,0xce,0xcc,0xf6,0xfd,0xfe,0x8d,0xfa,
|
||||
0x15,0x68,0xc6,0xa5,0x86,0xd5,0x7f,0x94,0xb5,0x5c,0xaf,0x0e,0x34,0x79,0x06,0x53,
|
||||
0x81,0x3c,0xa0,0x1e,0x4f,0x21,0x08,0x4a,0x1b,0xe4,0x76,0x3d,0x05,0x5f,0xbd,0x51,
|
||||
0x5f,0x76,0xfa,0x84,0xce,0xea,0xf7,0x5b,0x80,0x6d,0xfa,0xc6,0xe1,0x9d,0x8d,0x5a,
|
||||
0xae,0xe1,0xfc,0x89,0x6c,0x2b,0x80,0xeb,0xcd,0xa5,0x4a,0x7d,0x01,0x7e,0xde,0x4b,
|
||||
0x29,0x75,0x3c,0x8f,0xdf,0x5a,0x87,0x72,0x91,0x58,0xc8,0x28,0xe8,0xb1,0x4c,0xd1,
|
||||
0x2c,0xd4,0x2d,0xd3,0x49,0x13,0x8c,0x84,0x8e,0x03,0x23,0xdc,0x91,0xd3,0x51,0x1b,
|
||||
0x7a,0xf9,0x2f,0x44,0x96,0xc7,0x63,0xc9,0x59,0x4d,0x83,0x62,0x09,0xd5,0x1d,0x8a,
|
||||
0xe9,0xb6,0x10,0xed,0xd1,0x8b,0x16,0x44,0x87,0x91,0x92,0x2a,0xe2,0xe4,0x62,0xef,
|
||||
0x42,0xa4,0xa5,0x6b,0x5b,0x2a,0x4f,0x20,0xf6,0x6d,0xd6,0xd2,0x7b,0xfe,0xd3,0x20,
|
||||
0xfa,0x56,0x9f,0xb3,0x78,0x45,0x65,0x96,0xcd,0x4c,0xc7,0x5b,0xba,0x64,0xd6,0x9b,
|
||||
0xd6,0x0e,0xa9,0x49,0x55,0xce,0x44,0x5f,0x31,0x89,0x69,0x65,0x20,0xa9,0x48,0x0d,
|
||||
0x91,0xc7,0xcf,0xc0,0x40,0x52,0x56,0x48,0x2a,0xe4,0x8e,0x05,0x5a,0x24,0xfb,0x95,
|
||||
0xbb,0x1e,0x80,0x1f,0x9b,0x2a,0x2d,0xb2,0x0b,0x65,0x0d,0x07,0x1f,0x71,0x2c,0xb4,
|
||||
0x92,0x48,0x4a,0x13,0xc9,0x20,0x0e,0x49,0x00,0x0f,0xa9,0x00,0x57,0x34,0x0e,0x48,
|
||||
0x15,0x69,0x06,0x7b,0xc7,0x69,0x3b,0x6e,0xc2,0x4b,0x32,0x47,0x3d,0xd6,0x20,0x1b,
|
||||
0x17,0x6e,0x6c,0x6d,0x7d,0xaf,0x71,0xbd,0x87,0x45,0x53,0x13,0x0d,0xae,0x17,0x9e,
|
||||
0x6d,0xc4,0xc5,0x89,0x07,0x5f,0x35,0x1e,0x2c,0x08,0xcd,0x43,0x82,0xc6,0x45,0x3d,
|
||||
0x96,0x23,0xb0,0x90,0x96,0xda,0x6d,0x32,0x16,0x94,0xa1,0x20,0x7a,0x00,0x00,0x00,
|
||||
0x7e,0x15,0xaf,0x6b,0x2f,0xd6,0x2b,0xa2,0x6f,0x7a,0xb9,0x9b,0xdc,0x50,0x79,0x44,
|
||||
0xbb,0xe4,0xe9,0x09,0x20,0xf3,0xd9,0x52,0x16,0xa1,0xff,0x00,0x3a,0xc4,0x2b,0xec,
|
||||
0x6a,0x16,0x96,0xd2,0xc4,0xd7,0x72,0x1a,0xdf,0xd8,0x2c,0x59,0xe4,0xab,0x65,0xdb,
|
||||
0xfe,0xcf,0x6f,0x98,0xbd,0x82,0xdf,0xa8,0x7a,0x0b,0xaa,0xb7,0x6d,0x32,0xba,0x5f,
|
||||
0x6d,0x4d,0x33,0x75,0xb2,0xde,0x60,0x31,0x74,0x6d,0x2e,0x29,0x29,0x5f,0x48,0x2a,
|
||||
0x00,0x74,0x82,0x42,0x9b,0x59,0x42,0x89,0x42,0xd2,0xb4,0xab,0xa5,0x7d,0xf5,0x46,
|
||||
0x8e,0x78,0x78,0x6e,0x1f,0x01,0xd6,0xab,0x85,0xdd,0x8c,0xea,0x3e,0x0d,0xe4,0xa1,
|
||||
0x7d,0x59,0x9d,0xbe,0x59,0x92,0xa9,0xc1,0xd3,0xf3,0x25,0x2d,0x12,0x95,0xa8,0x93,
|
||||
0xc1,0x50,0x77,0xa0,0x72,0x01,0x04,0x90,0x2b,0xbb,0xf0,0xfc,0xde,0xae,0x35,0x3b,
|
||||
0x0d,0x46,0x8e,0x6a,0xe4,0xc8,0x4c,0xc3,0x65,0x01,0xab,0x35,0xd2,0xee,0x52,0x22,
|
||||
0xba,0xc2,0x7b,0x88,0x8f,0xad,0x5d,0x90,0x51,0xd2,0x0b,0x6b,0x51,0xe0,0x8e,0x13,
|
||||
0xc8,0x29,0x40,0x54,0x97,0xb9,0xce,0xd1,0x7d,0x14,0x7e,0xf9,0x9a,0xe4,0x19,0x46,
|
||||
0x19,0x77,0x89,0x6e,0x6d,0x57,0x0b,0x4d,0xbc,0x79,0x6f,0xcf,0x61,0x69,0x3d,0x6d,
|
||||
0x86,0x54,0xb7,0xdc,0x2b,0x73,0x90,0x12,0x85,0x36,0x86,0xcf,0x7e,0x49,0x3e,0xa2,
|
||||
0xd9,0xd2,0xcd,0x1b,0x8b,0x09,0xf4,0xd9,0x65,0x1b,0x14,0x32,0x34,0x3c,0x7b,0xee,
|
||||
0xaa,0x7b,0x75,0xfa,0x5e,0xbd,0x21,0xd7,0x0b,0xfe,0x3e,0xed,0xd6,0xe1,0x7c,0x90,
|
||||
0x92,0x99,0x0f,0x5d,0x2e,0xce,0xa5,0x52,0xe6,0x3a,0xb1,0xcb,0x92,0x1c,0x00,0x92,
|
||||
0x9f,0x31,0x7d,0x4e,0x24,0x29,0x4a,0x51,0x42,0xd0,0xa2,0xa3,0xd5,0xcd,0x6a,0x0a,
|
||||
0xcb,0xb5,0x5b,0x51,0x2e,0xfa,0xc7,0xa8,0xd9,0x36,0x6d,0x77,0x47,0xf4,0xeb,0xbc,
|
||||
0xc5,0xcb,0x79,0x0d,0xf2,0x50,0xc2,0x54,0x78,0x43,0x69,0x27,0xbf,0x4a,0x12,0x12,
|
||||
0x81,0xcf,0x7e,0x12,0x2b,0x11,0xac,0x9b,0x2f,0xa4,0x03,0xca,0xc6,0x3a,0xc5,0xc6,
|
||||
0xdc,0x2c,0x92,0xdb,0x87,0xb9,0x71,0xd3,0xbb,0xfe,0x4c,0x8e,0xb2,0x8b,0x55,0xc6,
|
||||
0x04,0x15,0x81,0xfb,0x3c,0x48,0x6e,0x52,0x81,0x3f,0x8f,0x31,0x87,0x1f,0x99,0xae,
|
||||
0x8a,0x4d,0xbe,0x4c,0x36,0x22,0x3c,0xfb,0x0e,0x32,0xd4,0xb6,0xcb,0xd1,0xd6,0xb4,
|
||||
0x90,0x1d,0x40,0x5a,0x90,0x54,0x93,0xee,0x3a,0x90,0xb4,0xf3,0xf5,0x49,0x1e,0xd5,
|
||||
0x28,0x74,0xff,0x00,0x4d,0x5e,0xff,0x00,0xe1,0xe1,0xaa,0xd9,0x83,0x8c,0xa9,0x28,
|
||||
0x7b,0x27,0xb6,0x21,0xa5,0x29,0x3c,0x75,0x25,0x82,0x1b,0xea,0x1f,0x51,0xd5,0x39,
|
||||
0x49,0xe7,0xea,0x08,0xf6,0xa9,0x39,0xb0,0xcd,0xbe,0x60,0x3b,0x8b,0xdb,0x36,0x2e,
|
||||
0xf6,0x6f,0x66,0x17,0x55,0xe2,0x99,0x24,0xff,0x00,0x85,0x48,0x70,0xa0,0x3a,0x85,
|
||||
0xa1,0x0b,0x2c,0xba,0x47,0x75,0x35,0xd6,0xe2,0x57,0xd2,0x08,0xf9,0x90,0x3d,0x8a,
|
||||
0x92,0xad,0x13,0x11,0xcd,0x50,0xe1,0x50,0xcf,0x57,0x33,0x4b,0xa3,0x8e,0x5e,0xcc,
|
||||
0xdb,0x91,0xfc,0xb0,0x76,0xff,0x00,0x23,0x6e,0x47,0x2a,0x46,0xc6,0x5c,0x40,0xf2,
|
||||
0x55,0xcd,0xa4,0x96,0xcf,0xb6,0xf5,0x57,0x0c,0xb7,0x71,0xd5,0xf1,0x77,0xa8,0x51,
|
||||
0xf8,0xfa,0xf5,0xbe,0x84,0xff,0x00,0xde,0xb7,0x27,0x88,0x76,0x1a,0xbc,0x33,0x77,
|
||||
0x59,0xdb,0x7e,0x52,0x9b,0x8d,0x72,0x75,0x8b,0xa3,0x0b,0x50,0xfe,0xb0,0x3c,0xca,
|
||||
0x14,0xb2,0x3f,0x0f,0x37,0xcd,0x4f,0xf6,0x4d,0x5d,0x76,0x3b,0x81,0x63,0x18,0x7c,
|
||||
0x66,0xe3,0xd8,0x71,0xcb,0x4d,0x92,0x3b,0x60,0x04,0x35,0x6e,0x82,0xd4,0x74,0xa4,
|
||||
0x0f,0x4e,0x02,0x12,0x38,0xaa,0xca,0xf1,0x87,0xc2,0xdc,0x85,0xa8,0xd8,0x06,0x58,
|
||||
0x13,0xcb,0x17,0x1b,0x5b,0xd6,0xd5,0x28,0x0f,0x45,0xc7,0x77,0xcc,0xee,0x7f,0x11,
|
||||
0x27,0xb7,0xfb,0xa7,0xe9,0x5a,0x36,0x03,0x9e,0x1b,0x98,0x73,0x24,0x31,0xb6,0x2e,
|
||||
0xcd,0xa5,0x8f,0x68,0xb9,0xbd,0xce,0xcf,0xbf,0x02,0xdb,0x33,0xcd,0x4c,0xf8,0xb4,
|
||||
0x46,0x56,0x82,0xd9,0x26,0xeb,0x67,0x6d,0x8f,0x53,0x9b,0x5c,0xc7,0x5c,0x7f,0x08,
|
||||
0xbc,0x2d,0x0c,0x5e,0xa1,0x24,0x75,0x74,0x27,0xd1,0x32,0x5b,0x1f,0xc6,0xdf,0x24,
|
||||
0xf1,0xfb,0xc9,0x2a,0x4f,0xaf,0x49,0x17,0x17,0xac,0x3a,0x51,0x8a,0xee,0x4f,0x49,
|
||||
0x66,0xe3,0x57,0x75,0x33,0x3a,0xcd,0x76,0x61,0x12,0x21,0x5c,0x63,0x10,0xe1,0x61,
|
||||
0xce,0x9e,0xa6,0x64,0xb2,0xa0,0x78,0x24,0x72,0x08,0x20,0xf0,0xa4,0x92,0x93,0xca,
|
||||
0x54,0x41,0xf3,0xfd,0x03,0x15,0xbc,0x5d,0x6c,0x17,0x5b,0xe4,0x3b,0x74,0x89,0x56,
|
||||
0x9b,0x52,0xd9,0x44,0xe9,0x6d,0x20,0xa9,0x11,0x8b,0xa5,0x41,0xa2,0xbe,0x3f,0x64,
|
||||
0x28,0xa0,0x80,0x4f,0x6e,0x78,0x1c,0xf2,0x40,0x36,0x77,0xe1,0x55,0xb9,0xb3,0x93,
|
||||
0x63,0x92,0x34,0x86,0xff,0x00,0x28,0xae,0xe7,0x68,0x6d,0x52,0xec,0x6e,0x39,0xea,
|
||||
0xec,0x4e,0x79,0x71,0x8e,0x7d,0xcb,0x6a,0x57,0x52,0x47,0xaf,0x42,0x88,0xf4,0x6e,
|
||||
0xa9,0xf1,0x13,0x01,0x3b,0x66,0x0c,0x34,0xda,0x68,0x48,0xd7,0xa7,0x9d,0xac,0x43,
|
||||
0xbd,0x5b,0xb5,0xff,0x00,0x09,0x07,0x80,0x90,0x3f,0xee,0x3b,0x82,0xa2,0x8e,0x96,
|
||||
0xea,0x16,0x7b,0xe1,0xbb,0xba,0x59,0x4c,0x5c,0x18,0x71,0xf6,0x22,0xb8,0x22,0x5d,
|
||||
0xed,0xe8,0x3c,0x33,0x77,0xb7,0xa8,0x85,0x25,0xc6,0xc9,0xed,0xcf,0x1c,0x2d,0x0a,
|
||||
0xf5,0x4a,0x81,0x4a,0xbf,0x7d,0x26,0xfa,0x30,0x3c,0xe6,0xc9,0xa9,0x98,0x6d,0x9f,
|
||||
0x2a,0xc6,0xe7,0xb5,0x74,0xb1,0x5d,0xa3,0x22,0x5c,0x49,0x4d,0x1e,0xcb,0x42,0x87,
|
||||
0xa1,0x1e,0xa9,0x50,0x3c,0x85,0x24,0xf7,0x49,0x04,0x10,0x08,0x22,0xa0,0xcf,0x88,
|
||||
0x86,0xd4,0xd1,0xaf,0xba,0x60,0xbc,0x8e,0xc3,0x0b,0xcc,0xce,0xf1,0xa6,0x56,0xf4,
|
||||
0x50,0xcb,0x7c,0xbb,0x3e,0x28,0xf9,0x9c,0x8a,0x78,0xee,0xa2,0x3b,0xad,0xb1,0xdf,
|
||||
0xe6,0xe5,0x20,0x7d,0xe1,0x35,0x1e,0xbc,0x23,0xb7,0x7a,0xbc,0x1b,0x32,0xff,0x00,
|
||||
0x33,0x19,0x54,0xf2,0x9c,0x7e,0xfa,0xf1,0x72,0xc2,0xf4,0x97,0x78,0x4c,0x39,0xe7,
|
||||
0xd6,0x38,0xea,0xf4,0x4b,0xfe,0xc0,0x1f,0xeb,0x40,0x00,0x12,0xe9,0x35,0xd0,0x72,
|
||||
0x8e,0x63,0x8f,0x32,0x61,0xc2,0x73,0xb4,0xad,0xd9,0xe3,0xa1,0xea,0x3c,0x9d,0xc8,
|
||||
0xf7,0x1e,0x0a,0x09,0x63,0xec,0xdd,0x6f,0x05,0x71,0x34,0xa5,0x2b,0x77,0x51,0x25,
|
||||
0x29,0x4a,0x22,0x52,0x94,0xa2,0x25,0x46,0x0f,0x10,0xbd,0xd2,0x0d,0xb0,0x68,0x24,
|
||||
0xe9,0x56,0xa9,0x48,0x67,0x35,0xbf,0xf5,0x5b,0x6c,0x68,0x3d,0xd4,0xda,0xc8,0xfb,
|
||||
0xd9,0x20,0x7f,0xb2,0x41,0xe4,0x1e,0xe3,0xad,0x4d,0x82,0x08,0x35,0x27,0xeb,0xcf,
|
||||
0x9f,0x88,0x76,0xe5,0x17,0xb9,0x1d,0xc5,0xde,0x26,0x40,0x96,0xe3,0xd8,0x95,0x80,
|
||||
0xaa,0xd1,0x65,0x6c,0xab,0xee,0xd4,0xda,0x14,0x43,0xb2,0x12,0x07,0x6f,0xbd,0x70,
|
||||
0x29,0x41,0x5e,0xa5,0x01,0xb0,0x7f,0x64,0x00,0x45,0xa1,0x30,0x1c,0x1e,0xf3,0xaa,
|
||||
0x39,0xc5,0x9b,0x16,0xb1,0xb0,0x65,0xde,0xaf,0x12,0xd1,0x16,0x3a,0x54,0x4f,0x1d,
|
||||
0x4a,0x3d,0xd4,0xb2,0x01,0xe1,0x29,0x1c,0xa9,0x4a,0xf6,0x00,0x9f,0x6a,0xbf,0x9d,
|
||||
0x06,0xd1,0x9b,0x2e,0x81,0x69,0x5d,0x8f,0x0a,0xb2,0x24,0x29,0x88,0x0d,0x73,0x22,
|
||||
0x57,0x4f,0x0b,0x97,0x21,0x5d,0xdd,0x79,0x5d,0xcf,0x75,0x2b,0x9e,0x07,0x3f,0x28,
|
||||
0xe9,0x48,0xec,0x91,0x50,0x97,0xc2,0x6f,0x6e,0x7f,0x66,0xda,0x2e,0x5a,0xc1,0x7a,
|
||||
0x8a,0xa1,0x26,0x77,0x5d,0xba,0xc2,0x97,0x12,0x38,0x4b,0x00,0xf0,0xfc,0x81,0xf8,
|
||||
0xa9,0x43,0xcb,0x07,0xb7,0x01,0x0e,0x7a,0x85,0x0a,0xb1,0x95,0xad,0x2d,0x21,0x4b,
|
||||
0x5a,0x82,0x10,0x90,0x4a,0x94,0xa3,0xc0,0x03,0xdc,0x9a,0xf9,0x4b,0xe2,0x5e,0x63,
|
||||
0x38,0x85,0x77,0xd9,0x54,0xee,0xfe,0x5c,0x27,0xbd,0xe6,0xff,0x00,0x1f,0xcb,0xc7,
|
||||
0xad,0xd6,0x46,0x06,0x69,0x1a,0x8f,0x8a,0xe8,0xb3,0xec,0x2e,0x06,0xa3,0xe1,0x77,
|
||||
0xac,0x5e,0xea,0xe4,0x96,0xad,0x97,0x78,0xab,0x87,0x28,0xc3,0x74,0xb4,0xe9,0x69,
|
||||
0x63,0x85,0x80,0xa1,0xe9,0xc8,0xe4,0x1f,0xc0,0x9a,0xd6,0xfa,0x57,0xb5,0xed,0x24,
|
||||
0xdb,0x5c,0x29,0x77,0x9c,0x67,0x16,0x62,0x14,0xc8,0xcc,0x38,0xf3,0xf7,0x89,0x01,
|
||||
0xc9,0xb3,0x42,0x02,0x0f,0x5f,0x42,0x95,0xd4,0xa4,0xf2,0x9e,0x41,0x43,0x40,0x75,
|
||||
0x7d,0x09,0xae,0xbf,0x6e,0xdb,0xc1,0xc3,0xb7,0x29,0x96,0x66,0xd6,0x2c,0x71,0x0e,
|
||||
0xb2,0xe6,0x3b,0x20,0x06,0x1e,0x7d,0x63,0x8b,0x94,0x52,0x7a,0x7e,0x25,0xb4,0xf6,
|
||||
0x29,0x4f,0x58,0x23,0x83,0xdc,0x05,0x36,0x4f,0x05,0x65,0x29,0xde,0xd5,0xcc,0x67,
|
||||
0x38,0x9e,0x11,0xaf,0x0d,0xa8,0x2f,0x8c,0x1b,0x17,0x32,0xe4,0x5e,0xe0,0x11,0x71,
|
||||
0xc1,0xdb,0xad,0xed,0xd2,0xea,0x71,0xa5,0xdd,0xe0,0xab,0x73,0x77,0x1e,0x28,0x96,
|
||||
0xd7,0x6c,0x93,0x71,0x4d,0x1a,0x7d,0xf9,0x13,0x24,0xa0,0xb5,0x23,0x2c,0x5b,0x6a,
|
||||
0x65,0x2c,0x20,0x8f,0x98,0x45,0x42,0xc0,0x59,0x5f,0x7e,0x3c,0xc5,0x04,0xf4,0xf0,
|
||||
0x4a,0x42,0x89,0x0a,0x4f,0x55,0xe1,0x05,0xa5,0x0b,0x99,0x78,0xcd,0x75,0x36,0x68,
|
||||
0x2a,0x4b,0x08,0x4d,0x8e,0x12,0x95,0xdf,0xa9,0xc5,0xf4,0xbd,0x21,0x47,0xe8,0x40,
|
||||
0x0c,0x80,0x7d,0xfc,0xc5,0x7d,0x2a,0x18,0xee,0x87,0x00,0x6b,0x4e,0x77,0x1b,0xa8,
|
||||
0x38,0xc4,0x06,0xba,0x62,0x45,0xbd,0x3f,0xf0,0x6c,0x36,0x3f,0x61,0x97,0x15,0xe6,
|
||||
0x34,0x80,0x3d,0xf8,0x42,0xd2,0x3f,0x4a,0xba,0x5d,0xa2,0xe8,0xea,0xb4,0x2b,0x6f,
|
||||
0x78,0x86,0x2b,0x26,0x32,0x63,0x5d,0xd1,0x1b,0xe3,0x2e,0x89,0x1c,0x15,0x7c,0x5b,
|
||||
0xc7,0xcc,0x74,0x28,0x8e,0xca,0x28,0xe4,0x37,0xcf,0xd1,0xb1,0x5d,0xc7,0x33,0x33,
|
||||
0x0d,0xcb,0x39,0x59,0x94,0xb8,0x58,0xb1,0xaa,0xd3,0xb9,0xdd,0xce,0x6d,0x83,0x89,
|
||||
0x27,0xd2,0xc2,0xc0,0x00,0x35,0x6c,0x37,0x56,0xb1,0xea,0x92,0x4b,0xbb,0xc1,0x44,
|
||||
0x6f,0x18,0x0d,0x57,0x10,0xec,0x18,0x5e,0x9c,0x44,0x96,0x03,0xd3,0x1e,0x5d,0xee,
|
||||
0xe0,0xc2,0x09,0x0a,0x0d,0x23,0xa9,0xa8,0xfd,0x5f,0x54,0xa9,0x4a,0x7c,0xf1,0xf5,
|
||||
0x68,0x1f,0x61,0x53,0xd7,0x18,0x74,0xe2,0xba,0x6d,0x68,0x72,0xe0,0xb5,0x28,0xdb,
|
||||
0x6d,0x0c,0xaa,0x42,0xdc,0x3f,0x31,0xf2,0xd9,0x1d,0x64,0x93,0xef,0xf2,0x9a,0xa4,
|
||||
0x0d,0xcf,0x6a,0x7a,0xf7,0x23,0xba,0x7b,0xdd,0xd6,0x17,0xf4,0x8b,0x7c,0xcb,0x9b,
|
||||
0x56,0x9b,0x4a,0x1b,0x57,0x50,0x5c,0x66,0xd4,0x19,0x69,0x49,0xff,0x00,0xc4,0xe0,
|
||||
0xb9,0xc7,0xd5,0xc3,0x57,0x3f,0xb8,0x5b,0x81,0xc7,0xf6,0xf7,0xa8,0xf2,0xd2,0xae,
|
||||
0x83,0x17,0x1a,0xb8,0x29,0x2a,0x1e,0xc4,0x46,0x5f,0x15,0xab,0xe6,0x6c,0x23,0xec,
|
||||
0xdc,0x2f,0x06,0xc2,0xdc,0x2c,0xf7,0x6a,0x73,0xba,0xea,0x79,0x67,0xed,0x7b,0x7b,
|
||||
0x29,0x23,0x7d,0xdc,0xe7,0x2a,0xaa,0xc6,0xb6,0x5f,0x97,0xeb,0xbe,0xd7,0x74,0xff,
|
||||
0x00,0x2f,0xc1,0xac,0xad,0xdd,0xb2,0x49,0x17,0x7b,0x9b,0x77,0x15,0x39,0x29,0x98,
|
||||
0xe5,0xc8,0xc5,0xc0,0x1b,0x59,0x53,0xab,0x48,0x21,0x0e,0x34,0xe8,0xe0,0x72,0x7e,
|
||||
0xf7,0xd3,0x81,0xdb,0xfb,0xb7,0xf8,0x54,0x6b,0xa4,0xc4,0xa4,0xbc,0xce,0x3b,0x00,
|
||||
0x9f,0x51,0x22,0xe9,0xc9,0x1f,0xe0,0x42,0xaa,0xca,0xb6,0x4f,0x88,0x7f,0x90,0xbb,
|
||||
0x50,0xd3,0x4b,0x62,0xb9,0x05,0x56,0x94,0xdc,0x17,0xd5,0xfb,0xa6,0x4a,0xd7,0x24,
|
||||
0x83,0xf9,0x17,0x88,0xfd,0x2b,0x76,0x25,0x41,0x69,0x0a,0x49,0x0a,0x49,0x1c,0x82,
|
||||
0x3d,0x08,0xa9,0xab,0xbe,0x23,0xe2,0xf4,0x35,0x75,0x14,0xd4,0x9a,0x0c,0x6d,0x91,
|
||||
0xfa,0x49,0x04,0x9b,0x6a,0x36,0xf1,0xb7,0xa6,0xdc,0x2a,0x08,0x1a,0x40,0x25,0x53,
|
||||
0x3d,0xdb,0xc2,0xaf,0x5d,0x6d,0xcc,0xa9,0x71,0xe2,0xe3,0xf7,0x55,0x01,0xc8,0x6e,
|
||||
0x25,0xd4,0x25,0x47,0xf0,0x1e,0x6a,0x50,0x3f,0xbc,0xd6,0x00,0xf6,0xc1,0x35,0xee,
|
||||
0x26,0x43,0x6d,0xb4,0x49,0xd3,0xbb,0x83,0x2e,0xce,0x7d,0x2c,0x26,0x52,0x1d,0x69,
|
||||
0xf8,0xac,0xf3,0xfb,0xee,0xba,0xd2,0xd6,0x96,0xd0,0x07,0x72,0xa5,0x1f,0xcb,0x93,
|
||||
0xc0,0xab,0xcc,0xba,0x5e,0x6d,0xf6,0x38,0xe9,0x7e,0xe5,0x3a,0x35,0xbd,0x85,0x28,
|
||||
0x20,0x3b,0x29,0xe4,0xb4,0x92,0xa3,0xe8,0x39,0x51,0x03,0x9e,0xc7,0xb5,0x75,0x12,
|
||||
0xf5,0x23,0x13,0x83,0x02,0x54,0xd7,0xf2,0x6b,0x4b,0x71,0x22,0xb4,0xa7,0x9e,0x77,
|
||||
0xe3,0x5b,0x21,0xb4,0x24,0x12,0xa5,0x1e,0x15,0xe8,0x00,0x27,0xf4,0xa5,0x3f,0xc5,
|
||||
0x0c,0x7e,0xdb,0xc2,0xc7,0xdf,0xf0,0xbb,0x9f,0x67,0x5b,0xf4,0x43,0x4e,0xc5,0x50,
|
||||
0x5b,0xc4,0xd2,0xcb,0x56,0x82,0xc1,0xc0,0x34,0x27,0x11,0x22,0xef,0x7e,0x7c,0x22,
|
||||
0xf3,0x90,0x4d,0x69,0x20,0xbd,0x72,0xb8,0xba,0x4b,0x31,0x9b,0xe3,0xb9,0x42,0x5b,
|
||||
0x4f,0x9b,0xd0,0xdf,0x3e,0x8f,0xf5,0x1e,0x4a,0x8a,0x8c,0x59,0xc9,0xb1,0xd9,0x58,
|
||||
0xb6,0x51,0x75,0xb0,0xca,0xe9,0x5c,0xdb,0x74,0xc7,0x60,0xbb,0xe5,0x72,0x52,0x5c,
|
||||
0x6d,0x65,0x0a,0xe9,0xfa,0x8e,0x41,0xe2,0xa6,0x16,0xda,0x10,0xf6,0xef,0xbc,0x42,
|
||||
0xe4,0x66,0xf3,0x1a,0x71,0x16,0xc8,0xb3,0xdd,0xc9,0x14,0xd3,0x87,0x95,0xb5,0x1e,
|
||||
0x39,0x4a,0x21,0xb6,0x4f,0xa1,0x29,0x57,0xc3,0x24,0xfd,0x42,0x55,0xc5,0x70,0xb4,
|
||||
0xc3,0x45,0x86,0xa4,0xf8,0x95,0xdf,0xec,0x12,0xa1,0x99,0x16,0x9b,0x56,0x5b,0x72,
|
||||
0xbb,0xce,0x41,0x48,0x28,0xf8,0x76,0x24,0x2d,0xc4,0x75,0x8f,0xe0,0x5a,0xfc,0x94,
|
||||
0x11,0xef,0xe6,0x71,0xef,0x5d,0x92,0x87,0x16,0xfb,0x22,0x37,0xd2,0xd6,0xbb,0x54,
|
||||
0x91,0x43,0xdb,0x4a,0x7c,0x4b,0x9c,0x49,0x23,0xdb,0x80,0x3a,0x69,0x03,0x6b,0x05,
|
||||
0x6c,0xe6,0xea,0xdc,0x78,0x9b,0x29,0x93,0xa8,0x3a,0x10,0xbd,0x3e,0xf0,0xc9,0xbc,
|
||||
0x60,0x6f,0xa0,0x19,0xd6,0xdc,0x6c,0x5c,0xa6,0xa5,0x3d,0xc0,0x92,0x87,0x93,0x35,
|
||||
0xe0,0x08,0xf5,0x09,0x5a,0x54,0x01,0xf7,0x09,0x15,0xd4,0xf8,0x46,0x3f,0xe6,0xed,
|
||||
0xb2,0xfa,0xdf,0xfa,0xbc,0x9a,0x40,0xfe,0xf8,0xd1,0x8f,0xfd,0xea,0x4f,0xee,0x12,
|
||||
0x0f,0xda,0x9a,0x09,0xa9,0x30,0xf8,0xea,0xf3,0xf1,0xbb,0x93,0x7c,0x7d,0x79,0x8a,
|
||||
0xe0,0xa8,0x9b,0xe0,0xfd,0x2c,0x2f,0x42,0x73,0x18,0xbf,0xbc,0xd6,0x48,0xa7,0x0f,
|
||||
0xe4,0xa8,0xac,0x0f,0xfd,0x86,0xb8,0x24,0x75,0x92,0xd7,0xe5,0x4c,0x42,0x49,0x4d,
|
||||
0xdc,0x67,0x6b,0xcf,0xab,0xf9,0xfd,0x95,0xd9,0x16,0x91,0xa0,0x74,0x53,0xc6,0xa1,
|
||||
0xcf,0x8a,0xa6,0x04,0xee,0x59,0xb6,0x05,0x5e,0x23,0xb6,0x16,0xee,0x37,0x76,0x8d,
|
||||
0x3d,0xc3,0xc7,0x2a,0xf2,0x57,0xd5,0x1d,0x5c,0x7f,0x69,0xe6,0xc9,0xfc,0x12,0x4f,
|
||||
0xb5,0x6b,0x1f,0x10,0xfd,0x6e,0xcc,0xb4,0x2b,0x73,0x9a,0x57,0x7d,0xb3,0x64,0x97,
|
||||
0x78,0x36,0x06,0xe0,0xb4,0xfc,0xcb,0x3c,0x79,0xae,0x26,0x1c,0xb0,0xdc,0xb7,0x3c,
|
||||
0xe0,0xe3,0x21,0x5d,0x0a,0x2b,0x6d,0x41,0x24,0x91,0xcf,0x01,0x3d,0xfe,0x51,0xc4,
|
||||
0xe1,0xd5,0x6c,0x32,0x36,0xb0,0x69,0x0e,0x51,0x8c,0xb3,0x21,0x95,0x33,0x90,0x5a,
|
||||
0x1f,0x8b,0x1e,0x57,0x3d,0x6d,0x85,0x3a,0xd1,0xf2,0x9c,0xe4,0x7a,0x80,0xa2,0x95,
|
||||
0x76,0xfa,0x56,0x22,0x8a,0x92,0x5c,0xb9,0x3e,0x19,0x8d,0x3d,0xc0,0xc7,0x21,0xd5,
|
||||
0xe8,0x1a,0xeb,0x38,0x1f,0x62,0xbd,0x92,0x1e,0x1c,0xc5,0x1b,0xfc,0x38,0xf4,0x47,
|
||||
0x05,0xb4,0xed,0x75,0xab,0xa4,0x50,0xde,0x4a,0xe6,0x6e,0xd2,0x95,0x7c,0x33,0xe3,
|
||||
0x8f,0x2d,0x5d,0x05,0x6d,0x18,0x65,0xa2,0x48,0x2d,0xb6,0x7c,0xd1,0xc9,0xee,0xbe,
|
||||
0xb2,0xae,0xc0,0xa5,0x29,0x8a,0x9b,0xa1,0xda,0x56,0x4f,0xb2,0xcd,0x49,0xb6,0x6a,
|
||||
0xfe,0x96,0x17,0xe4,0xe2,0x10,0x27,0x22,0x5a,0x01,0x2a,0x5b,0x96,0x85,0xf5,0x01,
|
||||
0xe4,0x3e,0x41,0xea,0x5c,0x77,0x3a,0x8a,0x02,0xc9,0xf4,0x51,0x42,0xcf,0x24,0x29,
|
||||
0x7b,0x93,0xc2,0x33,0x52,0x25,0x2b,0x1a,0xce,0xb4,0xce,0xe6,0x3c,0xa9,0x56,0x49,
|
||||
0x89,0xb9,0x46,0x69,0xc3,0xf7,0x89,0x4b,0x9f,0x76,0xfa,0x38,0xf6,0x08,0x5b,0x68,
|
||||
0x3f,0x9b,0xa7,0xf0,0xab,0x03,0xb8,0x5b,0xe2,0xdd,0xa0,0x49,0x83,0x3a,0x33,0x33,
|
||||
0x61,0x49,0x6d,0x4c,0xbf,0x1a,0x43,0x61,0xc6,0xdd,0x6d,0x43,0x85,0x21,0x49,0x3c,
|
||||
0x85,0x24,0x82,0x41,0x07,0xb1,0x06,0xb6,0x3c,0x47,0x1c,0xc4,0x32,0xc6,0x66,0xac,
|
||||
0xed,0x5d,0xda,0xc7,0x23,0xbb,0xcd,0x77,0x0f,0x63,0x87,0x77,0xc8,0x10,0xd2,0x00,
|
||||
0x20,0x6d,0xc5,0xad,0x70,0xa3,0x6b,0x1b,0x24,0x63,0xc1,0x62,0x9a,0x3b,0xaa,0x76,
|
||||
0x8d,0x6a,0xd3,0x3c,0x7f,0x35,0xb1,0xac,0x7c,0x05,0xda,0x32,0x5e,0xf2,0xba,0xfa,
|
||||
0x94,0xc3,0x83,0xe5,0x71,0x95,0x1e,0x07,0xcc,0x85,0x85,0x24,0xf6,0xef,0xd3,0xcf,
|
||||
0xa1,0xaa,0xa2,0xf1,0x1f,0xdb,0x83,0xba,0x0d,0xac,0x71,0xf3,0x8c,0x61,0xa5,0xdb,
|
||||
0xf1,0xac,0x95,0xf5,0x4c,0x8e,0xa8,0x61,0x4d,0x8b,0x7d,0xc1,0x24,0x29,0xc4,0x25,
|
||||
0x43,0xf6,0x3a,0x8f,0xde,0xa3,0x82,0x38,0xe5,0x61,0x20,0x06,0xea,0xc4,0xb4,0x53,
|
||||
0x43,0xe5,0x6d,0xa7,0x3d,0xbc,0xd9,0x71,0xa2,0xf4,0xbd,0x2c,0xc9,0x1d,0x54,0xe8,
|
||||
0xb0,0x55,0xf3,0xb9,0x61,0xb8,0x00,0x3a,0xd0,0x0f,0xaa,0xa3,0xba,0x80,0x38,0x51,
|
||||
0x27,0xa1,0x4d,0xa5,0x27,0xf6,0xfa,0x8e,0x59,0xb9,0x8d,0x11,0x83,0xb8,0x4d,0x18,
|
||||
0xc8,0xb0,0xc9,0x41,0x28,0x97,0x25,0x9f,0x3e,0xdd,0x25,0x5d,0xbe,0x1e,0x62,0x39,
|
||||
0x53,0x2b,0xe7,0xe9,0xd5,0xf2,0xab,0xea,0x95,0x28,0x76,0xe6,0xb1,0x78,0x0e,0x35,
|
||||
0x06,0x59,0xc7,0x84,0xf4,0xaf,0xbd,0x2c,0x9b,0x1e,0xba,0x0f,0x51,0xfd,0x4c,0x3c,
|
||||
0xf5,0xb1,0xb6,0xce,0xb9,0xf4,0xf6,0x19,0x19,0x63,0xca,0xee,0x36,0x27,0xb9,0xb6,
|
||||
0xf7,0x49,0xa0,0x56,0xac,0x82,0x5b,0xa9,0x39,0x4d,0xb4,0x8b,0x65,0xf5,0xa4,0xa4,
|
||||
0x27,0x99,0x48,0x48,0x3e,0x68,0x48,0xe0,0x04,0xba,0x92,0x95,0x8e,0x00,0x00,0xa9,
|
||||
0x49,0x1f,0xb3,0x52,0x1e,0xa8,0x67,0xc3,0x97,0x5e,0xe7,0x6d,0x77,0x74,0x88,0xc7,
|
||||
0xb2,0x4e,0xbb,0x5d,0x93,0x21,0x7c,0x63,0xb7,0xc8,0xd2,0xd5,0xe5,0x88,0x92,0x43,
|
||||
0x85,0x2c,0xba,0xb0,0x48,0x00,0xb6,0xe9,0x28,0x25,0x5d,0x92,0x87,0x1c,0x35,0x7c,
|
||||
0xd5,0xf6,0x50,0x21,0xc0,0x39,0xa6,0xe0,0xac,0x5a,0x52,0x94,0xaa,0xa2,0x52,0x94,
|
||||
0xa2,0x28,0xb1,0xe2,0x4b,0xb8,0x03,0xa0,0x7b,0x5f,0xbf,0x39,0x01,0xf7,0x18,0xc8,
|
||||
0xb2,0x52,0x6c,0x36,0xc5,0xb2,0xae,0x95,0xb4,0xa7,0x50,0xaf,0x35,0xd0,0x79,0x05,
|
||||
0x3d,0x0d,0x07,0x38,0x50,0xee,0x16,0x51,0xf5,0xe4,0x51,0x6e,0x90,0x69,0x9d,0xcf,
|
||||
0x58,0xf5,0x37,0x1b,0xc2,0xec,0xe8,0x26,0x75,0xe2,0x62,0x23,0x05,0xf1,0xc8,0x65,
|
||||
0xbf,0x57,0x1d,0x57,0xf2,0xa1,0x01,0x4b,0x3f,0x82,0x4d,0x4b,0x9f,0x17,0xad,0x6f,
|
||||
0x1a,0x91,0xb9,0x16,0x70,0xf8,0x32,0x54,0xed,0xa3,0x0a,0x88,0x21,0xa9,0x00,0x82,
|
||||
0x83,0x35,0xde,0x1c,0x90,0xa1,0xf9,0x27,0xc9,0x6c,0xf3,0xe8,0x5a,0x57,0xeb,0x9b,
|
||||
0x78,0x44,0x68,0x98,0x9b,0x76,0xca,0x35,0x4a,0xe3,0x13,0xa9,0xb8,0x43,0xec,0x6b,
|
||||
0x4b,0xab,0xe3,0x8f,0x35,0x40,0x2e,0x4a,0xd2,0x3d,0x79,0x4a,0x0b,0x68,0x07,0xd3,
|
||||
0x87,0x56,0x3e,0xbc,0x6b,0x19,0x97,0x17,0x6e,0x07,0x85,0x4f,0x5d,0xf7,0x9a,0x2c,
|
||||
0xdf,0x37,0x1d,0x9b,0xfa,0xee,0x7c,0x81,0x52,0x46,0xdd,0x6e,0x01,0x59,0x1e,0x15,
|
||||
0x87,0xda,0xf4,0xff,0x00,0x11,0xb3,0x63,0x36,0x48,0xe2,0x2d,0xa2,0xd3,0x11,0xa8,
|
||||
0x51,0x5a,0xe7,0x92,0x96,0xd0,0x90,0x91,0xc9,0xf7,0x27,0x8e,0x49,0x3d,0xc9,0x24,
|
||||
0x9f,0x5a,0x88,0x9e,0x27,0xfb,0x8e,0x3a,0x57,0xa4,0xad,0xe0,0xb6,0x69,0x41,0xbc,
|
||||
0x93,0x2f,0x6d,0x6d,0x3c,0x5b,0x73,0x87,0x23,0xdb,0xc7,0x67,0x54,0x40,0xee,0x3c,
|
||||
0xc3,0xf7,0x43,0x9e,0xc4,0x79,0xbc,0x77,0x4d,0x4d,0x37,0x1c,0x43,0x4d,0xa9,0x6e,
|
||||
0x29,0x28,0x42,0x41,0x52,0x94,0xa3,0xc0,0x48,0x1e,0xa4,0x9f,0x61,0x54,0x07,0xba,
|
||||
0xfd,0x6c,0x7f,0x5f,0xf5,0xdf,0x27,0xcb,0x0b,0xbd,0x76,0xc5,0x3e,0x62,0x5a,0xd0,
|
||||
0x39,0x01,0x10,0x9a,0x25,0x2d,0x70,0x0f,0x70,0x54,0x39,0x59,0xfe,0x65,0xab,0xd3,
|
||||
0xd2,0xbe,0x65,0xf8,0x7b,0x82,0x1c,0x73,0x19,0x35,0x55,0x3d,0xe6,0x43,0xdf,0x75,
|
||||
0xfc,0x5c,0x4f,0x74,0x1f,0x7b,0xb8,0xf5,0xb7,0x9a,0xbf,0x99,0xfa,0x1b,0x61,0xe2,
|
||||
0xb7,0x1f,0x85,0x65,0xd5,0xeb,0x76,0xec,0x22,0x47,0x6c,0x90,0x89,0xf6,0x69,0xb1,
|
||||
0x9d,0x03,0xdd,0x20,0x25,0xde,0xff,0x00,0xda,0x69,0x35,0x73,0x55,0x53,0x5e,0x11,
|
||||
0x9a,0x5d,0x3a,0xf5,0xab,0xd9,0x0e,0x76,0xe3,0x5d,0x36,0x8b,0x1d,0xb9,0x50,0x50,
|
||||
0xe9,0xf5,0x5c,0xa7,0xd4,0x9e,0x12,0x9f,0xaf,0x4b,0x68,0x70,0x9f,0xa7,0x52,0x3e,
|
||||
0xb5,0x63,0xfb,0x8a,0xd5,0x96,0x74,0x3f,0x45,0x72,0xcc,0xcd,0x7d,0x0a,0x93,0x6e,
|
||||
0x86,0xaf,0x82,0x69,0xcf,0x47,0x65,0x2f,0x84,0x30,0x8e,0x3d,0x48,0x2e,0x29,0x1c,
|
||||
0xf1,0xdf,0x8e,0x4f,0xb5,0x5d,0xfc,0x46,0x68,0xaf,0xcc,0xcd,0xa5,0xa6,0xdd,0xe5,
|
||||
0xac,0x65,0xbf,0x11,0x26,0xc3,0xe8,0x42,0xa4,0x1b,0x47,0x72,0xab,0xd7,0x46,0xb4,
|
||||
0xb1,0xbd,0xcf,0xf8,0x8c,0xea,0x06,0x59,0x2e,0x3a,0x65,0xe2,0x38,0xad,0xf1,0xd9,
|
||||
0xaf,0x38,0x4f,0xdd,0xbe,0xe3,0x0e,0x79,0x30,0xd1,0xf8,0x85,0x29,0xa0,0xe7,0x07,
|
||||
0xb1,0x4b,0x6a,0x07,0xd4,0x03,0x64,0x7a,0xb7,0x85,0xdc,0x75,0x1b,0x4d,0x32,0x4c,
|
||||
0x5e,0xd5,0x7d,0xff,0x00,0x26,0xa6,0xde,0x21,0x2e,0x12,0x6e,0xa2,0x31,0x90,0x63,
|
||||
0xa1,0x7f,0x2b,0x84,0x36,0x16,0x8e,0x54,0x50,0x54,0x01,0xea,0x1c,0x12,0x0f,0x7e,
|
||||
0x38,0x3a,0xc7,0x65,0x1a,0x06,0xad,0x01,0xd0,0xeb,0x65,0xbe,0xe4,0xd2,0x46,0x57,
|
||||
0x78,0x57,0xda,0xd7,0xc7,0x88,0xe5,0xc3,0x25,0xc0,0x08,0x69,0x47,0xfd,0x9a,0x7a,
|
||||
0x51,0xc0,0xed,0xd4,0x16,0x47,0xed,0x12,0x79,0x5a,0xa3,0xbd,0x7d,0x1c,0xd1,0xbc,
|
||||
0xc5,0xfc,0x5b,0x29,0xcb,0x93,0x0e,0xf9,0x1d,0x28,0x54,0x88,0xac,0x43,0x7e,0x47,
|
||||
0x91,0xd4,0x02,0x92,0x16,0xa6,0xd0,0xa0,0x0f,0x04,0x1e,0x9e,0x79,0xe0,0x8e,0xdd,
|
||||
0xc5,0x61,0x71,0xca,0xda,0xbc,0x6f,0x16,0x64,0x58,0x4b,0x1d,0x23,0x69,0x83,0x5b,
|
||||
0x18,0x6b,0x75,0x6c,0xcb,0x0d,0x56,0xb1,0x04,0x13,0xd4,0x5a,0xd6,0x05,0x7b,0x60,
|
||||
0x0c,0x6d,0xdd,0xe2,0xb4,0x66,0x8b,0x78,0x54,0x62,0x5a,0x5d,0x9c,0x58,0x32,0x9b,
|
||||
0xbe,0x6b,0x73,0xc9,0xa7,0x59,0x66,0xb5,0x70,0x8f,0x1d,0xb8,0x4d,0xc3,0x8e,0xb7,
|
||||
0x5a,0x58,0x5a,0x3a,0xd3,0xd4,0xe2,0x8a,0x42,0x80,0x3c,0x05,0x0e,0x78,0xef,0xdb,
|
||||
0xb5,0x6d,0x2f,0x11,0x4c,0xac,0xe2,0x9b,0x41,0xce,0xd4,0xdb,0xbe,0x5c,0x9b,0x82,
|
||||
0x23,0x5b,0x9a,0xe7,0xf7,0xbc,0xd9,0x0d,0x87,0x07,0xfe,0x50,0x72,0xb7,0x9e,0x07,
|
||||
0x9f,0xe3,0xba,0x9f,0x8b,0x42,0xc8,0xf1,0x5b,0xbc,0x6b,0xe5,0x92,0x62,0x4a,0x99,
|
||||
0x99,0x15,0x5c,0xa4,0xf0,0x78,0x29,0x20,0xf0,0x52,0xa0,0x7b,0x14,0xa8,0x02,0x0f,
|
||||
0x62,0x05,0x42,0x2f,0x18,0x0c,0xe9,0x8b,0x66,0x92,0x61,0x78,0x92,0x54,0x7e,0x32,
|
||||
0xef,0x77,0x5c,0xf3,0xc1,0xec,0x19,0x8c,0xd1,0x4a,0x81,0xfc,0xd5,0x21,0xbe,0x3f,
|
||||
0xdd,0x35,0x2e,0x15,0x57,0x8a,0x66,0x2c,0xcd,0x46,0xcc,0x51,0xe5,0xef,0x63,0xc6,
|
||||
0xc4,0x01,0x60,0xd3,0xa8,0x8b,0x00,0x00,0xe3,0x7d,0x95,0x1c,0x1a,0xc8,0xce,0x95,
|
||||
0x5a,0x79,0x46,0xb3,0xe7,0xb9,0xb5,0x92,0x35,0x9a,0xfd,0x99,0x5f,0x2e,0xd6,0x78,
|
||||
0xc8,0x43,0x6c,0xdb,0xa5,0xcf,0x75,0x71,0xd0,0x94,0x00,0x10,0x03,0x65,0x5d,0x3d,
|
||||
0x80,0x1c,0x76,0xab,0xda,0xdb,0x06,0x28,0xee,0x13,0xb7,0x5d,0x37,0xb2,0xbe,0x16,
|
||||
0x99,0x31,0xac,0x10,0xcb,0xe8,0x73,0xd5,0x0e,0xad,0xa4,0xad,0x69,0xfd,0x14,0xa5,
|
||||
0x0f,0xd2,0xa8,0x63,0x4c,0x70,0xc7,0xf5,0x17,0x51,0xf1,0x6c,0x56,0x31,0xe8,0x7e,
|
||||
0xf5,0x74,0x8d,0x6f,0x4a,0xf8,0xe4,0x23,0xcd,0x75,0x28,0xea,0x3f,0x80,0xea,0xe4,
|
||||
0xfe,0x02,0xbd,0x19,0x32,0xc2,0x23,0x32,0xdb,0x2d,0x27,0xa5,0xb6,0xd2,0x10,0x94,
|
||||
0x8f,0x60,0x3b,0x01,0x5b,0xf7,0xc5,0x79,0x62,0xa7,0x86,0x92,0x86,0x16,0x86,0x82,
|
||||
0x5c,0xf2,0x00,0xb7,0x40,0x0e,0xdd,0x6e,0x7e,0x8a,0x1a,0x70,0x4d,0xc9,0x55,0x27,
|
||||
0xe2,0xe7,0x9f,0x39,0x7b,0xd7,0x2c,0x7b,0x15,0x6a,0x61,0x76,0x15,0x8a,0xce,0x97,
|
||||
0x9c,0x8c,0x15,0xf2,0xb5,0x25,0xf5,0xa9,0x4a,0x24,0x7f,0x11,0x6d,0x0c,0x1f,0xcb,
|
||||
0x8f,0xad,0x41,0x4a,0xdc,0x5b,0xc3,0xcb,0xd7,0x9c,0xee,0x87,0x53,0x2e,0xcb,0x74,
|
||||
0x3e,0x3e,0xda,0x7e,0x1b,0x6e,0x03,0xc8,0x2d,0xc7,0x3f,0x0e,0xdf,0x07,0xdc,0x74,
|
||||
0x34,0x9a,0xfb,0xed,0x13,0x6f,0x12,0xf7,0x29,0xad,0x16,0xac,0x67,0x87,0x5a,0xb1,
|
||||
0x47,0xfe,0x9b,0x79,0x96,0xd8,0xfe,0xa6,0x22,0x08,0xea,0x48,0x3e,0xca,0x59,0x21,
|
||||
0xb4,0x9f,0x62,0xbe,0x78,0x21,0x26,0xba,0xd6,0x0a,0xd8,0x32,0xfe,0x5d,0x80,0xd4,
|
||||
0x1d,0x2d,0x8e,0x30,0xe7,0x7a,0x91,0xa9,0xdf,0xa9,0x36,0xf1,0x2a,0xd9,0xf7,0x7c,
|
||||
0x86,0xca,0xc6,0x3c,0x2b,0x74,0x31,0xcd,0x3c,0xd1,0x49,0x99,0xb5,0xca,0x3a,0x5b,
|
||||
0xbb,0x66,0x0e,0xa5,0xe6,0x39,0x07,0xad,0x10,0x5a,0xea,0x4b,0x5c,0xf2,0x3b,0x75,
|
||||
0xa8,0xb8,0xbe,0xdd,0x8a,0x4b,0x67,0xf0,0x19,0xd6,0xdf,0x74,0x87,0xec,0x0d,0xdc,
|
||||
0x6e,0x23,0x35,0x5b,0x48,0xf2,0x64,0x4d,0x81,0x6d,0x88,0xe8,0xf5,0xea,0x72,0x1b,
|
||||
0x12,0xe4,0x8f,0xcb,0x97,0x63,0xfe,0xa0,0xfd,0x2a,0x4b,0xdb,0xad,0xd1,0x6c,0xf6,
|
||||
0xf8,0xb0,0x20,0xc6,0x6a,0x1c,0x18,0xad,0x21,0x86,0x23,0x30,0x80,0x86,0xda,0x6d,
|
||||
0x20,0x25,0x28,0x4a,0x47,0x60,0x90,0x00,0x00,0x0f,0x40,0x2b,0xe5,0x06,0xd3,0x16,
|
||||
0xd9,0x2a,0xe7,0x29,0x94,0x04,0x39,0x3d,0xf1,0x2a,0x42,0xbf,0x89,0x61,0xa6,0xda,
|
||||
0x07,0xfc,0x0d,0x20,0x7e,0x95,0xf2,0x4d,0x76,0x62,0xa8,0xae,0xaa,0xae,0xa9,0x76,
|
||||
0xdf,0xc4,0x0d,0x36,0xe8,0x03,0xda,0x40,0xf6,0x6b,0x6c,0xb2,0x41,0x80,0x00,0x3a,
|
||||
0x2f,0x8e,0x51,0x69,0x17,0xec,0x66,0xef,0x6c,0x23,0xa8,0x4d,0x86,0xf4,0x62,0x0f,
|
||||
0xbf,0x5a,0x0a,0x7f,0xef,0x50,0x0b,0xc1,0xc2,0x6f,0x99,0x83,0xea,0x5c,0x3e,0x7f,
|
||||
0xaa,0xb8,0xc3,0x77,0x8f,0xf7,0xda,0x70,0x7f,0xfc,0xea,0xc4,0x90,0x78,0x5a,0x7f,
|
||||
0x3a,0xae,0x9f,0x09,0x3b,0x7f,0xd8,0x59,0x26,0xbc,0x59,0xf8,0x29,0x4c,0x19,0xf6,
|
||||
0xe6,0x52,0x93,0xed,0xd2,0xb9,0xc8,0x3f,0xf4,0x8a,0xc9,0xe0,0xce,0xd5,0x96,0x71,
|
||||
0x68,0xcf,0x87,0x60,0x47,0xe7,0x20,0xfe,0xe1,0x51,0xdf,0x3b,0x4f,0xaf,0xec,0xb1,
|
||||
0x9f,0x19,0x38,0x41,0x37,0xad,0x2c,0x96,0x13,0xf3,0x2e,0x3d,0xc5,0xa2,0xaf,0xa8,
|
||||
0x0a,0x8e,0x40,0xff,0x00,0xd4,0x7f,0xbe,0xa6,0x16,0xc5,0xb3,0x71,0x9f,0x6d,0x3f,
|
||||
0x4e,0x67,0x97,0x3a,0xde,0x89,0x6e,0x16,0xb7,0x41,0x57,0x2a,0x4a,0xa3,0x2d,0x4c,
|
||||
0x00,0x7f,0x12,0x96,0xd2,0xaf,0xc9,0x42,0xb9,0xbb,0x92,0xda,0x46,0x1b,0xba,0x6f,
|
||||
0xf2,0x6c,0x65,0xd3,0x6f,0x31,0x13,0x62,0x5b,0xea,0x8e,0x9b,0x43,0xed,0x35,0xe6,
|
||||
0xf9,0xbe,0x5f,0x50,0x70,0xad,0xa5,0x92,0x3e,0xe9,0x3c,0x74,0xf1,0xea,0x7f,0x0e,
|
||||
0x32,0x7d,0x09,0xd0,0x6c,0x63,0x6e,0x98,0x4b,0x98,0xae,0x25,0xf1,0xdf,0x65,0xae,
|
||||
0x5a,0xe6,0xab,0xed,0x09,0x1e,0x73,0x9e,0x62,0xd2,0x84,0xab,0x83,0xc0,0x00,0x70,
|
||||
0x84,0xf6,0x03,0xd7,0x93,0xef,0x52,0xd7,0xe3,0x74,0x15,0x79,0x56,0x93,0x0b,0xdf,
|
||||
0xb7,0x89,0xc4,0xf1,0xb5,0x89,0x7e,0xd7,0xbf,0x42,0x0f,0xb2,0xa0,0x61,0x12,0x17,
|
||||
0x78,0x15,0x5f,0x71,0x10,0x9d,0xac,0x78,0xa8,0x2d,0xa4,0xbc,0xe4,0x3c,0x7b,0x30,
|
||||
0x94,0x47,0x71,0xc2,0x56,0xdd,0xc3,0xe6,0x09,0x3f,0x44,0x26,0x60,0x00,0x7d,0x03,
|
||||
0x60,0x9f,0x43,0x56,0x91,0x55,0xf1,0xe2,0xdf,0xa6,0x12,0x1e,0xc5,0xb0,0xad,0x4f,
|
||||
0xb5,0xb3,0xd1,0x36,0xc5,0x2f,0xec,0xe9,0x92,0x5a,0x4f,0xde,0x25,0xa7,0x0f,0x5b,
|
||||
0x0b,0x51,0xf6,0x4a,0x1d,0x4a,0x80,0xfe,0x67,0xc7,0xd6,0xa6,0xb6,0x8e,0x6a,0x24,
|
||||
0x6d,0x5a,0xd2,0xac,0x4f,0x31,0x8a,0x12,0x86,0xef,0x56,0xd6,0x65,0xad,0xa4,0x9e,
|
||||
0x43,0x4e,0x29,0x03,0xcc,0x6f,0x9f,0x7e,0x95,0xf5,0x27,0xfb,0x35,0x26,0x66,0x77,
|
||||
0xda,0x78,0x56,0x1d,0x8c,0x0d,0xdd,0xa4,0xc4,0xff,0x00,0xee,0x8f,0x82,0x7c,0xdc,
|
||||
0x0d,0xfd,0x15,0x19,0xdd,0x73,0x9b,0xee,0xb3,0x1a,0x54,0x54,0xcb,0x77,0x90,0x8d,
|
||||
0x00,0xdc,0x4c,0x9d,0x39,0xd5,0x3e,0x96,0xb1,0xbb,0xba,0x53,0x70,0xb0,0x65,0x6d,
|
||||
0x36,0x10,0x96,0x59,0x75,0x44,0x79,0x12,0xd0,0x3b,0x00,0x87,0x12,0xe2,0x03,0xa9,
|
||||
0xfd,0xd0,0xd9,0x5a,0x7b,0xa9,0x62,0x54,0x30,0xfb,0x52,0x98,0x6d,0xf6,0x1c,0x43,
|
||||
0xcc,0xba,0x90,0xb6,0xdc,0x6d,0x41,0x49,0x5a,0x48,0xe4,0x10,0x47,0x62,0x08,0xef,
|
||||
0xcd,0x69,0x15,0xb8,0x65,0x55,0x03,0x63,0x92,0x66,0xf7,0x24,0x1a,0x9a,0xe1,0xc3,
|
||||
0x87,0x91,0xea,0x3c,0x41,0xdc,0x78,0x85,0x28,0x70,0x3c,0x2a,0x85,0xf1,0x52,0xd0,
|
||||
0x71,0xa7,0xda,0xc9,0x13,0x3b,0xb6,0x44,0x2d,0x59,0x72,0xe6,0xca,0xa4,0x29,0xb1,
|
||||
0xf2,0x37,0x70,0x6c,0x00,0xef,0xa0,0xf9,0x7c,0xc4,0x14,0x2f,0xbf,0x75,0x2b,0xcd,
|
||||
0x3e,0xc7,0x8b,0x3f,0xd8,0x0e,0xbf,0x2f,0x71,0x3b,0x63,0xc6,0x6f,0xb3,0x9e,0x4b,
|
||||
0xd9,0x0d,0xb0,0x1b,0x35,0xdc,0x85,0x12,0xa5,0x49,0x60,0x24,0x07,0x15,0xcf,0xef,
|
||||
0x38,0xd9,0x69,0xc3,0xed,0xcb,0x84,0x0f,0x4a,0xc2,0x37,0xaf,0xa2,0x23,0x5e,0x76,
|
||||
0xef,0x93,0x58,0xe3,0xc4,0x32,0xef,0xb0,0x9b,0xfb,0x56,0xd0,0x94,0x0e,0x57,0xf1,
|
||||
0x4c,0x82,0x42,0x12,0x3d,0xcb,0x88,0x2e,0x37,0xc1,0xed,0xf7,0x9c,0xfa,0x80,0x6a,
|
||||
0x0f,0x78,0x36,0xeb,0x59,0xc2,0xf5,0xe2,0xf1,0xa7,0xd2,0xd6,0x7e,0xcf,0xcc,0x61,
|
||||
0x15,0xc7,0x1c,0xfe,0xcc,0xc8,0xc9,0x5b,0x89,0xf7,0xec,0x14,0xd1,0x7f,0x9f,0x7e,
|
||||
0x52,0x8a,0xfa,0xcb,0xe1,0xd6,0x35,0xf6,0xb6,0x0c,0xd8,0x64,0x37,0x92,0x1e,0xe1,
|
||||
0xf4,0xfb,0xa7,0xe9,0xb7,0xab,0x4a,0xc7,0x4e,0xdd,0x2e,0xbf,0x55,0x74,0x94,0xa5,
|
||||
0x2b,0xa9,0x2b,0x74,0xae,0x8f,0x3a,0xcb,0xa1,0xe0,0x18,0x46,0x43,0x94,0x5c,0x39,
|
||||
0xf8,0x0b,0x25,0xba,0x45,0xca,0x47,0x07,0x8f,0xbb,0x65,0xb5,0x38,0xae,0xff,0x00,
|
||||
0x92,0x4d,0x77,0x95,0x0e,0x3c,0x58,0xf5,0x15,0x78,0x1e,0xce,0xaf,0x90,0x98,0x7d,
|
||||
0x51,0xe5,0x64,0xb7,0x08,0xb6,0x54,0x29,0xb3,0xc2,0xba,0x4a,0x8b,0xee,0x8f,0xc9,
|
||||
0x4d,0xb0,0xb4,0x9f,0xc1,0x44,0x7b,0xd1,0x15,0x1c,0x66,0x99,0x6d,0xcf,0x50,0xb3,
|
||||
0x2b,0xe6,0x4d,0x77,0x70,0x3f,0x77,0xbd,0x4e,0x7a,0xe1,0x29,0x68,0x4f,0x01,0x4e,
|
||||
0xba,0xb2,0xb5,0x70,0x3d,0x87,0x2a,0x3c,0x0f,0x61,0x57,0xdb,0xb5,0xed,0x23,0x6f,
|
||||
0x43,0x74,0x1b,0x0f,0xc4,0x02,0x14,0x99,0x91,0x21,0x25,0xe9,0xe5,0x5e,0xa6,0x5b,
|
||||
0xa4,0xb8,0xff,0x00,0xe8,0x16,0xb5,0x24,0x7f,0x2a,0x52,0x2a,0x9f,0x76,0x11,0xa4,
|
||||
0xeb,0xd5,0xcd,0xd0,0xe2,0x10,0xdc,0x60,0x3d,0x6c,0xb3,0xbd,0xf6,0xe4,0xfe,0xa0,
|
||||
0x0a,0x43,0x51,0xc8,0x52,0x02,0x81,0xf5,0x0a,0x77,0xca,0x41,0x1f,0xcf,0xf4,0xab,
|
||||
0xb1,0xc2,0xb5,0x23,0x17,0xd4,0x76,0xee,0xae,0x63,0x37,0xc8,0x77,0xb4,0xda,0xe6,
|
||||
0xb9,0x6e,0x9a,0x62,0x39,0xd7,0xe4,0x48,0x6c,0xf0,0xa4,0x2b,0xfe,0xc7,0xd0,0x8e,
|
||||
0xe0,0x91,0x5f,0x38,0xfc,0x57,0xc4,0x64,0x90,0xc3,0x87,0x44,0x09,0x6b,0x3b,0xef,
|
||||
0xb7,0x00,0x9b,0xb5,0x97,0xe9,0xf7,0xb9,0xe6,0xea,0xfa,0x9d,0xbc,0xb9,0x6b,0xad,
|
||||
0xe8,0xe5,0x4f,0xe1,0x9b,0x56,0xd4,0xcb,0x9c,0x64,0xa8,0xbf,0xf6,0x42,0xe2,0x24,
|
||||
0xa3,0xd5,0x3e,0x7a,0x92,0xc1,0x57,0xe8,0x1d,0x27,0xf4,0xaa,0x3a,0xd2,0xcd,0x2d,
|
||||
0xc8,0xf5,0x97,0x39,0xb6,0x62,0x78,0xad,0xbd,0x77,0x0b,0xbc,0xf7,0x3a,0x52,0x91,
|
||||
0xd9,0x0d,0x23,0xf7,0x9d,0x71,0x5f,0xba,0x84,0x8e,0xe5,0x47,0xfe,0x7c,0x0a,0xf4,
|
||||
0x3d,0x91,0x63,0xd6,0xdc,0xb6,0xc3,0x70,0xb2,0xde,0x61,0x33,0x72,0xb5,0x4f,0x61,
|
||||
0x71,0xa5,0x44,0x90,0x9e,0xa4,0x3a,0xda,0x87,0x0a,0x49,0x1f,0x88,0x35,0x87,0x69,
|
||||
0x1e,0xdf,0xf4,0xf3,0x42,0x20,0x48,0x89,0x82,0x62,0xd0,0xf1,0xf4,0xc9,0x3c,0xbe,
|
||||
0xf3,0x65,0x6f,0x48,0x77,0xbf,0x20,0x2d,0xe7,0x54,0xa7,0x14,0x90,0x7d,0x12,0x55,
|
||||
0xc0,0xf6,0x02,0xb4,0xcc,0xab,0x9d,0x21,0xcb,0x18,0x65,0x45,0x3b,0x21,0x2e,0x9d,
|
||||
0xee,0xbb,0x4e,0xda,0x78,0x03,0xbd,0xbd,0xf6,0x3b,0xd8,0x0d,0xef,0xc8,0x52,0xc9,
|
||||
0x17,0x68,0xe0,0x6f,0xb2,0xe3,0xed,0xdf,0x43,0x6c,0xdb,0x76,0xd2,0x7b,0x3e,0x17,
|
||||
0x67,0x21,0xff,0x00,0x86,0x05,0xe9,0xb3,0xbc,0xb0,0x85,0xcd,0x94,0xbe,0x3c,0xd7,
|
||||
0x94,0x07,0xd7,0x80,0x90,0x09,0x24,0x21,0x28,0x4f,0x27,0xa7,0x9a,0xd3,0xd9,0x1c,
|
||||
0xe6,0xb7,0x3d,0xba,0xcb,0x76,0x2b,0x19,0x49,0x93,0x80,0xe9,0x43,0xe8,0xbb,0xdd,
|
||||
0x9d,0x4a,0x7a,0x9b,0x99,0x7c,0x21,0x49,0x8f,0x1f,0x9f,0x4e,0x19,0x1d,0x6a,0x3c,
|
||||
0x73,0xf3,0x05,0xa4,0x8f,0x43,0x5c,0x5d,0xf8,0x6f,0x46,0x06,0xdd,0xf0,0xf9,0x38,
|
||||
0xde,0x39,0x31,0x99,0x3a,0x91,0x74,0x67,0xa2,0x3b,0x48,0x3d,0x5f,0x66,0x34,0xa1,
|
||||
0xc1,0x92,0xe0,0xf6,0x57,0x1f,0xd5,0xa4,0xfa,0x9e,0x14,0x41,0x48,0xe0,0xff,0x00,
|
||||
0x7e,0x18,0x62,0xd0,0xf6,0xd4,0xad,0x93,0x60,0xbc,0x64,0x5e,0x66,0xdd,0x67,0xbf,
|
||||
0x7c,0x79,0x6b,0x2b,0x71,0x73,0x0b,0xc4,0x02,0xb2,0x7b,0xf2,0x58,0x11,0xcf,0xeb,
|
||||
0xcf,0xa9,0x35,0x8e,0x8e,0x92,0xba,0x9b,0x0d,0x9b,0x33,0x56,0x02,0x5f,0x2b,0xb4,
|
||||
0x30,0x9e,0x6e,0xf0,0x75,0x49,0xe9,0x60,0x5a,0xdf,0xc4,0x6e,0x38,0x0b,0xd5,0xc1,
|
||||
0x70,0x60,0xf0,0x5b,0x97,0x71,0xfa,0xdd,0x6e,0xdb,0xd6,0x8f,0x5f,0xf3,0x59,0xe9,
|
||||
0x4b,0xef,0x44,0x6b,0xca,0x83,0x11,0x47,0xff,0x00,0x9a,0x96,0xbf,0x95,0x96,0xfd,
|
||||
0x47,0x6e,0xae,0xea,0x23,0xb8,0x4a,0x54,0x78,0x3c,0x71,0x54,0x07,0x93,0x64,0x97,
|
||||
0x3c,0xc7,0x21,0xb9,0x5f,0x6f,0x53,0x1c,0xb8,0x5d,0xae,0x52,0x1c,0x97,0x2e,0x53,
|
||||
0xbc,0x75,0x3a,0xea,0xd4,0x54,0xa5,0x1e,0x3b,0x0e,0x49,0x3d,0x80,0x00,0x7b,0x54,
|
||||
0xbe,0xf1,0x39,0xdc,0x90,0xd5,0xad,0x59,0x46,0x11,0x64,0x96,0x1d,0xc5,0xf1,0x15,
|
||||
0xad,0x97,0x14,0xd2,0xc9,0x44,0xab,0x81,0xec,0xf2,0xfe,0x84,0x37,0xc7,0x96,0x9e,
|
||||
0xdd,0x88,0x70,0x82,0x42,0xea,0x31,0xe8,0xb6,0x9b,0x48,0xd6,0x0d,0x58,0xc5,0x30,
|
||||
0xc8,0xca,0x71,0xb5,0x5e,0x6e,0x0d,0x45,0x71,0xd6,0x93,0xd4,0xa6,0x9a,0x2a,0xe5,
|
||||
0xd7,0x00,0xfe,0x44,0x05,0xab,0xfb,0x35,0xdd,0x72,0x0e,0x06,0xcc,0xbf,0x83,0xbb,
|
||||
0x10,0xab,0x1a,0x64,0x90,0x6b,0x71,0x3f,0x75,0x80,0x5c,0x0f,0xa7,0x78,0xfa,0xd8,
|
||||
0xf0,0xac,0xe6,0x7e,0xb7,0x69,0x0a,0xe6,0xfc,0x3e,0x30,0x09,0x5a,0x7b,0xb4,0xcc,
|
||||
0x22,0x34,0xe6,0xc3,0x53,0x6e,0x6d,0x3b,0x77,0x71,0x00,0xf3,0xc2,0x24,0x38,0xa7,
|
||||
0x1a,0xfd,0x4b,0x45,0xa2,0x47,0xb1,0x24,0x7b,0x55,0x7c,0x78,0xa9,0xea,0x40,0xcc,
|
||||
0xb7,0x30,0x6c,0x0c,0x15,0x7c,0x2e,0x2d,0x6d,0x62,0x09,0xef,0xca,0x54,0xfb,0x83,
|
||||
0xcf,0x71,0x43,0xf4,0x75,0xb4,0x1f,0xc5,0xb3,0x57,0x11,0x02,0x0c,0x3b,0x15,0xae,
|
||||
0x3c,0x38,0xad,0x22,0x24,0x08,0x6c,0xa5,0x96,0x9b,0x4f,0x64,0xb4,0xda,0x13,0xc2,
|
||||
0x40,0xfc,0x00,0x03,0xfb,0xab,0xcf,0x1e,0xb5,0x67,0xcb,0xd5,0x2d,0x5d,0xcc,0xb2,
|
||||
0xd5,0x85,0xa5,0x37,0x9b,0xb4,0x99,0x8d,0x21,0x67,0x92,0xdb,0x4a,0x70,0x96,0xd1,
|
||||
0xfd,0x94,0x74,0xa7,0xf4,0xad,0x13,0xe1,0xd3,0x1d,0x8c,0x66,0x1a,0xcc,0x62,0x41,
|
||||
0xc5,0xcf,0xa1,0x91,0xdb,0x7f,0xa8,0x70,0x53,0x4f,0xdd,0x60,0x6a,0xde,0x1e,0x1a,
|
||||
0x98,0x2b,0xd9,0xa6,0xed,0xb1,0x99,0x01,0xb0,0xe4,0x4b,0x0c,0x79,0x37,0x79,0x3c,
|
||||
0xfe,0xea,0x52,0xd9,0x6d,0xb2,0x3f,0xfc,0xaf,0x35,0x57,0x3f,0x98,0xe4,0x28,0xc4,
|
||||
0x71,0x1b,0xe5,0xf5,0xc0,0x0b,0x76,0xb8,0x2f,0xcd,0x50,0x3e,0x9c,0x36,0xda,0x96,
|
||||
0x7f,0xe9,0xaa,0xe1,0xf0,0x73,0xc2,0x1c,0x5d,0xc3,0x51,0xf3,0x07,0x59,0x29,0x69,
|
||||
0xb6,0xa2,0xda,0x63,0x3c,0x47,0x65,0x15,0x15,0x3a,0xf2,0x47,0xe5,0xd2,0xc1,0xfe,
|
||||
0xd0,0xa9,0xa1,0xbc,0xbc,0x88,0xe2,0xdb,0x56,0xd5,0x19,0xc9,0x07,0xa9,0x76,0x37,
|
||||
0xe1,0x82,0x3d,0x8b,0xe3,0xc8,0xe7,0xf4,0xf3,0x79,0xac,0x2e,0x7d,0x97,0xed,0x5c,
|
||||
0xd6,0xca,0x21,0xb8,0x6f,0x67,0x1f,0xe6,0x37,0x3f,0xf6,0xb2,0xf7,0x08,0xd3,0x1d,
|
||||
0xd5,0x07,0x49,0x92,0xec,0xc9,0x2e,0xc8,0x7d,0xc5,0x3a,0xfb,0xab,0x2e,0x38,0xe2,
|
||||
0xcf,0x2a,0x52,0x89,0xe4,0x92,0x7e,0xa4,0xd5,0xde,0xec,0x0b,0x6d,0x23,0x6f,0x3a,
|
||||
0x2b,0x19,0x77,0x48,0xa1,0xac,0xcb,0x23,0x08,0xb8,0x5d,0x89,0xfd,0xb6,0x07,0x1f,
|
||||
0x73,0x1b,0xd0,0x71,0xe5,0xa5,0x47,0xa8,0x7f,0x1a,0xdc,0xee,0x40,0x15,0x5f,0x5e,
|
||||
0x1a,0xdb,0x72,0xff,0x00,0x3c,0xda,0xd4,0x8c,0x96,0xed,0x18,0xb9,0x8b,0x62,0x0a,
|
||||
0x6e,0x6b,0xc1,0x68,0xe5,0x12,0x26,0x12,0x4c,0x76,0x7b,0xfa,0x80,0x52,0x5c,0x57,
|
||||
0xaf,0x66,0xc0,0x3f,0xb6,0x0d,0x59,0x4e,0xf6,0xb5,0xb0,0xe8,0x46,0xdd,0x32,0x6b,
|
||||
0xf4,0x57,0x92,0xcd,0xee,0x6a,0x05,0xaa,0xd4,0x54,0xae,0x0f,0xc4,0xbc,0x08,0x0b,
|
||||
0x4f,0xe2,0x84,0x07,0x1c,0x03,0xfd,0x9d,0x6d,0xff,0x00,0x11,0x31,0x59,0x71,0x1a,
|
||||
0xb8,0x32,0xc5,0x01,0xef,0x38,0xb7,0x5f,0xa9,0xf9,0x5a,0x7c,0x87,0xcc,0x7d,0xba,
|
||||
0x28,0xa0,0x68,0x68,0x32,0x39,0x64,0x5a,0x0d,0xaf,0x96,0x8d,0x79,0x19,0xbb,0xb6,
|
||||
0x72,0xd2,0xa2,0xe3,0xb9,0x0b,0xf6,0x56,0xde,0x69,0xc0,0xb4,0xc9,0x6d,0xb4,0x36,
|
||||
0x52,0xfa,0x48,0xed,0xd2,0xb2,0xa5,0xf0,0x47,0xa8,0x4f,0x35,0xa3,0xfc,0x4d,0xb5,
|
||||
0xd2,0x4e,0x95,0xe8,0xd5,0xb3,0x1a,0xb5,0x3c,0xa8,0xf7,0x8c,0xbe,0x6f,0xc2,0x97,
|
||||
0x50,0xa2,0x95,0x37,0x0d,0xa2,0x85,0xc8,0x29,0x23,0xdd,0x45,0x4d,0x36,0x47,0xa1,
|
||||
0x4b,0x8b,0xfc,0x2a,0x2c,0x78,0x47,0x6a,0x91,0xc7,0x35,0x93,0x21,0xc1,0xe4,0xc8,
|
||||
0x42,0x22,0x64,0xb6,0xff,0x00,0x88,0x8e,0xda,0xcf,0x75,0x4a,0x8d,0xca,0x80,0x4f,
|
||||
0xe6,0xd2,0xdf,0x27,0xeb,0xe5,0x8f,0xa5,0x61,0xbe,0x25,0x5a,0x94,0x9d,0x42,0xdd,
|
||||
0xa4,0x8b,0x4c,0x69,0x3f,0x11,0x6f,0xc6,0x58,0x8d,0x67,0x40,0x42,0xf9,0x6c,0x3d,
|
||||
0xcf,0x9a,0xff,0x00,0x03,0xd9,0x41,0x6e,0x96,0xd5,0xef,0xcb,0x5c,0x7b,0x0a,0xc2,
|
||||
0xe1,0xf9,0x3a,0x3a,0x4c,0xe4,0x28,0xf4,0xde,0x18,0x9a,0x24,0x17,0xf1,0x00,0x00,
|
||||
0x3f,0xdf,0xeb,0x62,0xbd,0xba,0x4b,0xc5,0x7f,0x15,0x73,0x2c,0x38,0x5d,0x65,0xb5,
|
||||
0x9f,0x55,0x24,0x2b,0xfe,0x15,0x01,0x7c,0x3a,0xd2,0x9b,0x7e,0xe5,0x37,0x3b,0x01,
|
||||
0x09,0xe9,0x42,0x6f,0x9f,0x28,0xe3,0xd0,0x26,0x64,0xd0,0x3f,0xea,0xa9,0xf4,0xca,
|
||||
0x3c,0xb6,0x50,0x8f,0xe1,0x48,0x15,0x5f,0xdb,0x0d,0x7d,0x2c,0x6f,0x3f,0x72,0xb0,
|
||||
0xca,0x90,0x16,0xe5,0xca,0x4b,0xa1,0x1c,0xfc,0xc4,0x26,0x7b,0xc0,0x90,0x3e,0x83,
|
||||
0xac,0x73,0xf9,0x8a,0xd0,0x70,0x21,0xab,0x07,0xc5,0x9a,0x3f,0xa2,0x33,0xf4,0x90,
|
||||
0x29,0x5f,0xf3,0x35,0x6d,0x0f,0x13,0xe9,0xb7,0xcb,0x66,0xd6,0x65,0xcd,0xb1,0xdd,
|
||||
0x66,0xda,0x94,0xc5,0xda,0x21,0x96,0xb8,0x4f,0xa9,0x95,0x3a,0xc2,0xba,0xd0,0x5b,
|
||||
0x51,0x49,0x04,0xa4,0xad,0x6d,0x92,0x3d,0x39,0x48,0xa8,0xdb,0xe1,0x3d,0xaf,0x17,
|
||||
0xf9,0x7a,0x8d,0x7e,0xd3,0xcb,0xe5,0xf2,0x5d,0xca,0xd7,0x32,0xda,0x67,0x5b,0x99,
|
||||
0x9f,0x25,0x6e,0xf9,0x0f,0x32,0xb1,0xd6,0x86,0x42,0x89,0xe9,0x0a,0x43,0x8a,0x52,
|
||||
0x80,0xff,0x00,0x54,0x0f,0xb1,0xa9,0x99,0xbe,0xfc,0x49,0xcc,0xcf,0x69,0x1a,0x93,
|
||||
0x09,0xa1,0xcb,0xb1,0xad,0xc2,0xe4,0x0f,0x1e,0x82,0x33,0xa8,0x90,0xbf,0xfd,0x0d,
|
||||
0x2b,0xfb,0xea,0x9f,0xf6,0x81,0x9b,0x2b,0x4f,0x77,0x39,0xa6,0xd7,0xa0,0xf2,0x63,
|
||||
0xb6,0x9b,0xcb,0x31,0x1e,0x75,0x67,0x84,0xa5,0x99,0x1c,0xb0,0xe1,0x27,0xd8,0x74,
|
||||
0x3a,0xaa,0xe8,0xf9,0x4a,0x8a,0x1c,0x63,0x26,0xd7,0x51,0x96,0x82,0xf6,0x97,0x11,
|
||||
0xb6,0xf7,0x0d,0x6b,0x9b,0xfa,0x82,0x3d,0x14,0x32,0x12,0xd9,0x5a,0x55,0xdf,0xeb,
|
||||
0xae,0x96,0xc4,0xd6,0xad,0x21,0xca,0xf0,0xa9,0x9c,0x25,0x37,0x78,0x2b,0x65,0x97,
|
||||
0x4f,0xff,0x00,0x49,0xf1,0xf3,0x32,0xe7,0xf6,0x5c,0x4a,0x15,0xc7,0xbf,0x1c,0x7b,
|
||||
0xd4,0x65,0xf0,0xad,0xce,0xe7,0xdc,0x74,0x5b,0x21,0xc0,0x6f,0x08,0x53,0x17,0x6c,
|
||||
0x26,0xf0,0xe4,0x53,0x15,0xd4,0xf4,0xb8,0xc3,0x2f,0x15,0x2c,0x21,0x60,0xf7,0xe4,
|
||||
0x3c,0x99,0x23,0xbf,0xd0,0x0f,0x6a,0x9a,0xde,0x95,0x0b,0xe0,0xd8,0x9b,0xd0,0x1f,
|
||||
0x11,0xdf,0x31,0x89,0x21,0x8c,0x7b,0x56,0xec,0xef,0xb9,0xf0,0xfc,0x84,0x36,0x8b,
|
||||
0x93,0x1c,0x2d,0x7c,0x8f,0x72,0xae,0x85,0x28,0x13,0xea,0xa9,0x2a,0x15,0xcc,0xf0,
|
||||
0x79,0xbf,0x8c,0xc2,0xab,0x70,0x97,0xf3,0x6e,0xd9,0x9f,0xdd,0x1f,0xcf,0x6f,0x33,
|
||||
0x1d,0xff,0x00,0x2a,0x9d,0xc2,0xce,0x0e,0xf6,0x5d,0x5f,0x8b,0x46,0x95,0x2b,0x2c,
|
||||
0xd0,0xcb,0x46,0x67,0x15,0x94,0xae,0x5e,0x29,0x70,0x01,0xf5,0x7a,0x11,0x12,0x4f,
|
||||
0x4b,0x6b,0x23,0xeb,0xc3,0xa2,0x3f,0x6f,0xa1,0x51,0xa8,0xff,0x00,0xe1,0xd7,0xbe,
|
||||
0x37,0x34,0xea,0xeb,0x03,0x4b,0xf3,0xcb,0x81,0x38,0x94,0xc7,0x03,0x36,0x8b,0x9c,
|
||||
0x85,0x73,0xf6,0x63,0xca,0x3d,0x9a,0x59,0xff,0x00,0x52,0xb5,0x1e,0x01,0x3d,0x9b,
|
||||
0x51,0xe4,0xf0,0x92,0x4a,0x6c,0x2f,0x75,0x91,0xf1,0xcb,0x86,0xdd,0xf3,0xeb,0x76,
|
||||
0x51,0x78,0x81,0x62,0xb6,0xce,0xb4,0xc8,0x8e,0xdc,0xdb,0x8b,0xa1,0xb6,0x91,0x20,
|
||||
0xa0,0x96,0x0f,0x7f,0xda,0x3e,0x60,0x41,0x09,0x1d,0xc9,0x1c,0x0e,0xf5,0xe7,0xf6,
|
||||
0xba,0xe6,0x45,0xa4,0x83,0x32,0xe5,0xa9,0xb0,0x9a,0xe6,0xdd,0xac,0x71,0xd2,0x6d,
|
||||
0xf2,0xdc,0x5c,0x16,0x9e,0xa1,0xd7,0xf6,0x36,0x3b,0x1d,0xed,0xa6,0x26,0x37,0x87,
|
||||
0x05,0xe9,0x6f,0xd2,0xa9,0x23,0x73,0x38,0xbc,0xcd,0xa0,0x6f,0x71,0x77,0x9b,0x0a,
|
||||
0x5c,0x8d,0x16,0x2d,0xd6,0x3e,0x53,0x68,0x00,0x74,0x82,0xca,0xdd,0xf3,0x14,0xd0,
|
||||
0xe3,0xd5,0xb0,0xe2,0x5e,0x67,0x8f,0x74,0xa3,0x83,0xea,0x6a,0x6c,0x78,0x67,0xee,
|
||||
0xc5,0xdd,0x5d,0xc2,0x1d,0xd3,0xdc,0x9e,0x61,0x7b,0x2d,0xc6,0xe3,0xa5,0x51,0x24,
|
||||
0xbb,0xfb,0x53,0xad,0xe3,0x84,0x82,0xa3,0xcf,0x75,0xb4,0x4a,0x50,0xa2,0x78,0xe5,
|
||||
0x2a,0x6c,0xfc,0xc7,0xac,0xd6,0x15,0xe2,0xb1,0x89,0x59,0x75,0x23,0x4c,0x2c,0x3a,
|
||||
0x85,0x8c,0xdd,0x2d,0xb7,0xa7,0xb1,0x5b,0x8a,0xad,0x37,0x45,0xdb,0x64,0x36,0xf9,
|
||||
0x65,0xa7,0xf8,0xe9,0x0e,0x29,0x0a,0x3d,0x25,0x0e,0xa1,0x29,0xe9,0x3d,0xf9,0x78,
|
||||
0xfa,0x77,0xad,0x77,0x27,0x36,0xaf,0x2a,0x66,0x87,0xe1,0x75,0x63,0xba,0xfe,0xe1,
|
||||
0x3e,0x06,0xfb,0xb1,0xde,0xfc,0x0f,0xee,0x23,0x90,0xbd,0xcb,0x69,0x23,0xd4,0x15,
|
||||
0xa8,0x63,0x99,0x04,0x0c,0xb3,0x1e,0xb5,0xdf,0x2d,0x52,0x51,0x32,0xd7,0x73,0x8a,
|
||||
0xd4,0xd8,0x92,0x5b,0x3c,0xa5,0xd6,0x5c,0x40,0x5a,0x16,0x3f,0x02,0x95,0x03,0xfa,
|
||||
0xd7,0x63,0x51,0x47,0xc3,0x03,0x53,0x9b,0xd4,0xad,0x9c,0x61,0xc8,0x2f,0x17,0xa7,
|
||||
0xe3,0xaa,0x7a,0xc1,0x2c,0x1f,0xdc,0x2c,0xab,0xa9,0x94,0x8f,0xc3,0xc8,0x71,0x8f,
|
||||
0xf8,0xfd,0x2a,0x57,0x57,0xd4,0xcb,0x1e,0x95,0x53,0xde,0x38,0x39,0x8a,0x9c,0xbc,
|
||||
0xe9,0x5e,0x28,0xdb,0xe4,0x25,0x98,0xf3,0x6e,0x8f,0xb0,0x0f,0x62,0x56,0xa6,0x9b,
|
||||
0x69,0x44,0x7e,0x1e,0x5b,0xa0,0x7e,0x66,0xad,0x86,0xb4,0x06,0x7f,0xb3,0x2c,0x1b,
|
||||
0x58,0x37,0x00,0xce,0xa8,0x67,0xf1,0x1b,0xca,0x15,0x6d,0xb5,0xb1,0x6a,0xb4,0xd8,
|
||||
0xa5,0x36,0x0c,0x26,0x52,0x85,0xba,0xe2,0x9d,0x79,0x07,0xb3,0xcb,0x2a,0x79,0x40,
|
||||
0x25,0x43,0xa4,0x00,0x09,0x0a,0x3c,0x74,0x91,0x52,0x06,0xdf,0x62,0xeb,0x85,0xaa,
|
||||
0x36,0x41,0x2f,0x49,0x71,0x9c,0x96,0x70,0xbe,0x40,0x5d,0xa2,0x5d,0xca,0xc7,0x67,
|
||||
0x7a,0x4a,0x92,0xca,0x96,0x92,0xb4,0xb6,0xf2,0x50,0x7c,0xb5,0x72,0x90,0x3a,0x81,
|
||||
0x04,0x7b,0x10,0x78,0x23,0xbc,0xc2,0xf4,0xfb,0x72,0xdb,0x5f,0xbe,0xaf,0x28,0xb1,
|
||||
0x61,0x59,0xc6,0x26,0xf3,0x6d,0x7f,0x48,0x93,0xf6,0x2b,0xeb,0x8a,0xe3,0x5e,0xa5,
|
||||
0x2f,0x02,0x82,0xda,0xd2,0x3d,0x78,0x57,0x3c,0x11,0xcf,0x62,0x39,0xaf,0x43,0x90,
|
||||
0xe1,0xc7,0xb7,0x44,0x62,0x24,0x46,0x1b,0x8b,0x15,0x84,0x25,0xa6,0x98,0x65,0x01,
|
||||
0x08,0x6d,0x09,0x1c,0x25,0x29,0x48,0xec,0x00,0x00,0x00,0x07,0xa5,0x7d,0xaa,0xce,
|
||||
0x4a,0x2a,0x69,0x44,0x82,0x48,0xda,0x7b,0x4f,0x9a,0xe0,0x1d,0x56,0xd8,0x5f,0xad,
|
||||
0xbc,0xd5,0x6e,0x47,0x8a,0xa5,0xcb,0x1f,0x8c,0x46,0x69,0x1a,0xdc,0x86,0xee,0xf8,
|
||||
0x05,0x8e,0xe1,0x38,0x0e,0x0c,0x88,0x92,0xde,0x8c,0x85,0x1f,0xaf,0x42,0xba,0xff,
|
||||
0x00,0xea,0xac,0x1f,0x51,0xfc,0x56,0x35,0x8b,0x32,0x80,0xe4,0x2b,0x1b,0x16,0x5c,
|
||||
0x2d,0x95,0xff,0x00,0xf7,0x36,0xd8,0xea,0x7a,0x57,0x1e,0xe3,0xad,0xe5,0x29,0x23,
|
||||
0xf3,0x4a,0x01,0x1f,0x5a,0xb0,0xfd,0xf0,0x78,0x75,0x62,0x3b,0x8d,0xc7,0x6e,0x99,
|
||||
0x1e,0x29,0x6d,0x8b,0x8e,0xea,0x7b,0x48,0x5c,0x86,0x65,0xc5,0x4a,0x59,0x66,0xea,
|
||||
0xe7,0xed,0x16,0xa5,0x0e,0xc0,0xa9,0x5d,0xc0,0x77,0xb2,0x81,0x20,0xa8,0xa9,0x23,
|
||||
0x8a,0xa2,0xdb,0xad,0xa6,0x6d,0x8e,0xeb,0x32,0xd9,0x70,0x8a,0xec,0x3b,0x84,0x37,
|
||||
0x97,0x1e,0x44,0x57,0x90,0x52,0xe3,0x4e,0xa1,0x45,0x2a,0x42,0x81,0xee,0x08,0x20,
|
||||
0x82,0x3f,0x0a,0xd5,0x62,0xc9,0x59,0x7a,0x09,0x7b,0x56,0x51,0xb6,0xfe,0x77,0x23,
|
||||
0xe8,0x49,0x1f,0xa2,0x93,0xb5,0x79,0xf1,0x4b,0xb5,0xda,0x75,0xfa,0xe7,0x2a,0xe3,
|
||||
0x73,0x9b,0x22,0xe3,0x70,0x94,0xe2,0x9e,0x91,0x2e,0x5b,0xaa,0x75,0xd7,0x96,0xa3,
|
||||
0xca,0x94,0xb5,0xa8,0x92,0xa5,0x13,0xdc,0x92,0x79,0xac,0xff,0x00,0x49,0xb7,0x1d,
|
||||
0xa8,0xfa,0x1b,0x6f,0xbc,0xc1,0xc1,0xf2,0x99,0x56,0x18,0x97,0x74,0x74,0x4b,0x65,
|
||||
0xa4,0x36,0xe2,0x49,0xe0,0xa4,0x2d,0x1d,0x69,0x57,0x96,0xe0,0x07,0x8e,0xb4,0x70,
|
||||
0xaf,0x4e,0xfd,0x85,0x62,0xb2,0xf4,0xfb,0x29,0xb7,0xda,0x45,0xd6,0x56,0x35,0x78,
|
||||
0x8d,0x6c,0x23,0x91,0x35,0xe8,0x0e,0xa1,0x92,0x3e,0xbd,0x65,0x3d,0x3e,0xe3,0xde,
|
||||
0xba,0x0a,0xdb,0x27,0xa5,0xa7,0xa9,0x8b,0xb0,0x9e,0x30,0xe6,0x6d,0xb1,0x00,0x8d,
|
||||
0xb8,0xd8,0xed,0xb7,0x82,0x8c,0x12,0x0d,0xc2,0xfd,0x5a,0xd4,0xe2,0xd4,0xa5,0x28,
|
||||
0xa9,0x4a,0x3c,0x95,0x13,0xc9,0x26,0xac,0x0b,0xc2,0x23,0x48,0xd5,0x7b,0xd4,0x5c,
|
||||
0x9f,0x51,0x25,0xb0,0x95,0x44,0xb1,0x45,0x16,0xd8,0x2b,0x5a,0x79,0x3f,0x14,0xff,
|
||||
0x00,0x75,0xa9,0x07,0xd8,0xa5,0xa4,0x94,0x9f,0xc1,0xf1,0xf8,0xd5,0x7e,0x54,0xd4,
|
||||
0xda,0xc7,0x88,0x55,0x9b,0x6b,0xda,0x57,0x03,0x0e,0x85,0xa7,0x0f,0x5f,0x1f,0x72,
|
||||
0x5b,0xb3,0xae,0x97,0x45,0x5e,0x44,0x72,0xf3,0xcb,0x57,0x48,0xe8,0x6b,0xc8,0x5f,
|
||||
0x01,0x2d,0x21,0xa4,0xf7,0x57,0x72,0x92,0x7b,0x73,0x5a,0x96,0x72,0xa7,0xc4,0x6b,
|
||||
0x30,0x69,0x69,0x30,0xc8,0xf5,0xc9,0x25,0x9b,0xc8,0x16,0x6f,0x2e,0xdd,0xc4,0x0d,
|
||||
0xc0,0xb7,0x5d,0xd4,0xb1,0x16,0x87,0x5d,0xc5,0x59,0xb6,0xe8,0x73,0xbf,0xf3,0x69,
|
||||
0xb7,0x7d,0x43,0xc8,0x92,0xe9,0x66,0x44,0x5b,0x34,0x84,0x46,0x70,0x7e,0xec,0x87,
|
||||
0x13,0xe5,0x32,0x7f,0xf3,0x16,0x8a,0xf3,0xeb,0x56,0x8b,0xbc,0x9d,0xe1,0xe1,0xba,
|
||||
0xe7,0xb2,0x09,0x53,0x71,0x39,0x0b,0x44,0x9b,0xbd,0xea,0x1d,0xa6,0x7d,0xaa,0x59,
|
||||
0x4a,0x65,0xc0,0x50,0x2b,0x93,0xca,0xd2,0x09,0xe5,0x2a,0xf8,0x6f,0x95,0x60,0x90,
|
||||
0x41,0xf6,0x21,0x40,0x55,0xd5,0x6a,0x9f,0x0c,0xb0,0xa9,0xb0,0xdc,0x3e,0xa0,0xd5,
|
||||
0x30,0xb2,0x43,0x21,0x04,0x1e,0x6c,0xd0,0x2d,0xfa,0x93,0xff,0x00,0x8a,0x49,0xdc,
|
||||
0x1c,0x45,0x95,0x9a,0xed,0x97,0x5d,0xec,0x1b,0x32,0xd8,0x8d,0xa7,0x26,0xbb,0x32,
|
||||
0x2e,0x19,0x06,0x5b,0x74,0x9d,0x36,0xd3,0x65,0x4a,0xfa,0x1c,0x94,0xb4,0x28,0x47,
|
||||
0xeb,0x51,0xe0,0xf4,0xb6,0x90,0xc2,0x49,0x57,0x1e,0x8a,0x48,0x1c,0x95,0x0a,0x84,
|
||||
0xda,0xcf,0xba,0xdd,0x50,0xd7,0x99,0xd3,0x17,0x94,0xe5,0x73,0x55,0x6c,0x90,0xa2,
|
||||
0x45,0x8e,0x0b,0xaa,0x8f,0x6f,0x6d,0x3d,0x5c,0xa5,0x21,0x94,0x9e,0x15,0xd3,0xdb,
|
||||
0x85,0x2f,0xa9,0x5d,0x87,0x2a,0x27,0xbd,0x61,0x19,0xd6,0x7f,0x72,0xcf,0xa4,0x59,
|
||||
0xd5,0x3d,0x49,0x44,0x6b,0x3d,0xae,0x35,0x9e,0x04,0x66,0xc7,0x08,0x62,0x3b,0x28,
|
||||
0xe0,0x01,0xf8,0xa9,0x45,0x6e,0x28,0xfb,0xad,0xc5,0x1e,0xdc,0xf0,0x31,0xaa,0xdb,
|
||||
0xf0,0xac,0xb5,0x4b,0x47,0x53,0x36,0x25,0x3b,0x03,0xaa,0x25,0x71,0x71,0x27,0x7d,
|
||||
0x20,0x9d,0x9a,0xde,0x96,0x16,0x04,0x8d,0xc9,0xf2,0xb0,0x11,0x3a,0x42,0x40,0x68,
|
||||
0xe1,0x5d,0xd7,0x86,0xbe,0x27,0x69,0xc6,0xf6,0x8b,0x89,0x4c,0xb6,0xa5,0x2a,0x7e,
|
||||
0xf2,0xec,0xbb,0x84,0xe7,0x81,0xfe,0xb1,0xff,0x00,0x88,0x5b,0x3f,0xa7,0x4a,0x19,
|
||||
0x42,0x38,0xfe,0x42,0x7d,0xcd,0x42,0x9f,0x15,0xed,0x6b,0xff,0x00,0x2d,0x75,0x96,
|
||||
0xdd,0x81,0x41,0x70,0x2a,0xd9,0x89,0x31,0xcc,0x82,0x85,0x73,0xd7,0x35,0xf4,0xa5,
|
||||
0x6b,0xe7,0xbf,0x1f,0x23,0x61,0xb4,0x8f,0x70,0xa2,0xe0,0xae,0x9b,0x65,0x9e,0x20,
|
||||
0x49,0xdb,0x36,0x09,0x7d,0xc4,0xb2,0x1b,0x1c,0xbc,0x86,0xd4,0x56,0xb9,0xd6,0x8f,
|
||||
0x83,0x75,0x29,0x5b,0x12,0x14,0x9e,0x14,0xd2,0xfa,0x8f,0x01,0xa5,0x10,0x95,0x72,
|
||||
0x9e,0xe9,0x3d,0x67,0xa5,0x7d,0x5d,0xa2,0x36,0x4b,0x90,0xce,0xcb,0xb2,0x3b,0xad,
|
||||
0xf6,0xe8,0xf1,0x93,0x73,0xba,0x4b,0x76,0x6c,0xa7,0x8f,0xab,0x8e,0xb8,0xb2,0xb5,
|
||||
0xab,0xf5,0x52,0x89,0xad,0x2f,0x01,0xca,0x75,0x54,0xf9,0xa6,0xb3,0x16,0xae,0x17,
|
||||
0x68,0x2e,0x31,0x9e,0xba,0xef,0xbf,0xf8,0xb7,0xbb,0xbf,0x5d,0xb8,0x52,0xbe,0x40,
|
||||
0x63,0x0d,0x0b,0x97,0x81,0xe6,0xf7,0x7d,0x36,0xcc,0xac,0xd9,0x4d,0x86,0x4f,0xc2,
|
||||
0x5e,0x2d,0x32,0x91,0x2e,0x33,0xbc,0x72,0x02,0xd2,0x79,0xe1,0x43,0xdd,0x27,0xb8,
|
||||
0x23,0xdc,0x12,0x3d,0xeb,0x97,0x02,0xed,0x37,0x39,0xd4,0xf8,0xd7,0x3b,0xb4,0x83,
|
||||
0x2a,0xe3,0x78,0xbc,0x26,0x44,0xb7,0xd4,0x38,0xf3,0x1d,0x75,0xe0,0xa5,0xa8,0x81,
|
||||
0xc7,0xa9,0x51,0x3d,0xab,0x17,0xae,0xdf,0x0e,0x94,0x98,0x39,0x7d,0x8e,0x4a,0xfb,
|
||||
0xa1,0x99,0xcc,0x38,0x7f,0x20,0xe2,0x4f,0xfd,0xab,0xae,0x4b,0x13,0x3b,0xf3,0x35,
|
||||
0xa3,0x5e,0x9b,0x5f,0xc6,0xdb,0x9b,0x5f,0xa5,0xd5,0xb0,0xe8,0xbd,0x22,0x1f,0x53,
|
||||
0x5e,0x7e,0x77,0x01,0x7f,0xb8,0x59,0x77,0x35,0xa9,0x77,0x1b,0x54,0xf9,0x36,0xe9,
|
||||
0xad,0xe4,0xf7,0x22,0xdc,0xa8,0x6f,0x29,0xa7,0x10,0x7e,0x25,0xc1,0xd9,0x49,0x20,
|
||||
0x8a,0x9f,0xbb,0x85,0xf1,0x58,0x6b,0x4e,0xf5,0x42,0x6e,0x33,0x83,0x63,0x30,0x32,
|
||||
0x6b,0x65,0xa6,0x42,0xa3,0xce,0xba,0xcc,0x94,0xb4,0xa6,0x4b,0x89,0x3c,0x2d,0x11,
|
||||
0xfa,0x07,0x01,0x29,0x20,0x8f,0x30,0xf5,0x05,0x1e,0x78,0x4f,0x1c,0x15,0x56,0x46,
|
||||
0x73,0x94,0x39,0x9c,0x66,0xd9,0x06,0x46,0xf3,0x3f,0x0e,0xf5,0xe2,0xe1,0x22,0xe0,
|
||||
0xb6,0x82,0xba,0xba,0x14,0xeb,0x8a,0x70,0xa7,0x9e,0x07,0x3c,0x15,0x71,0xcf,0x02,
|
||||
0xb8,0x87,0xc3,0x6c,0xb9,0x88,0x61,0x6e,0x96,0xaa,0xba,0x2d,0x2c,0x95,0x82,0xd7,
|
||||
0x22,0xfc,0xdf,0x71,0xc8,0xdb,0xaa,0xbb,0x9d,0xed,0x76,0xc0,0xa9,0x3b,0xa4,0xfe,
|
||||
0x21,0xf9,0x95,0x93,0x00,0xcb,0x70,0x5d,0x45,0x91,0x3b,0x39,0xc7,0xef,0x56,0x69,
|
||||
0x96,0xf6,0x26,0xc9,0x74,0x39,0x3e,0x1b,0x8e,0xb0,0xe2,0x12,0x4b,0x8b,0x3c,0xba,
|
||||
0x82,0xa5,0x00,0xa0,0xb2,0x54,0x07,0x74,0x9e,0xdd,0x2a,0x89,0x08,0x5a,0x9a,0x5a,
|
||||
0x56,0x85,0x14,0x2d,0x27,0x90,0xa4,0x9e,0x08,0x3f,0x51,0x5f,0x94,0xae,0xcb,0x47,
|
||||
0x85,0x51,0xe1,0xf2,0x4b,0x25,0x24,0x61,0x86,0x42,0x0b,0x80,0xd8,0x12,0x3c,0x6d,
|
||||
0xc0,0x3d,0x6d,0xcf,0xaa,0xb5,0x2e,0x2e,0xe5,0x5e,0x86,0xb0,0x6e,0xc6,0x36,0x93,
|
||||
0xed,0x32,0xcd,0xaa,0xc5,0x96,0x27,0xdd,0x6f,0x76,0xd8,0x2a,0xb6,0x43,0x75,0x45,
|
||||
0x2d,0xbf,0x32,0x4b,0x21,0xc0,0x15,0xc7,0x7e,0x94,0x0f,0x31,0x6a,0x03,0x82,0x43,
|
||||
0x64,0x72,0x09,0xe6,0xaa,0x06,0xe1,0xb9,0x1c,0xe7,0x28,0xd6,0x7c,0x7f,0x52,0xb2,
|
||||
0x9b,0xd4,0x9c,0x86,0xf9,0x67,0x9f,0x1e,0x6b,0x01,0xf5,0xf4,0x36,0xda,0x5a,0x74,
|
||||
0x38,0x1a,0x6d,0x09,0x01,0x2d,0xa0,0x90,0x7b,0x24,0x01,0xca,0x89,0xf5,0x24,0xd6,
|
||||
0x57,0xaa,0x1a,0xd2,0xc6,0x67,0xb4,0xcd,0x1c,0xc2,0x13,0x70,0x2f,0xdc,0xb1,0xcb,
|
||||
0x85,0xd9,0x13,0x22,0xa9,0x44,0xa9,0x2d,0x95,0xb6,0xb8,0xcb,0x23,0xe9,0xd2,0xf3,
|
||||
0x88,0x4f,0xfe,0x1a,0x87,0xb5,0x6a,0x16,0x74,0xf7,0x29,0x91,0x66,0x37,0x76,0xb1,
|
||||
0xab,0xc3,0xb6,0x90,0x9e,0xa3,0x3d,0x10,0x1d,0x2c,0x01,0xf5,0xf3,0x3a,0x7a,0x78,
|
||||
0xfd,0x6b,0x46,0xca,0x39,0x52,0x97,0x08,0x82,0x77,0x4b,0x18,0x32,0x3d,0xf2,0x36,
|
||||
0xe4,0x6f,0xa0,0x38,0xb4,0x01,0xd0,0x10,0x2f,0xb7,0x37,0xf2,0x0a,0x69,0x64,0x2e,
|
||||
0x22,0xcb,0x67,0xee,0xff,0x00,0x70,0xf7,0x3d,0xc5,0x6b,0x3d,0xf2,0xf2,0xbb,0x8b,
|
||||
0xb2,0x31,0x98,0x92,0x1c,0x8b,0x62,0x89,0xf3,0x25,0xa6,0x62,0x25,0x5d,0x29,0x58,
|
||||
0x41,0xf4,0x5b,0x80,0x05,0xa8,0x9e,0xfc,0xab,0x8e,0xc1,0x29,0x03,0x48,0x80,0x49,
|
||||
0x00,0x0e,0x49,0xf6,0x15,0xd8,0x63,0xd8,0xf5,0xcb,0x2c,0xc8,0x2d,0xb6,0x3b,0x3c,
|
||||
0x27,0x6e,0x17,0x6b,0x8c,0x96,0xe2,0x44,0x86,0xc2,0x79,0x71,0xe7,0x96,0xa0,0x94,
|
||||
0x21,0x23,0xea,0x49,0x03,0xf5,0xab,0xe1,0xd9,0x67,0x87,0xb6,0x17,0xb6,0x3c,0x72,
|
||||
0xdf,0x77,0xbd,0x41,0x87,0x93,0x6a,0x5b,0x88,0x4b,0xd2,0xaf,0x32,0x1a,0x0e,0x22,
|
||||
0x0b,0x9c,0x7f,0x57,0x10,0x28,0x7c,0x81,0x3c,0xf1,0xe6,0x76,0x5a,0xcf,0x27,0xb0,
|
||||
0x21,0x29,0xe8,0x34,0x54,0x70,0xe1,0xf4,0xd1,0xd2,0xd3,0xb6,0xcc,0x60,0x00,0x0f,
|
||||
0x4f,0xfd,0xeb,0xd4,0xa8,0x09,0x2e,0x37,0x2a,0x9b,0x70,0xdd,0xb4,0xeb,0xac,0xde,
|
||||
0x2e,0x58,0xd6,0x9b,0x67,0x29,0x0e,0xb0,0xeb,0x62,0x6c,0x3b,0x44,0xa6,0x92,0xb6,
|
||||
0x9c,0x6d,0x48,0x71,0x21,0xce,0x90,0x0a,0x56,0x85,0x29,0x24,0x73,0xf3,0x05,0x11,
|
||||
0xdc,0x1a,0xc7,0x32,0xbd,0x30,0xd4,0xdd,0x24,0xb7,0xcb,0x6f,0x23,0xc5,0x72,0xac,
|
||||
0x3e,0x05,0xc1,0x29,0x8f,0x24,0x5c,0x60,0x49,0x86,0xcc,0x94,0x85,0x85,0xa5,0x0b,
|
||||
0xea,0x4a,0x52,0xb1,0xd4,0x84,0xa8,0x03,0xcf,0x74,0x83,0xec,0x2b,0xd3,0x65,0x71,
|
||||
0xae,0x76,0xc8,0x77,0xab,0x7c,0x98,0x17,0x08,0x8c,0x4f,0x83,0x25,0xb2,0xd3,0xf1,
|
||||
0x64,0xb6,0x1c,0x69,0xd4,0x11,0xc1,0x4a,0x92,0xa0,0x42,0x81,0x1e,0xa0,0xd5,0xd1,
|
||||
0x63,0x49,0xb9,0x1f,0xfc,0x38,0xfa,0x2a,0x2a,0xc4,0xf0,0x3f,0xcd,0xc3,0xd8,0xf6,
|
||||
0xa9,0x61,0xee,0xba,0x94,0x98,0xd2,0xa1,0xdd,0xa3,0xb6,0x4f,0x75,0x79,0x88,0x71,
|
||||
0xa7,0x48,0x1f,0x87,0x94,0xcf,0xf8,0x85,0x5a,0x25,0x68,0x0d,0x2e,0xd9,0x86,0x0b,
|
||||
0xa2,0x1a,0xf1,0x74,0xd4,0x8c,0x09,0x93,0x8e,0x33,0x78,0xb5,0x3d,0x6d,0xb8,0xe3,
|
||||
0xac,0x27,0xfa,0x12,0x96,0xa7,0x59,0x75,0x0f,0x32,0x39,0xfb,0xa2,0x0b,0x4a,0x05,
|
||||
0x03,0x94,0x9e,0xb1,0xd2,0x11,0xc1,0x0a,0xdf,0xf5,0xed,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0xb5,0xde,0x33,0xb7,0xad,0x38,0xc3,0xf5,0x03,0x21,0xce,0x2d,0x38,
|
||||
0x7d,0xae,0x36,0x5b,0x7e,0x91,0xf1,0x53,0xae,0xc5,0x80,0xb7,0xd4,0xe7,0x48,0x04,
|
||||
0xa1,0x4a,0xe7,0xcb,0x0a,0x23,0xa9,0x41,0x1d,0x3d,0x4a,0x25,0x4a,0xe4,0xf7,0xad,
|
||||
0x89,0x4a,0x22,0xfc,0x23,0x91,0x51,0xc3,0x72,0x9b,0x06,0xd2,0x6d,0xca,0x5a,0xa5,
|
||||
0xae,0xe3,0x62,0x8f,0x8e,0xe5,0x4a,0x6d,0x42,0x3e,0x49,0x66,0x65,0x2c,0xc8,0x43,
|
||||
0x9d,0xb8,0x2e,0xa5,0x3c,0x25,0xf4,0xf6,0x00,0x85,0x82,0x78,0xe4,0x25,0x48,0x27,
|
||||
0x9a,0x92,0x14,0xa2,0x2f,0x34,0xfb,0x8d,0xdb,0xbe,0x57,0xb6,0x3d,0x4d,0x9d,0x86,
|
||||
0x65,0x6c,0x0f,0x39,0xb1,0xe7,0x43,0x9e,0xc8,0x3e,0x44,0xf8,0xe4,0x90,0x87,0x9b,
|
||||
0x27,0xd8,0xf0,0x41,0x1e,0xa9,0x50,0x20,0xfa,0x56,0x35,0xa7,0x1a,0x53,0x98,0xea,
|
||||
0xfe,0x40,0xdd,0x93,0x0b,0xc6,0xae,0x59,0x35,0xcd,0x45,0x20,0xb1,0x6e,0x8e,0xa7,
|
||||
0x3c,0xb0,0x4f,0x01,0x4e,0x28,0x7c,0xad,0xa7,0xf9,0x94,0x42,0x47,0xb9,0xaf,0x40,
|
||||
0xbb,0xad,0xd9,0xe6,0x1d,0xbb,0x9b,0x5e,0x2f,0x0f,0x29,0x7e,0x55,0xbd,0x56,0x2b,
|
||||
0x87,0xc5,0x22,0x65,0xbf,0xa4,0x48,0x71,0x85,0x20,0x87,0x63,0x05,0x28,0x10,0x94,
|
||||
0xac,0x86,0xd4,0x55,0xc1,0x20,0xb6,0x38,0xf5,0x35,0xb3,0x74,0xcf,0x4a,0xb1,0x1d,
|
||||
0x1a,0xc5,0x23,0xe3,0x78,0x4e,0x3f,0x0b,0x1c,0xb2,0xb0,0x7a,0x84,0x58,0x4d,0xf1,
|
||||
0xd6,0xae,0x00,0x2b,0x71,0x47,0x95,0x38,0xb2,0x00,0xe5,0x6b,0x25,0x47,0x81,0xc9,
|
||||
0x34,0x45,0x4e,0x58,0x17,0x83,0x9e,0xb9,0xe4,0xb1,0x52,0xe5,0xf6,0x7e,0x37,0x87,
|
||||
0x30,0xa5,0x02,0xe4,0x69,0x93,0xd7,0x25,0xfe,0x40,0x3c,0x1e,0x96,0x10,0xb6,0xcf,
|
||||
0x1c,0x91,0xdd,0xc1,0xeb,0x59,0xbd,0xdb,0xc1,0x0f,0x3a,0x66,0x12,0x95,0x6c,0xd4,
|
||||
0x9c,0x7a,0x64,0xbe,0x3e,0x56,0xa5,0xc3,0x7d,0x86,0xc9,0xfc,0x56,0x9e,0xb2,0x3f,
|
||||
0xc3,0x57,0x03,0x4a,0x22,0xf3,0xf1,0xac,0x3e,0x1a,0xda,0xf7,0xa3,0x50,0x64,0xdc,
|
||||
0x65,0xe2,0x43,0x26,0xb4,0x47,0x3f,0x79,0x3f,0x18,0x7b,0xe3,0x40,0x1f,0xc5,0xe4,
|
||||
0x80,0x1e,0x09,0x1d,0xc9,0x51,0x6f,0x80,0x07,0x72,0x2a,0x2f,0xad,0x0a,0x6d,0x6a,
|
||||
0x42,0xd2,0x52,0xb4,0x9e,0x0a,0x54,0x38,0x20,0xfd,0x2b,0xd5,0x3d,0x44,0x3d,0xe5,
|
||||
0x78,0x73,0xe0,0xfb,0x9e,0xb7,0xce,0xbe,0x59,0x9a,0x8d,0x88,0x6a,0x3f,0x4a,0x9c,
|
||||
0x6a,0xf3,0x1d,0xae,0x19,0x9e,0xe7,0x1d,0x91,0x31,0x09,0x1f,0x30,0x3c,0x71,0xe6,
|
||||
0x8f,0x9d,0x3d,0x8f,0xce,0x07,0x41,0x22,0xa1,0x3a,0x56,0x4b,0xa9,0x1a,0x71,0x91,
|
||||
0xe9,0x1e,0x6f,0x76,0xc4,0x72,0xdb,0x5b,0xd6,0x6c,0x82,0xd6,0xf7,0x93,0x26,0x23,
|
||||
0xdc,0x12,0x93,0xc0,0x29,0x52,0x48,0xec,0xa4,0xa9,0x24,0x29,0x2a,0x04,0x85,0x24,
|
||||
0x82,0x09,0x06,0xb9,0x3a,0x51,0xa5,0x39,0x3e,0xb6,0x67,0xb6,0xac,0x3b,0x10,0xb6,
|
||||
0xae,0xe9,0x7c,0xb9,0x39,0xd0,0xd3,0x49,0xec,0x94,0x24,0x77,0x53,0x8e,0x2b,0xd1,
|
||||
0x28,0x48,0xe4,0x95,0x1f,0x40,0x28,0x8b,0x14,0x65,0x97,0x24,0xbc,0x86,0x9a,0x42,
|
||||
0x9d,0x75,0xc5,0x04,0xa1,0x08,0x1c,0xa9,0x44,0xf6,0x00,0x01,0xea,0x6a,0x53,0xe9,
|
||||
0x07,0x86,0x56,0xbf,0x6a,0xec,0x18,0xb7,0x16,0x71,0x66,0xf1,0x3b,0x5c,0x8e,0xed,
|
||||
0xcc,0xca,0x1f,0xf8,0x23,0xc7,0xf1,0x16,0x42,0x54,0xf8,0x1e,0xe0,0xf9,0x7c,0x11,
|
||||
0xdc,0x72,0x2a,0xd4,0xf6,0x75,0xe1,0xf1,0x81,0xed,0x6a,0xd5,0x0e,0xeb,0x2a,0x34,
|
||||
0x7c,0xa7,0x51,0x14,0x80,0xa9,0x19,0x04,0xa6,0x82,0x84,0x55,0x94,0xf0,0xa4,0x44,
|
||||
0x4a,0x87,0xdd,0x24,0x72,0xa1,0xd7,0xfb,0x6a,0x04,0xf2,0x40,0x21,0x29,0x95,0x74,
|
||||
0x45,0x50,0x16,0xef,0x04,0x3c,0xe1,0xd8,0x69,0x5c,0xfd,0x4b,0xc7,0xe3,0x4c,0x23,
|
||||
0x95,0x35,0x1e,0x13,0xef,0x36,0x0f,0xfb,0xe7,0xa0,0x9f,0xf0,0xd6,0xbe,0xcf,0x7c,
|
||||
0x1d,0x75,0xd7,0x16,0x69,0x6f,0x58,0xde,0xc6,0xf3,0x26,0xc1,0x3d,0x2c,0xdb,0xee,
|
||||
0x06,0x3b,0xe4,0x7d,0x4a,0x64,0x21,0xb4,0x0f,0xd1,0x66,0xaf,0x02,0x94,0x45,0xe5,
|
||||
0xf3,0x3f,0xd3,0x4c,0xb3,0x4a,0xef,0xee,0xd9,0x33,0x0c,0x72,0xe7,0x8d,0x5d,0x5b,
|
||||
0x27,0x98,0xd7,0x38,0xcb,0x65,0x4a,0x00,0xf1,0xd4,0x9e,0xa1,0xc2,0xd2,0x7d,0x94,
|
||||
0x9e,0x41,0xf5,0x04,0x8a,0xce,0x76,0xbd,0xb6,0x4c,0xaf,0x75,0x5a,0x9b,0x1b,0x12,
|
||||
0xc6,0x52,0x98,0xcc,0x36,0x91,0x22,0xe7,0x76,0x7d,0x3c,0xb3,0x6f,0x8d,0xd4,0x02,
|
||||
0x9c,0x50,0xe4,0x75,0x28,0xf3,0xc2,0x50,0x0f,0x2a,0x3f,0x40,0x14,0xa4,0xfa,0x18,
|
||||
0xd5,0x6d,0x1d,0xc3,0x35,0xc3,0x13,0x7f,0x1b,0xce,0x71,0xe8,0x59,0x15,0xa5,0xce,
|
||||
0x4a,0x5a,0x94,0x8f,0x9d,0x95,0xf0,0x47,0x98,0xd3,0x83,0x85,0x36,0xb0,0x09,0x01,
|
||||
0x68,0x20,0xf7,0x3d,0xfb,0xd6,0xbf,0xda,0x6e,0xd2,0x31,0x6d,0xa2,0xe2,0x17,0xbb,
|
||||
0x16,0x37,0x2e,0x4d,0xd1,0x57,0x5b,0x92,0xe7,0x3d,0x70,0x9e,0x84,0x09,0x05,0xbe,
|
||||
0x3a,0x59,0x65,0x4a,0x48,0x01,0x41,0xb4,0xf3,0xdf,0x81,0xca,0x96,0xb5,0x00,0x9e,
|
||||
0xae,0x01,0x17,0x5d,0xb7,0x2d,0x8b,0xe9,0x36,0xda,0xed,0x71,0xfe,0xc3,0xc7,0x63,
|
||||
0xdd,0xf2,0x30,0x84,0x89,0x19,0x1d,0xe1,0xa4,0xbf,0x31,0xc5,0x8e,0x79,0x28,0x2a,
|
||||
0x1c,0x32,0x93,0xcf,0xec,0xb6,0x13,0xc8,0x03,0xa8,0xa8,0x8e,0x6a,0x41,0xd2,0x94,
|
||||
0x45,0xae,0xef,0x1b,0x7b,0xd3,0xab,0xee,0xa5,0xd8,0x75,0x0a,0x56,0x23,0x6d,0x19,
|
||||
0x9d,0x91,0xc7,0x1c,0x89,0x78,0x65,0x90,0xd3,0xc4,0xad,0xb5,0x36,0x7c,0xc2,0x9e,
|
||||
0x03,0xbc,0x05,0x12,0x9e,0xbe,0xae,0x93,0xdd,0x3c,0x1a,0xd8,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x14,0x2e,
|
||||
0xf1,0x31,0xd9,0xbb,0x3b,0x8c,0xd2,0xc7,0x72,0xcc,0x76,0x08,0x5e,0xa2,0x62,0xf1,
|
||||
0xd6,0xf4,0x5f,0x21,0xa2,0xa7,0x6e,0x51,0x07,0x2a,0x72,0x21,0xe3,0xba,0x95,0xea,
|
||||
0xb6,0xfb,0x13,0xd5,0xca,0x40,0x1e,0x61,0x23,0xb8,0xf0,0xe7,0xd9,0xd4,0x5d,0xb0,
|
||||
0xe9,0x2b,0x17,0x6b,0xd4,0x44,0x1d,0x45,0xc9,0x18,0x6e,0x45,0xd5,0xe5,0x77,0x54,
|
||||
0x36,0x8f,0xcc,0xdc,0x34,0x9e,0x3b,0x74,0x72,0x0a,0xf8,0xf5,0x73,0x9e,0xea,0x4a,
|
||||
0x51,0xc4,0xb9,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,
|
||||
0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,
|
||||
0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,
|
||||
0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,
|
||||
0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,
|
||||
0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,
|
||||
0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,
|
||||
0x12,0x94,0xa5,0x11,0x29,0x4a,0x51,0x12,0x94,0xa5,0x11,0x7f,0xff,0xd9};
|
|
@ -0,0 +1,318 @@
|
|||
//
|
||||
// ncc1701
|
||||
// Data size = 4912 bytes
|
||||
//
|
||||
// JFIF, Compression=JPEG, Size: 240 x 77, 24-Bpp
|
||||
//
|
||||
// for non-Arduino builds...
|
||||
#ifndef PROGMEM
|
||||
#define PROGMEM
|
||||
#endif
|
||||
const uint8_t ncc1701[] PROGMEM = {
|
||||
0xff,0xd8,0xff,0xe0,0x00,0x10,0x4a,0x46,0x49,0x46,0x00,0x01,0x01,0x01,0x00,0x48,
|
||||
0x00,0x48,0x00,0x00,0xff,0xdb,0x00,0x43,0x00,0x03,0x02,0x02,0x03,0x02,0x02,0x03,
|
||||
0x03,0x03,0x03,0x04,0x03,0x03,0x04,0x05,0x08,0x05,0x05,0x04,0x04,0x05,0x0a,0x07,
|
||||
0x07,0x06,0x08,0x0c,0x0a,0x0c,0x0c,0x0b,0x0a,0x0b,0x0b,0x0d,0x0e,0x12,0x10,0x0d,
|
||||
0x0e,0x11,0x0e,0x0b,0x0b,0x10,0x16,0x10,0x11,0x13,0x14,0x15,0x15,0x15,0x0c,0x0f,
|
||||
0x17,0x18,0x16,0x14,0x18,0x12,0x14,0x15,0x14,0xff,0xdb,0x00,0x43,0x01,0x03,0x04,
|
||||
0x04,0x05,0x04,0x05,0x09,0x05,0x05,0x09,0x14,0x0d,0x0b,0x0d,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,
|
||||
0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0x14,0xff,0xc0,
|
||||
0x00,0x11,0x08,0x00,0x4d,0x00,0xf0,0x03,0x01,0x22,0x00,0x02,0x11,0x01,0x03,0x11,
|
||||
0x01,0xff,0xc4,0x00,0x1d,0x00,0x00,0x01,0x05,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x06,0x07,0x08,0x09,0x04,0x03,0x02,0x0a,
|
||||
0xff,0xc4,0x00,0x40,0x10,0x00,0x01,0x03,0x03,0x02,0x03,0x06,0x03,0x05,0x04,0x09,
|
||||
0x05,0x01,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x00,0x05,0x11,0x06,0x07,0x12,0x21,
|
||||
0x31,0x08,0x13,0x41,0x51,0x61,0x71,0x09,0x22,0x81,0x14,0x32,0x91,0xa1,0xb1,0x15,
|
||||
0x42,0x52,0x62,0x16,0x23,0x24,0x53,0x63,0x72,0x73,0x82,0xb2,0x17,0x33,0x92,0xa2,
|
||||
0xd1,0xf0,0xff,0xc4,0x00,0x1a,0x01,0x00,0x03,0x01,0x01,0x01,0x01,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,0x03,0x04,0x05,0x06,0xff,0xc4,
|
||||
0x00,0x23,0x11,0x00,0x02,0x02,0x01,0x05,0x01,0x00,0x02,0x03,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x01,0x02,0x11,0x12,0x03,0x21,0x31,0x41,0x51,0x04,0x05,0x13,
|
||||
0x22,0x32,0x61,0xff,0xda,0x00,0x0c,0x03,0x01,0x00,0x02,0x11,0x03,0x11,0x00,0x3f,
|
||||
0x00,0xd5,0x3a,0x2b,0x2c,0xb5,0xcf,0x6f,0x7d,0xd3,0xb4,0x6f,0x56,0xa3,0x65,0x1a,
|
||||
0xa2,0xd5,0x67,0xb0,0x5b,0xae,0x92,0x21,0x26,0xcf,0x22,0x02,0x56,0xa8,0xe1,0xb5,
|
||||
0x94,0x29,0x0e,0x2f,0xf7,0xd4,0x38,0x4e,0x4e,0x71,0x9e,0x94,0xa9,0x74,0xed,0xfb,
|
||||
0x3e,0xee,0xdb,0xc1,0x1a,0xd1,0x49,0xe2,0xf9,0x55,0xf6,0x76,0x92,0xd8,0x48,0xf4,
|
||||
0xc5,0x5a,0x8d,0x91,0x97,0xf8,0x69,0xc1,0x21,0x23,0x24,0xe0,0x79,0x9a,0x4e,0xb8,
|
||||
0x6a,0x5b,0x4d,0xa5,0x95,0x3b,0x36,0xe7,0x12,0x2b,0x69,0xea,0xa7,0x9f,0x4a,0x40,
|
||||
0xe7,0x8f,0x13,0x59,0x3d,0x74,0xed,0x71,0x2a,0xf8,0x15,0x19,0x7a,0xaa,0xe1,0x29,
|
||||
0xb0,0x4a,0x80,0x0f,0x9c,0x67,0xd8,0x54,0x69,0x72,0xdc,0xa9,0xbb,0x85,0xaa,0x58,
|
||||
0xb6,0x37,0x71,0x90,0xa8,0xe9,0x52,0x78,0xbb,0xd7,0x4f,0xcd,0x9c,0xa9,0xc5,0x7b,
|
||||
0xf0,0x80,0x91,0xea,0xb2,0x7c,0x05,0x0e,0x2a,0x2a,0xdb,0x1c,0x5c,0xa5,0x25,0x14,
|
||||
0xb7,0x66,0xd0,0x23,0x5d,0x58,0x1e,0x68,0xba,0xcd,0xd2,0x3c,0x96,0x87,0x55,0xb0,
|
||||
0xae,0xf0,0x0f,0x72,0x33,0x4a,0xb0,0x6e,0x71,0x2e,0x6d,0x97,0x22,0x49,0x6a,0x4a,
|
||||
0x07,0x52,0xd2,0xc2,0xb1,0xef,0xe5,0x59,0x85,0x62,0xd7,0x57,0x6d,0x31,0x6f,0x61,
|
||||
0x88,0xb3,0x1c,0x8c,0xd0,0x48,0x09,0x6a,0x2b,0x9c,0x28,0x23,0xa6,0x08,0x14,0xbb,
|
||||
0xa1,0xb7,0x73,0x50,0x6d,0xfe,0xa9,0x62,0xfb,0x0e,0x5a,0xd6,0x90,0xa1,0xf6,0xa8,
|
||||
0xae,0x2f,0xfa,0xb9,0x0d,0xe7,0xe6,0x0a,0xf5,0xc7,0x43,0xd4,0x57,0x04,0x3e,0x87,
|
||||
0x39,0xe3,0x8e,0xde,0x9e,0xcc,0xff,0x00,0x1e,0xe3,0x06,0xf2,0xdd,0x75,0x46,0x94,
|
||||
0xd4,0x4d,0xbe,0x1d,0xa7,0x74,0x46,0xc1,0x47,0x57,0xf4,0x8e,0x54,0x97,0xe7,0xf7,
|
||||
0x1f,0x69,0x16,0xeb,0x7b,0x05,0xe7,0xcb,0x5c,0x5c,0x3c,0x64,0x0e,0x41,0x39,0xe5,
|
||||
0x92,0x6a,0x4e,0xb4,0x5c,0x9b,0xbc,0xda,0xa1,0x4f,0x64,0x29,0x2c,0xca,0x61,0x0f,
|
||||
0xa0,0x2f,0xa8,0x4a,0x92,0x14,0x33,0xeb,0x83,0x55,0xb3,0xb6,0x8f,0x64,0x16,0xfb,
|
||||
0x43,0x69,0xe5,0x5d,0x74,0xf3,0xa9,0xb6,0xeb,0x78,0xcd,0xa1,0x94,0x48,0x2e,0x14,
|
||||
0x22,0x5c,0x74,0x92,0xae,0xe1,0x67,0xa0,0xe6,0x72,0x0e,0x3a,0xfa,0x1a,0xed,0x47,
|
||||
0x8e,0xef,0xa2,0x3c,0x87,0xf1,0x5d,0xd0,0x37,0x1b,0xdc,0x78,0x4c,0x69,0x2d,0x42,
|
||||
0x86,0x1d,0x59,0x4f,0xda,0x5f,0x4b,0x48,0x03,0xc8,0xf0,0xf1,0x13,0x52,0x2a,0x7b,
|
||||
0x76,0xe8,0x76,0x16,0x15,0x36,0xf1,0x62,0x8a,0xc9,0x03,0x90,0xb8,0x95,0x2c,0x79,
|
||||
0xe4,0x70,0x01,0xf9,0xd6,0x7c,0x5c,0x3e,0x17,0xbb,0xbd,0x76,0x9a,0xa9,0x32,0x74,
|
||||
0xeb,0xfc,0x44,0xf3,0x4a,0x2e,0xd1,0x42,0x4f,0xfe,0xf5,0xf2,0x9f,0x85,0x8e,0xe7,
|
||||
0x05,0x64,0xe8,0xf5,0xaf,0x3f,0xc5,0x79,0x8c,0x3f,0x45,0xd5,0xac,0x48,0xdc,0xbe,
|
||||
0x37,0x0f,0x88,0xee,0xd5,0x5b,0xd4,0xb4,0x1d,0x49,0x09,0xf5,0x85,0x72,0xee,0x3e,
|
||||
0x6e,0x5e,0x5f,0x7b,0xf3,0xa6,0xfb,0x7f,0x12,0x8d,0x03,0x32,0x52,0x1a,0x8d,0x70,
|
||||
0x95,0x21,0xd5,0xa4,0x84,0xa1,0xa6,0x40,0x41,0xc7,0x89,0x51,0x49,0xc7,0xe3,0x55,
|
||||
0x1d,0x9f,0x87,0x06,0xf3,0x45,0x42,0x5a,0x6b,0x4b,0x0e,0xe9,0x09,0x09,0x40,0xfd,
|
||||
0xb1,0x1c,0x60,0x0f,0xf7,0xd3,0x23,0x78,0x3b,0x2d,0xee,0x3e,0xc8,0x59,0x61,0xcf,
|
||||
0xd4,0x56,0x25,0x43,0x8f,0x31,0xd3,0x1d,0x90,0xdd,0xd1,0x32,0x14,0x55,0x8e,0x25,
|
||||
0x7c,0x89,0x59,0xe5,0x81,0xcc,0xe3,0x1d,0x3c,0xc5,0x52,0x51,0x25,0xe4,0x5e,0xb9,
|
||||
0x5d,0xbe,0x6c,0xf7,0x04,0xb4,0x44,0x47,0xca,0x51,0xf3,0x25,0x62,0x62,0x9b,0xe2,
|
||||
0xf7,0xe0,0xc6,0x7e,0xb5,0x0e,0xeb,0x8e,0xda,0x2b,0xd7,0x9b,0x8b,0x21,0xa4,0x5b,
|
||||
0xdb,0x72,0xdf,0x67,0x8a,0xca,0x61,0x43,0x7d,0xe5,0x29,0x0f,0x4e,0x7d,0x44,0x77,
|
||||
0xce,0xf5,0xe2,0x4b,0x68,0x4f,0xca,0x8e,0x9c,0x4a,0xc9,0x04,0xa4,0x62,0xb3,0xed,
|
||||
0xa7,0x67,0xdd,0xd2,0xde,0x0d,0x38,0xab,0xc6,0x8d,0xd2,0x53,0x6f,0x36,0xa6,0x9e,
|
||||
0x54,0x55,0x4b,0x44,0x86,0x5b,0x47,0x7a,0x8f,0xbc,0x91,0xc6,0xe2,0x49,0xc6,0x7c,
|
||||
0x05,0x3a,0xae,0x7d,0x8d,0x77,0x77,0x44,0xc0,0x73,0x53,0x5c,0xf4,0xa3,0x36,0x70,
|
||||
0x90,0x95,0x2c,0x4a,0xbc,0xc6,0xef,0x57,0xc1,0x92,0x02,0x51,0xde,0x7c,0xca,0xeb,
|
||||
0x80,0x32,0x4d,0x14,0xba,0x1a,0x6d,0x34,0xe4,0x4d,0x32,0x37,0x09,0xf9,0x17,0x98,
|
||||
0xd3,0xad,0x89,0x5d,0xa2,0x60,0x56,0x59,0x76,0x1b,0x84,0x38,0x95,0x79,0xf1,0x0e,
|
||||
0x64,0x9f,0x1f,0x3a,0xb8,0x9b,0x5f,0xda,0x21,0x2e,0x6d,0x4a,0xae,0x5a,0xb0,0x3d,
|
||||
0xfb,0x7e,0x0a,0x9c,0x60,0xb2,0xdc,0x65,0x87,0x26,0xf0,0xa4,0x14,0x2d,0x29,0xc7,
|
||||
0xef,0x03,0x83,0xe1,0x90,0x6b,0x3d,0xf4,0x9e,0xe0,0xea,0x7d,0x1f,0x2a,0x35,0xd2,
|
||||
0x26,0x9c,0x96,0xd4,0xb0,0x8e,0x5c,0x6c,0xa5,0x4a,0x46,0x7a,0x8c,0x78,0x7e,0x19,
|
||||
0xa5,0xbd,0x6b,0xda,0xf3,0x77,0xae,0x31,0x5e,0x8f,0x06,0xcf,0x2d,0xb0,0xe8,0x21,
|
||||
0x45,0x0c,0x84,0xf5,0xf5,0x3e,0xc2,0xb0,0xd3,0xd0,0x92,0x79,0x49,0xf3,0xd1,0xea,
|
||||
0x7d,0x9f,0x6e,0x9e,0xb2,0x5a,0x70,0x82,0x55,0xd9,0xe1,0xda,0xb3,0xb5,0xe6,0xe5,
|
||||
0x6b,0x2b,0xf1,0x6f,0x4d,0xdb,0xee,0x96,0x48,0x2c,0x8e,0x14,0xa2,0x52,0xd2,0x86,
|
||||
0xc1,0x1e,0x21,0x23,0x1f,0x89,0xc9,0xa8,0x0b,0x47,0x76,0xbb,0xdf,0xad,0xb3,0xd4,
|
||||
0x0c,0x5c,0xe2,0x6b,0x34,0x84,0x21,0xde,0xf1,0xdb,0x6c,0xb7,0x9b,0x5c,0x47,0xc7,
|
||||
0x8a,0x56,0xdf,0xaf,0x98,0xc1,0xf5,0xa6,0xce,0xb0,0xb5,0xee,0x7e,0xb8,0x94,0xeb,
|
||||
0xb3,0xad,0xf2,0xd6,0x56,0x4a,0x88,0x53,0xcd,0xa0,0x7f,0xca,0x9a,0xe7,0x63,0xf5,
|
||||
0x8c,0x97,0x56,0xa7,0x2d,0xcc,0x45,0x49,0x51,0x20,0x3d,0x2d,0x2a,0xe1,0x19,0xe4,
|
||||
0x39,0x12,0x6b,0xa1,0xa5,0xc2,0x3c,0xa4,0xfd,0x35,0xbb,0x63,0xbe,0x27,0xdb,0x69,
|
||||
0xb8,0x8c,0xd9,0xad,0x9a,0xad,0xd3,0xa4,0xb5,0x34,0xc2,0x86,0x1c,0x4a,0xb2,0xe4,
|
||||
0x12,0xe9,0x38,0xf9,0x5e,0xc0,0xc2,0x49,0xfe,0x20,0x31,0x9a,0xb9,0x48,0x5a,0x5d,
|
||||
0x42,0x56,0x85,0x05,0xa1,0x43,0x21,0x49,0x39,0x04,0x79,0x8a,0xfc,0xe9,0x7f,0xd0,
|
||||
0x8b,0xe1,0x6b,0x8a,0x7d,0xce,0x04,0x56,0x5b,0x19,0x21,0x2b,0x5b,0x9c,0x3f,0x4e,
|
||||
0x11,0xe7,0x56,0xf7,0x6a,0x7b,0x6d,0xee,0x26,0xd6,0xe8,0x4b,0x46,0x91,0x6f,0x53,
|
||||
0x37,0xa8,0x51,0x6d,0x68,0x47,0x8d,0x21,0x56,0xd0,0xe3,0x81,0xb1,0xf7,0x52,0xa5,
|
||||
0xa8,0x92,0xae,0x11,0xcb,0x9f,0x30,0x00,0x15,0x38,0x37,0xc1,0x59,0xa3,0x5c,0xa8,
|
||||
0xac,0xd7,0x8b,0xf1,0x26,0xdc,0x88,0x6e,0x23,0xbc,0xd3,0x16,0x8b,0x82,0x70,0x12,
|
||||
0x43,0xa5,0x4d,0x0c,0xff,0x00,0x17,0x25,0x79,0x53,0xd2,0xd5,0xf1,0x34,0xb8,0x96,
|
||||
0x12,0x2e,0x1b,0x7f,0x1c,0xba,0x4f,0x35,0x47,0xba,0x10,0x91,0xf4,0x2d,0x9f,0xd6,
|
||||
0xa7,0x09,0x0f,0x34,0x5f,0x4a,0x2a,0x87,0x5c,0xbe,0x23,0xd7,0x79,0x89,0x79,0x36,
|
||||
0xcd,0x2f,0x02,0x0a,0xd4,0x9c,0x36,0x66,0x3a,0xb7,0x78,0x4f,0x99,0xe1,0x23,0x3f,
|
||||
0x80,0xaf,0x58,0x3f,0x11,0xab,0x83,0xa9,0xee,0x9c,0xb3,0x59,0x97,0x25,0xbc,0x25,
|
||||
0xd0,0x97,0xdc,0x4f,0xcd,0xec,0x7a,0x51,0x84,0xbc,0x1e,0x51,0xf4,0xbd,0x94,0x55,
|
||||
0x2a,0x8f,0xdb,0xf6,0xed,0x24,0x9e,0x0d,0x39,0x6b,0x5e,0x3a,0xf0,0xc9,0x59,0xae,
|
||||
0x94,0xf6,0xf0,0xbc,0xf1,0x27,0x3a,0x6a,0xdf,0x8f,0x1c,0x3c,0xba,0x7f,0xae,0x5e,
|
||||
0x13,0x9c,0x4b,0x99,0x45,0x54,0xf8,0xbd,0xb9,0xdc,0x9a,0xf2,0x1a,0x6b,0x48,0x27,
|
||||
0x8d,0x47,0x1f,0x3d,0xc5,0x28,0x1f,0x8a,0x92,0x00,0xfa,0xd2,0xa0,0xed,0xc7,0x69,
|
||||
0x8f,0x29,0x6c,0xcc,0xd2,0xd2,0xd8,0xe1,0x1f,0x79,0x99,0x8d,0xbb,0xcf,0xcb,0x90,
|
||||
0x03,0x1e,0xa0,0xd2,0xc2,0x5e,0x0f,0x38,0x96,0x72,0x8a,0x80,0xed,0xbd,0xb4,0xf6,
|
||||
0xfe,0x67,0x00,0x92,0xdd,0xd6,0x02,0x8e,0x02,0x8b,0xb1,0x92,0xa4,0x8c,0xf5,0xe6,
|
||||
0x95,0x13,0x81,0xed,0x52,0x86,0x90,0xdd,0x7d,0x21,0xaf,0x55,0xc1,0x61,0xbf,0xc3,
|
||||
0xb8,0x3d,0x8c,0xf7,0x09,0x5f,0x03,0xb8,0xff,0x00,0x22,0xb0,0xaf,0xca,0x93,0x8b,
|
||||
0x5c,0xa2,0x93,0x4f,0x82,0xa9,0xf6,0x87,0xf8,0x68,0xe9,0xfd,0xd4,0xd6,0x37,0x3d,
|
||||
0x53,0xa5,0xee,0x31,0xec,0x57,0x0b,0xa3,0xcb,0x95,0x36,0x14,0xd6,0x4b,0xac,0x38,
|
||||
0xfa,0xce,0x56,0xea,0x54,0x0e,0x50,0x54,0x79,0x90,0x01,0x19,0xe7,0xca,0xab,0xad,
|
||||
0xfb,0xe1,0x55,0xb8,0x36,0xe0,0xe7,0xd9,0x53,0x62,0xbd,0x80,0x0f,0x09,0x62,0x62,
|
||||
0x9b,0x51,0xc7,0x41,0xfd,0x60,0x4e,0x0f,0xd6,0xb5,0x8a,0x8a,0x2f,0xa1,0xa6,0xd3,
|
||||
0x4e,0x2d,0xa6,0x8c,0x4d,0xba,0x76,0x16,0xdd,0x1d,0x21,0x24,0xba,0x8d,0xbd,0xba,
|
||||
0x2d,0x64,0x60,0x2e,0x08,0xfb,0x42,0x79,0xf2,0xe7,0xc2,0xa3,0x8a,0x61,0xc4,0xd2,
|
||||
0x3a,0xa3,0x6e,0x35,0x93,0x73,0x2f,0x7a,0x76,0xe1,0x6b,0x0c,0xab,0x81,0xc6,0xe6,
|
||||
0xc6,0x5b,0x7c,0xf0,0x46,0x32,0x46,0x39,0xa4,0x9f,0xc0,0x56,0xf7,0x57,0x2d,0xc2,
|
||||
0xd7,0x0e,0xec,0xc8,0x66,0x74,0x46,0x26,0x34,0x0e,0x7b,0xb9,0x0d,0xa5,0x69,0xcf,
|
||||
0xb1,0x14,0x95,0x25,0x55,0xb0,0xdc,0xa7,0x29,0x29,0xb9,0x36,0xd7,0xbb,0x99,0x3f,
|
||||
0x66,0xb8,0xc2,0xd4,0x76,0xc6,0x54,0xc3,0x8c,0x92,0x47,0xca,0x19,0x1c,0xc7,0xf9,
|
||||
0xbc,0xa9,0xd5,0xa4,0x34,0x74,0x9d,0x6f,0xa9,0xed,0xda,0x66,0xd6,0xeb,0x6e,0xdc,
|
||||
0xa7,0x28,0xf0,0x24,0x91,0xf2,0xb6,0x92,0x38,0xdc,0x50,0xeb,0xc2,0x07,0x3a,0x92,
|
||||
0x3b,0x54,0xfc,0x3b,0xd7,0x74,0x5c,0xfd,0x55,0xb4,0x6f,0xae,0xcf,0x70,0x73,0x89,
|
||||
0xe9,0x56,0x16,0x5d,0x2d,0xb6,0xe9,0xea,0x54,0xc1,0xe8,0x95,0x1f,0xe0,0x3c,0x8f,
|
||||
0x86,0x2a,0x95,0xec,0x47,0x66,0x6d,0xe6,0xbc,0xeb,0xbf,0xdb,0xf6,0x19,0x57,0x2d,
|
||||
0x33,0x78,0xb5,0xc8,0x52,0x11,0x7e,0xbb,0x3c,0xb6,0x92,0xca,0x81,0xc2,0x90,0x94,
|
||||
0x9f,0x9d,0x44,0x10,0x41,0x00,0x11,0xe0,0x48,0xae,0x58,0xfc,0xdf,0xca,0xd3,0xb5,
|
||||
0xe1,0xef,0x4b,0xf3,0x2f,0xf5,0xe2,0xe0,0x94,0xaa,0xac,0xdc,0x0b,0x3d,0xb5,0x16,
|
||||
0x6b,0x44,0x1b,0x7b,0x6a,0x2b,0x6e,0x2b,0x08,0x61,0x2a,0x57,0x52,0x12,0x90,0x90,
|
||||
0x7f,0x2a,0xeb,0x52,0x82,0x41,0x24,0x80,0x07,0x52,0x6a,0x09,0xb5,0x6a,0x5d,0x64,
|
||||
0x34,0x75,0xae,0xd9,0x7a,0xd4,0x31,0x9d,0xbb,0x30,0xc2,0x1b,0x99,0x73,0xb7,0xb1,
|
||||
0xdd,0x2a,0x4a,0xc0,0xe6,0xac,0x12,0x78,0x73,0xe9,0x49,0x93,0xe3,0x5c,0xae,0x4b,
|
||||
0xef,0x24,0xce,0x97,0x2d,0x58,0xe1,0x0b,0x5b,0xe5,0x39,0x1e,0xc2,0xbb,0xd6,0x93,
|
||||
0x7c,0x9f,0x36,0xf5,0x11,0x36,0xdd,0x75,0xd6,0x9e,0xb2,0x8c,0xcd,0xbc,0x43,0x63,
|
||||
0xd0,0xba,0x09,0xfc,0x05,0x34,0x6e,0x5d,0xa1,0x34,0x8c,0x0e,0x30,0xd3,0xf2,0xa6,
|
||||
0xad,0x3d,0x03,0x11,0xd5,0x85,0x7b,0x28,0xe0,0x54,0x50,0xe5,0x85,0xb6,0x1c,0x19,
|
||||
0x86,0xda,0x41,0xf1,0x48,0xfd,0x4d,0x76,0x31,0xa7,0xe1,0x05,0x25,0x6f,0xa5,0xa0,
|
||||
0x8f,0xe1,0x51,0xe5,0x8f,0xa5,0x68,0xb4,0x57,0x6c,0x87,0xa8,0xfa,0x16,0xa7,0x76,
|
||||
0xa5,0xef,0x90,0xeb,0x76,0xbd,0x33,0x29,0xd9,0x05,0x24,0x37,0xdf,0x38,0x30,0x15,
|
||||
0xfb,0xa4,0x84,0xe7,0x97,0xa6,0x6a,0xad,0xee,0x26,0xc5,0x6b,0x0d,0xfa,0xd4,0xcd,
|
||||
0xdd,0xf5,0x6d,0xd5,0x57,0x15,0xb4,0xf2,0xdd,0x8a,0xc4,0xf6,0xdd,0xee,0xa2,0x71,
|
||||
0x63,0x21,0x96,0x92,0xe8,0x08,0x18,0x03,0xdf,0x1c,0xce,0x6a,0xd1,0x31,0x36,0xc7,
|
||||
0x68,0xc0,0x8e,0xdb,0x09,0x23,0xc7,0x19,0x35,0xe8,0xf6,0xb6,0xb4,0x32,0x14,0xa2,
|
||||
0xf2,0x42,0xfc,0xea,0xd4,0x12,0xe1,0x12,0xe6,0xd9,0x18,0xed,0x46,0xd6,0xcd,0xd9,
|
||||
0x2d,0x22,0x2c,0x76,0x1b,0xc4,0xcb,0x45,0xb5,0x4a,0x5b,0xce,0xc5,0x8e,0xea,0x92,
|
||||
0xd2,0x9d,0x51,0xca,0xd6,0x02,0x8a,0x94,0x92,0x7d,0x15,0x49,0x1a,0xa6,0xd9,0x1d,
|
||||
0xc7,0x9c,0x71,0xf5,0xb9,0x31,0xf5,0x73,0x5b,0xaf,0x2c,0xa8,0x9f,0x52,0x4d,0x3c,
|
||||
0xf5,0x16,0xbb,0x87,0x27,0x88,0x21,0xf4,0x91,0x51,0xd5,0xe6,0xf4,0xdc,0xc2,0xae,
|
||||
0xed,0xc0,0xa1,0xe7,0x4d,0x40,0x97,0x21,0x87,0x7c,0x8e,0xc3,0x3c,0x5c,0x08,0x09,
|
||||
0x1e,0x43,0xa5,0x31,0xee,0x6f,0x36,0xd8,0x21,0x29,0x19,0xf1,0xe5,0x4f,0x6b,0xcb,
|
||||
0x0e,0x49,0x51,0x3c,0x49,0x03,0xde,0x9a,0x33,0xac,0xea,0x71,0x44,0x95,0xa7,0x1e,
|
||||
0xf4,0xe8,0x56,0x32,0x2e,0xb3,0x9c,0x42,0x95,0xc0,0x9e,0x25,0x63,0x09,0x40,0x20,
|
||||
0x64,0xf9,0x53,0x26,0xe1,0x71,0xbb,0xcd,0x9c,0x88,0xd8,0x10,0xf8,0x82,0xb0,0x09,
|
||||
0x07,0x8b,0xeb,0xed,0xfc,0x39,0xa7,0x3e,0xbe,0xdb,0x39,0xba,0x9e,0xf5,0x64,0x53,
|
||||
0x72,0x12,0xd5,0xba,0x3a,0xdc,0x54,0xa2,0x97,0x8b,0x6b,0xc1,0x03,0x87,0x87,0x1d,
|
||||
0x4e,0x45,0x23,0xbb,0xb5,0x37,0x5f,0xe9,0x55,0x9e,0x7b,0x97,0xa6,0xa7,0x43,0xb7,
|
||||
0x95,0xe0,0xba,0xde,0x1f,0x29,0x50,0xfb,0xa4,0x8e,0x4a,0xe9,0xd7,0x95,0x4d,0x31,
|
||||
0xec,0x21,0xbd,0x6e,0x6a,0xc7,0x0d,0x72,0xa6,0x4a,0x71,0xb6,0x9a,0x1c,0x4e,0x2b,
|
||||
0xbd,0x52,0x5b,0x03,0xa6,0x4f,0x32,0x6b,0x88,0xdf,0x2d,0xe5,0x02,0x42,0x1c,0x52,
|
||||
0x9a,0x73,0x07,0xbf,0x43,0x2a,0x29,0x20,0xf4,0xca,0xb1,0x52,0xc4,0xab,0x03,0x0e,
|
||||
0xa1,0x6d,0x38,0xd2,0x56,0xda,0xc7,0x09,0x0b,0x19,0x04,0x79,0x1a,0x6e,0x5b,0x74,
|
||||
0x13,0x36,0x10,0xf3,0x10,0x6e,0x12,0x23,0xc5,0x5a,0xb8,0x93,0x14,0x84,0xb8,0x86,
|
||||
0xfd,0x11,0xc4,0x09,0x03,0xd2,0x96,0x3b,0x8d,0x31,0xb5,0x3d,0x52,0xe1,0xc2,0x5b,
|
||||
0xcc,0xc4,0x5c,0xe5,0x80,0x08,0x65,0xb2,0x02,0x95,0xed,0x9e,0x54,0x8d,0x6d,0xd4,
|
||||
0x12,0x6e,0x0f,0x04,0x2a,0x13,0x71,0x95,0x9c,0x29,0xb7,0x1f,0xe1,0x75,0x1e,0xe9,
|
||||
0x20,0x7e,0x44,0xd4,0x93,0x6f,0xb0,0x45,0xb5,0xf7,0xc3,0xbe,0x93,0x20,0xba,0xae,
|
||||
0x35,0x17,0xd6,0x55,0x83,0xfc,0xa3,0xc0,0x7a,0x57,0xa4,0x88,0xf6,0xd7,0x14,0x92,
|
||||
0xf4,0x56,0xde,0x52,0x7a,0x17,0x10,0x0e,0x3d,0xa8,0x61,0x63,0x37,0xbc,0x4d,0xd1,
|
||||
0x2e,0xc5,0x85,0x21,0x0e,0x4c,0x68,0x82,0xb4,0x21,0xdc,0x60,0x7a,0x9c,0x1f,0xd2,
|
||||
0x95,0x2d,0x5a,0x14,0x45,0x8e,0x1a,0x69,0xa8,0xe9,0x6c,0xfc,0xca,0x41,0x6b,0x04,
|
||||
0xa8,0xf5,0xf9,0x93,0x8f,0xd2,0x9c,0x91,0xdc,0x84,0xc8,0xc3,0x30,0xd9,0x68,0xff,
|
||||
0x00,0x2a,0x42,0x6b,0xb1,0x2f,0x36,0xae,0x7c,0x21,0x20,0x78,0xf1,0x60,0x53,0xb1,
|
||||
0x1c,0x10,0x34,0xb3,0x4d,0xa9,0xb5,0xc8,0xc3,0x65,0xa5,0x85,0xa5,0x0d,0xa8,0x29,
|
||||
0x3c,0xbd,0x70,0x0d,0x3a,0x59,0x9e,0xdb,0x43,0x09,0xe2,0x5f,0xb8,0xe5,0x4d,0xb9,
|
||||
0x7a,0xae,0xcb,0x6e,0x04,0x49,0xba,0xc3,0x60,0x8e,0xa8,0x5b,0xe9,0xe2,0xfc,0x33,
|
||||
0x9a,0x48,0x97,0xbc,0xda,0x62,0x08,0xf9,0x25,0x3b,0x2d,0x63,0xf7,0x63,0xc7,0x51,
|
||||
0xfc,0xd5,0x81,0xf9,0xd5,0x58,0x89,0x05,0x13,0x14,0x47,0xdd,0x56,0x3d,0xab,0xec,
|
||||
0xc8,0x56,0x32,0x52,0xa3,0xee,0x2a,0x1a,0xb9,0xf6,0x89,0x4b,0x43,0x86,0x05,0x99,
|
||||
0xd5,0xf9,0x2e,0x4b,0xa1,0x03,0xff,0x00,0x14,0xe7,0xf5,0xa6,0x8d,0xd3,0x7d,0x35,
|
||||
0x75,0xcd,0xc0,0xdc,0x47,0x58,0x82,0x5c,0x3c,0x09,0x6e,0x33,0x3c,0x4a,0x24,0xf4,
|
||||
0x00,0xab,0x27,0x3e,0xd4,0xc2,0x8b,0x11,0x32,0xe0,0xcc,0x46,0x94,0xe4,0x82,0x19,
|
||||
0x6c,0x75,0x5b,0x98,0x4a,0x7f,0x13,0x5c,0x7b,0x75,0xaa,0xae,0x3a,0xff,0x00,0x72,
|
||||
0x6d,0x5a,0x6f,0x6e,0xa3,0x3d,0x7b,0xd4,0xaa,0x79,0x2b,0x0f,0xc6,0x25,0x2c,0x42,
|
||||
0x4a,0x48,0x2a,0x79,0xd7,0x47,0x24,0xa5,0x3e,0x9c,0xc9,0xe4,0x3a,0xd4,0x17,0xa2,
|
||||
0xf6,0x77,0x72,0xb7,0xff,0x00,0x51,0xa2,0xd1,0x69,0x6a,0x5d,0xf6,0xe4,0xb5,0x61,
|
||||
0xc4,0x38,0xe9,0x53,0x71,0xd3,0xc7,0xc2,0x56,0xea,0x87,0xca,0xda,0x41,0x0a,0xeb,
|
||||
0xcc,0xf0,0xf2,0x07,0x23,0x3a,0xf5,0xd8,0xfb,0xb2,0x9d,0xab,0xb2,0xde,0xdf,0x2a,
|
||||
0xdc,0x97,0x5b,0xb9,0x6a,0x5b,0x82,0x83,0xd7,0x4b,0x9a,0x51,0x8e,0xf1,0x5e,0x0d,
|
||||
0xa3,0xc4,0x36,0x9f,0x0f,0x3e,0xa6,0xb3,0x9c,0xf1,0x5b,0x1a,0x46,0x17,0xc9,0x3e,
|
||||
0x51,0x45,0x15,0xc6,0x74,0x85,0x14,0x51,0x40,0x05,0x55,0xfe,0xd0,0xba,0xf9,0xce,
|
||||
0xcf,0x97,0x01,0x7c,0xbc,0x69,0x89,0xd7,0xbd,0x1d,0x35,0xc2,0x57,0x76,0xb5,0x94,
|
||||
0x95,0xc2,0x75,0x47,0xee,0x3c,0xd9,0xc7,0xca,0x7c,0x16,0x0f,0x3e,0x98,0xcf,0x5b,
|
||||
0x41,0x5c,0x37,0xcb,0x24,0x0d,0x4b,0x68,0x97,0x6b,0xba,0x44,0x6a,0x7d,0xba,0x5b,
|
||||
0x6a,0x65,0xf8,0xcf,0xa4,0x29,0x0e,0x20,0x8c,0x10,0x41,0xaa,0x8c,0xb1,0x76,0x4c,
|
||||
0x96,0x48,0xa5,0x56,0xee,0xd9,0x3b,0x59,0xa9,0xec,0xb2,0x58,0x6f,0x50,0x0d,0x2d,
|
||||
0x74,0x79,0xa5,0xa1,0xa7,0x2e,0x30,0x96,0x52,0xc2,0x88,0x21,0x0b,0x3c,0x40,0x05,
|
||||
0x63,0x92,0xb1,0x9c,0x78,0x52,0x96,0xda,0x6e,0x76,0x90,0xb6,0xda,0xdd,0x8d,0x2b,
|
||||
0x77,0xad,0x5a,0xad,0xe7,0x5c,0xef,0x10,0xfc,0x97,0x1b,0x65,0x4d,0x8e,0x10,0x0a,
|
||||
0x40,0x07,0x98,0xc8,0x27,0x9f,0x4c,0xe3,0xa5,0x32,0x77,0xa7,0xe1,0x76,0x65,0x4b,
|
||||
0x95,0x73,0xdb,0x6b,0xf2,0x18,0x4a,0xfe,0x64,0xd9,0x6f,0x0a,0x51,0x4a,0x7f,0x95,
|
||||
0x0f,0x0c,0x90,0x3c,0x82,0x81,0xf7,0xaa,0x21,0xaa,0xf6,0xf2,0xf9,0xa4,0x2e,0x37,
|
||||
0x08,0x17,0x6b,0x7f,0x03,0xb0,0x5e,0x5c,0x77,0xd4,0x82,0x1c,0x42,0x56,0x95,0x70,
|
||||
0xab,0x98,0xf0,0xc8,0xeb,0x5d,0x29,0xa9,0x3b,0x39,0x9c,0x69,0xee,0x6a,0x45,0xcf,
|
||||
0x77,0xf4,0x4c,0x56,0xcf,0x1e,0xad,0xb4,0xab,0x87,0xf8,0x25,0x20,0x9f,0xc8,0xd3,
|
||||
0x06,0xe7,0xda,0x0f,0x44,0x7d,0xa1,0x48,0x4d,0xcd,0x0e,0x0c,0xff,0x00,0xdc,0x4f,
|
||||
0x43,0xf5,0xac,0xcc,0x30,0x1b,0xea,0x1b,0x4e,0x09,0xea,0x12,0x2b,0xe5,0x71,0x50,
|
||||
0x79,0x84,0x0e,0x5e,0x95,0xa5,0x3e,0x84,0x69,0x2a,0xf7,0xcf,0x44,0xbc,0x33,0xfb,
|
||||
0x4e,0x3a,0x4f,0xf3,0xba,0x69,0x12,0xe5,0xbc,0xfa,0x31,0xc2,0x4a,0x6e,0x70,0xb0,
|
||||
0x7a,0x9e,0xfb,0x15,0x9f,0x08,0x8e,0x85,0x27,0x9a,0x46,0x7d,0x2b,0xe7,0xec,0x8d,
|
||||
0x92,0x07,0x00,0x3f,0x4a,0x6a,0xc5,0x45,0xf3,0x7f,0x72,0xf4,0xb4,0xb1,0xf2,0x5d,
|
||||
0xe0,0xe0,0xf9,0xc8,0x02,0x93,0xe4,0xeb,0xab,0x09,0x4f,0xcb,0x78,0x82,0x07,0xa4,
|
||||
0x94,0xff,0x00,0xf6,0xa8,0xda,0xa1,0x35,0xfd,0xd2,0x4f,0xfb,0x6b,0xc9,0x70,0x9a,
|
||||
0x07,0x3d,0xca,0x39,0x7f,0x28,0xa7,0xb8,0x51,0x73,0x26,0xee,0x16,0x9b,0x64,0x10,
|
||||
0xe5,0xee,0x02,0x47,0x8f,0xf6,0x81,0xff,0x00,0xda,0x6d,0xcf,0xdc,0xed,0x1a,0xa5,
|
||||
0x80,0xe6,0xa0,0x82,0x02,0x7f,0x75,0x2e,0xe6,0xaa,0xc3,0x30,0x92,0xe8,0x77,0x87,
|
||||
0xba,0x6f,0xbb,0x47,0x1f,0xce,0x40,0xe2,0xe6,0x06,0x07,0x99,0xe7,0xf9,0x1a,0xf7,
|
||||
0xb4,0xbf,0x1a,0x04,0xf4,0xbd,0x32,0x02,0x2e,0x4c,0x00,0x41,0x8e,0xb5,0xa9,0x00,
|
||||
0x9f,0x03,0x94,0xf3,0xe5,0x49,0x95,0x45,0x96,0x67,0x7b,0xf4,0x55,0xac,0xb9,0xc3,
|
||||
0x32,0x24,0xd2,0xac,0x60,0xa9,0x95,0xb9,0xc3,0xec,0x07,0x2f,0xc7,0x35,0xc7,0x73,
|
||||
0xed,0x1f,0xa6,0x9f,0x8e,0xa6,0x12,0x94,0x94,0x1f,0x06,0x2d,0x49,0x42,0xbe,0x8b,
|
||||
0xe0,0x07,0xf3,0xa8,0x16,0x05,0xfe,0x1d,0xbe,0xe1,0x36,0x48,0xd3,0xd6,0xf9,0x2c,
|
||||
0xbe,0x41,0x6e,0x3c,0x9e,0x35,0xa1,0x8c,0x67,0x92,0x79,0xe4,0xf5,0xf1,0xf2,0xae,
|
||||
0x58,0x17,0x75,0x5b,0x98,0x98,0xd2,0x21,0xc3,0x73,0xed,0x23,0x05,0x6f,0x34,0x16,
|
||||
0xa6,0xc7,0xf2,0x13,0xf7,0x69,0x6f,0xe0,0x52,0x25,0xd9,0x9b,0xfb,0x64,0x57,0x10,
|
||||
0x6a,0xdd,0x39,0xe3,0xfe,0x54,0x27,0xf5,0x55,0x23,0x48,0xde,0xe5,0x38,0x4f,0xd9,
|
||||
0xac,0xc4,0x8f,0xf1,0xdf,0x03,0xf4,0x06,0x9b,0x36,0xd6,0xf5,0x36,0xa2,0xb3,0x47,
|
||||
0xb5,0xb3,0x66,0x99,0x3a,0xd4,0xd2,0xd2,0x95,0x18,0x16,0xe2,0xb7,0x3a,0xe7,0x1c,
|
||||
0x69,0x49,0x39,0xf7,0xa7,0x23,0x1d,0x9c,0x37,0x2e,0xf2,0xf8,0xfd,0x8d,0xb6,0xba,
|
||||
0xc1,0x4c,0x72,0x41,0xfb,0x5d,0xb1,0xd4,0x9e,0x23,0xea,0x50,0x90,0x07,0xff,0x00,
|
||||
0xb3,0x45,0xfa,0x15,0xe0,0x9d,0x3b,0x77,0x6f,0x0a,0x51,0x42,0x2d,0xd0,0xe3,0x2b,
|
||||
0xc7,0x8c,0xad,0x64,0x7f,0xc6,0x92,0x9f,0xdc,0x4d,0x41,0x27,0xac,0xa8,0xec,0x7f,
|
||||
0xa1,0x1c,0x0f,0xf9,0x15,0x54,0xb3,0x66,0xec,0x25,0xbe,0xd7,0xe7,0x12,0xb5,0x68,
|
||||
0x59,0x11,0x92,0xb5,0xf0,0x97,0x27,0x4d,0x8e,0xde,0x3d,0x48,0x2e,0x71,0x63,0xe8,
|
||||
0x6a,0x43,0xb1,0x7c,0x2f,0xf7,0x6e,0xe8,0xd2,0x1c,0x9f,0x37,0x4e,0xd9,0xc1,0x23,
|
||||
0x2d,0xbb,0x2d,0xc7,0x56,0x91,0xe3,0xf7,0x5b,0xc6,0x7d,0x33,0xf5,0xa9,0xb8,0x2e,
|
||||
0x58,0xd4,0x59,0x53,0x65,0x6a,0x1b,0xc4,0xac,0xf7,0xb7,0x69,0x58,0xff,0x00,0x0d,
|
||||
0x61,0xbf,0xf8,0x01,0x49,0x52,0x0a,0xe5,0x1c,0x3e,0xf3,0xd2,0x3f,0xd6,0x75,0x4b,
|
||||
0xfd,0x49,0xad,0x12,0xd3,0xff,0x00,0x09,0x77,0x16,0x84,0x1b,0xf6,0xe1,0xe0,0x92,
|
||||
0x0a,0xdb,0xb6,0xdb,0xf1,0x81,0xe2,0x02,0x96,0xa3,0x9f,0x7c,0x54,0xa7,0xa5,0xfe,
|
||||
0x17,0x7b,0x49,0x66,0x09,0x55,0xd2,0x4d,0xf2,0xfe,0xe0,0xe6,0x7b,0xf9,0x9d,0xca,
|
||||
0x49,0xf6,0x6c,0x0e,0x55,0x2f,0x52,0x0b,0x82,0xb0,0x66,0x4a,0x70,0x36,0xdf,0x2c,
|
||||
0x25,0x23,0xa7,0x95,0x38,0x74,0xbe,0xdb,0xea,0xbd,0x6f,0x25,0x2c,0x69,0xfd,0x35,
|
||||
0x74,0xbc,0x3a,0xa3,0x84,0x88,0x71,0x16,0xbc,0x9f,0x70,0x31,0x5b,0x61,0xa4,0xbb,
|
||||
0x26,0x6d,0x0e,0x89,0x71,0xa7,0x6d,0x5a,0x06,0xcc,0x87,0xdb,0xe6,0x97,0xdf,0x60,
|
||||
0x3c,0xbc,0xf9,0x92,0xbc,0xd4,0xa7,0x06,0xdb,0x12,0xd6,0xc7,0x73,0x0a,0x2b,0x31,
|
||||
0x19,0xfe,0xed,0x86,0xc2,0x13,0xf8,0x01,0x52,0xf5,0xbc,0x45,0x2d,0x3f,0x59,0x8f,
|
||||
0x9b,0x73,0xf0,0xda,0xde,0x2d,0x7e,0x94,0x48,0xb8,0xc1,0x87,0xa3,0xe1,0xab,0x18,
|
||||
0x37,0x97,0x48,0x77,0x1f,0xe9,0xa0,0x29,0x40,0xfb,0x81,0x56,0xa7,0x68,0xfe,0x15,
|
||||
0x3a,0x13,0x4b,0x38,0xd4,0xdd,0x71,0x78,0x99,0xab,0xe6,0xa0,0x85,0x08,0x91,0xc9,
|
||||
0x87,0x10,0x7a,0x1e,0x13,0xde,0x2b,0xdf,0x89,0x3e,0xd5,0x78,0xe8,0xac,0x9e,0xa4,
|
||||
0x99,0x6a,0x09,0x08,0x9a,0x47,0x44,0xe9,0xfd,0x03,0x67,0x6a,0xd5,0xa6,0xec,0xb0,
|
||||
0x6c,0x76,0xe6,0xc7,0xcb,0x1a,0x03,0x09,0x69,0x1e,0xe4,0x24,0x73,0x3e,0xa7,0x9d,
|
||||
0x2d,0xd1,0x45,0x66,0x58,0x51,0x45,0x14,0x00,0x51,0x45,0x14,0x00,0x51,0x45,0x14,
|
||||
0x00,0x56,0x4f,0xf6,0xd5,0xec,0xeb,0xaf,0xb6,0xd3,0x57,0xea,0x7d,0x4c,0xd2,0x15,
|
||||
0x77,0xd0,0xf7,0x99,0x8f,0xc9,0x12,0x98,0x1c,0x46,0x27,0x7c,0xa2,0xa2,0xdb,0xc3,
|
||||
0x19,0x00,0x15,0x10,0x15,0xd0,0xfe,0x55,0xac,0x15,0xcd,0x71,0xb7,0x45,0xbb,0xc1,
|
||||
0x7e,0x14,0xd8,0xed,0x4b,0x88,0xfa,0x0b,0x6e,0xb0,0xf2,0x02,0x90,0xb4,0x9e,0xa0,
|
||||
0x83,0xc8,0x8a,0x69,0xd1,0x2d,0x59,0x83,0xfb,0x7b,0x7f,0x46,0x95,0xb7,0x2e,0x23,
|
||||
0xe8,0x6f,0x84,0xba,0xa3,0xc0,0xac,0x12,0x72,0x07,0x3c,0x53,0xe0,0xdd,0x2c,0xb2,
|
||||
0x59,0x43,0xaf,0x42,0x85,0x21,0x2a,0xe6,0x4f,0x74,0x9c,0x8e,0x59,0xc1,0xe5,0xd7,
|
||||
0xad,0x5c,0x9e,0xd1,0x7f,0x0d,0x6b,0x56,0xa6,0x6a,0x75,0xe3,0x6c,0xe4,0x22,0xcd,
|
||||
0x71,0x70,0x97,0x15,0x63,0x94,0xaf,0xec,0x6e,0x9f,0x10,0xda,0xba,0xb6,0x7f,0x11,
|
||||
0xed,0x59,0xe7,0xb8,0x3a,0x23,0x59,0xed,0x05,0xe9,0xcb,0x15,0xde,0xcf,0x2e,0xd3,
|
||||
0x73,0x8e,0x38,0x97,0x12,0x6a,0x72,0x1c,0x18,0xe6,0xa6,0xd6,0x39,0x29,0x27,0x00,
|
||||
0xe4,0x12,0x3a,0xd6,0xb9,0x78,0x65,0x85,0xbd,0xc7,0x55,0xcd,0x16,0x37,0x50,0x54,
|
||||
0xdd,0xba,0x33,0x5c,0xce,0x0a,0x46,0x29,0x8b,0xaa,0xef,0x56,0xbb,0x0c,0x17,0x1c,
|
||||
0x10,0xdb,0x53,0xbd,0x10,0x90,0x4f,0x33,0xf8,0xd3,0x73,0xfa,0x7c,0xb4,0xa9,0x09,
|
||||
0x9c,0xc2,0xd8,0x56,0x70,0x49,0x1c,0x89,0xf4,0x22,0x91,0xf5,0x5b,0x12,0x75,0x0b,
|
||||
0x46,0x6b,0x2e,0xb0,0x22,0x36,0x33,0xfd,0x63,0xc1,0x27,0x1e,0x60,0x78,0xd2,0x53,
|
||||
0xbe,0x19,0x52,0xd2,0x94,0x3f,0xb2,0x17,0x74,0x74,0x88,0x97,0x16,0x1c,0x76,0xf5,
|
||||
0x71,0x54,0x75,0xac,0x15,0x21,0x09,0x01,0x28,0x6c,0x7b,0xe3,0x34,0xc0,0xd5,0x5a,
|
||||
0xd5,0xe8,0x17,0x75,0x33,0x6d,0x9a,0xf4,0x98,0xe9,0x56,0x12,0xa5,0x21,0x23,0x8c,
|
||||
0x67,0xc0,0x63,0x3c,0xeb,0xc3,0x58,0x4e,0x0c,0xd9,0x22,0x77,0x04,0x84,0xb8,0x03,
|
||||
0x79,0x1d,0x30,0x2b,0xc7,0x4c,0x14,0xaa,0x0f,0xda,0xcb,0x48,0x32,0x16,0x4b,0x69,
|
||||
0x59,0x4f,0x34,0x24,0x63,0x24,0x7a,0x9c,0xe3,0x3e,0x94,0xa5,0x27,0xc2,0x2a,0x31,
|
||||
0x4f,0x73,0x58,0xfb,0x1c,0x5d,0xbb,0x29,0xf6,0x83,0xb5,0xc4,0xb3,0x44,0xd0,0xb0,
|
||||
0xed,0x3a,0xd9,0x2c,0x20,0xc9,0xb4,0xdf,0x54,0xea,0xdd,0x7d,0x69,0x4f,0xce,0xb6,
|
||||
0x14,0xb5,0x90,0xb1,0xc8,0x9c,0x27,0x04,0x78,0x8a,0xb6,0x96,0xee,0xca,0x3b,0x3b,
|
||||
0x6a,0x5a,0xd4,0xc6,0xdb,0x69,0xc5,0x95,0x8c,0x11,0x22,0x02,0x1e,0x1f,0x40,0xb0,
|
||||
0x40,0xfa,0x56,0x1e,0x6d,0x3e,0xb3,0xb9,0xed,0x3e,0xe0,0xe9,0x9d,0x55,0x09,0xb7,
|
||||
0x13,0x3a,0xd7,0x31,0xb9,0x8d,0x26,0x40,0xe4,0xb0,0x0f,0x3e,0xbe,0x0a,0x49,0x52,
|
||||
0x7e,0xb5,0xfa,0x18,0x42,0xb8,0xd0,0x95,0x74,0xc8,0xcd,0x4d,0xbf,0x4a,0xa4,0x30,
|
||||
0xad,0xfd,0x9f,0x76,0xc2,0xd4,0xea,0x9d,0x87,0xb7,0x7a,0x56,0x3b,0x8a,0x1c,0x25,
|
||||
0x4d,0xd9,0xa3,0x82,0x47,0x97,0xdc,0xa7,0x0c,0x0d,0x05,0xa6,0x2d,0x51,0xc4,0x78,
|
||||
0x5a,0x72,0xd3,0x0d,0x80,0x4a,0x83,0x4c,0x41,0x69,0x09,0x04,0xf5,0x38,0x09,0xc5,
|
||||
0x2f,0x51,0x4a,0xc6,0x7c,0xa1,0xb4,0x34,0x90,0x94,0x24,0x21,0x20,0x60,0x04,0x8c,
|
||||
0x01,0x5f,0x54,0x51,0x48,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,
|
||||
0xa0,0x02,0x8a,0x28,0xa0,0x02,0x8a,0x28,0xa0,0x02,0x9a,0xbb,0x8d,0xb5,0xba,0x57,
|
||||
0x76,0xb4,0xfb,0x96,0x6d,0x59,0x64,0x8b,0x79,0x82,0xa0,0x78,0x43,0xe8,0xf9,0xda,
|
||||
0x51,0x18,0xe2,0x6d,0x63,0xe6,0x42,0xbd,0x52,0x45,0x3a,0xa8,0xa0,0x0c,0xbf,0xed,
|
||||
0x0d,0xf0,0xca,0xbd,0xe9,0x61,0x2a,0xef,0xb7,0x4f,0x2f,0x52,0xd9,0xf9,0xad,0x56,
|
||||
0x99,0x18,0x13,0x19,0x1e,0x49,0x3d,0x1d,0xfc,0x8f,0xa1,0xaa,0x3d,0xaa,0xb4,0xd4,
|
||||
0xbb,0x0b,0x13,0x2d,0xb3,0x60,0x3b,0x0a,0x4b,0x20,0xb6,0xb8,0xef,0x34,0x5b,0x71,
|
||||
0x18,0xe5,0x8c,0x1f,0x2a,0xfd,0x10,0xd4,0x7d,0xb9,0x7b,0x05,0xa0,0x37,0x79,0xa2,
|
||||
0x35,0x56,0x98,0x83,0x73,0x7b,0x84,0xa5,0x32,0x8b,0x7c,0x0f,0xa7,0x3e,0x4b,0x4e,
|
||||
0x0d,0x5a,0x95,0x72,0x43,0x8f,0x87,0xe7,0x93,0x54,0x58,0xbe,0xd3,0xa3,0xa3,0xbb,
|
||||
0x1c,0x97,0x97,0x19,0x5c,0x4b,0x09,0x1d,0x12,0x7a,0xfe,0x1c,0xa9,0x17,0x4a,0x4b,
|
||||
0x47,0xd8,0x8b,0x7c,0x40,0x38,0xda,0x8e,0x53,0x9e,0x7c,0x27,0x9e,0x47,0xd6,0xb6,
|
||||
0x3f,0x5b,0x7c,0x27,0x36,0xce,0x7f,0xda,0xa5,0xd8,0xb5,0x1e,0xa2,0xd3,0x8a,0x21,
|
||||
0x4a,0x0c,0xb4,0xea,0x1f,0x6f,0xd8,0x85,0xa7,0x24,0x7d,0x6a,0x06,0xec,0xd9,0xf0,
|
||||
0xea,0xd2,0xba,0x87,0x7b,0xae,0x0a,0xbf,0xde,0xd5,0x73,0xb6,0x69,0xa9,0x8d,0xa9,
|
||||
0x56,0xf4,0x40,0x0d,0x26,0x69,0x1f,0x36,0x16,0x7b,0xc5,0x61,0x27,0x1c,0xc0,0x1c,
|
||||
0xfc,0xe8,0x74,0xf7,0x43,0x8d,0xad,0x99,0x07,0xf6,0x3c,0xec,0xfd,0xa9,0x7b,0x47,
|
||||
0xee,0x15,0x9e,0xdc,0x96,0x26,0x23,0x46,0xc0,0x90,0x89,0x57,0x49,0xef,0xa5,0x45,
|
||||
0x80,0xda,0x54,0x09,0x6d,0x24,0xf2,0x2b,0x5e,0x38,0x40,0x1e,0x79,0x3d,0x2b,0x73,
|
||||
0xc0,0x09,0x00,0x0e,0x40,0x57,0x15,0x96,0xc5,0x6d,0xd3,0x76,0xe6,0xa0,0x5a,0x60,
|
||||
0x46,0xb6,0x41,0x6b,0x92,0x23,0x44,0x65,0x2d,0x36,0x9f,0x64,0xa4,0x01,0x5d,0xd5,
|
||||
0x05,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,
|
||||
0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x05,0x14,0x51,0x40,0x1f,0xff,0xd9};
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,34 @@
|
|||
These are slightly modified versions of the adafruit_gfx_demo.
|
||||
Extra Images were included:
|
||||
The Star Ship ENTERPRISE "NCC-1701" from http://clipart-library.com/clip-art/uss-enterprise-silhouette-11.htm
|
||||
And an image of "Batman" from https://all-free-download.com/free-vector/download/batman-5_132955.html
|
||||
|
||||
The JPEGDraw function was changed for use with the M5Stack devices.
|
||||
|
||||
M5.Lcd.drawBitmap((int16_t)pDraw->x, (int16_t)pDraw->y, (int16_t)pDraw->iWidth, (int16_t)pDraw->iHeight, pDraw->pPixels);
|
||||
|
||||
Another small change was to add a check if the image had a thumbnail or not, and call the correct jpg decode routine.
|
||||
if (jpeg.hasThumb()) {jpeg.decode(iCenterX[i],iCenterY[i],JPEG_EXIF_THUMBNAIL | iOption[i]); } else { jpeg.decode(iCenterX[i],iCenterY[i], iOption[i]); }
|
||||
|
||||
To display the other images, uncomment the image you want to display, comment the others.
|
||||
Also uncomment the line with the name of the image you want to display, and comment the others.
|
||||
if (jpeg.openFLASH((uint8_t *)thumb_test, sizeof(thumb_test), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)ncc1701, sizeof(ncc1701), JPEGDraw))
|
||||
//if (jpeg.openFLASH((uint8_t *)batman, sizeof(batman), JPEGDraw))
|
||||
|
||||
M5Stack, M5Core2 and M5Fire sketches are almost the same, the difference is how you start the screen on the Fire, and M5Core2.
|
||||
M5StickC and M5StickCPlus are the same with the difference being which library is used (either M5StickC.h or M5StickkCPlus.h) and display size between the two devices.
|
||||
|
||||
Tested on:
|
||||
M5Stack Gray
|
||||
M5Stack Fire
|
||||
M5StickC
|
||||
M5StickC Plus
|
||||
M5Core2
|
||||
|
||||
Untested: (should work with M5Stack, but unable to test)
|
||||
M5Stack Basic (should work)
|
||||
M5Go Lite
|
||||
M5Go
|
||||
|
||||
Feb 22, 2021 - LeRoy Miller, KD8BXP
|
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
|
@ -0,0 +1,72 @@
|
|||
// JPEGDEC example for Adafruit GFX displays
|
||||
|
||||
#include <JPEGDEC.h>
|
||||
// Sample image (truncated) containing a 320x240 Exif thumbnail
|
||||
#include "thumb_test.h"
|
||||
|
||||
#include "SPI.h"
|
||||
#include "Adafruit_GFX.h"
|
||||
#include "Adafruit_ILI9341.h"
|
||||
|
||||
#define DISPLAY_WIDTH 320
|
||||
#define DISPLAY_HEIGHT 240
|
||||
|
||||
// PyPortal-specific pins
|
||||
#define SD_CS 32 // SD card select
|
||||
#define TFT_D0 34 // Data bit 0 pin (MUST be on PORT byte boundary)
|
||||
#define TFT_WR 26 // Write-strobe pin (CCL-inverted timer output)
|
||||
#define TFT_DC 10 // Data/command pin
|
||||
#define TFT_CS 11 // Chip-select pin
|
||||
#define TFT_RST 24 // Reset pin
|
||||
#define TFT_RD 9 // Read-strobe pin
|
||||
#define TFT_BACKLIGHT 25 // Backlight enable (active high)
|
||||
|
||||
Adafruit_ILI9341 tft(tft8bitbus, TFT_D0, TFT_WR, TFT_DC, TFT_CS, TFT_RST, TFT_RD);
|
||||
JPEGDEC jpeg;
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
// Serial.printf("jpeg draw: x,y=%d,%d, cx,cy = %d,%d\n", pDraw->x, pDraw->y, pDraw->iWidth, pDraw->iHeight);
|
||||
// Serial.printf("Pixel 0 = 0x%04x\n", pDraw->pPixels[0]);
|
||||
tft.dmaWait(); // Wait for prior writePixels() to finish
|
||||
tft.setAddrWindow(pDraw->x, pDraw->y, pDraw->iWidth, pDraw->iHeight);
|
||||
tft.writePixels(pDraw->pPixels, pDraw->iWidth * pDraw->iHeight, true, false); // Use DMA, big-endian
|
||||
return 1;
|
||||
} /* JPEGDraw() */
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
//while (!Serial);
|
||||
Serial.println("Starting...");
|
||||
pinMode(TFT_BACKLIGHT, OUTPUT);
|
||||
digitalWrite(TFT_BACKLIGHT, HIGH); // Backlight on
|
||||
|
||||
// put your setup code here, to run once:
|
||||
tft.begin();
|
||||
tft.setRotation(3); // PyPortal native orientation
|
||||
} /* setup() */
|
||||
|
||||
void loop() {
|
||||
int i;
|
||||
long lTime;
|
||||
int iOption[4] = {0, JPEG_SCALE_HALF, JPEG_SCALE_QUARTER, JPEG_SCALE_EIGHTH};
|
||||
int iCenterX[4] = {0,80,120,140};
|
||||
int iCenterY[4] = {0,60,90,105};
|
||||
|
||||
for (i=0; i<4; i++)
|
||||
{
|
||||
tft.fillScreen(ILI9341_BLACK);
|
||||
tft.startWrite(); // Not sharing TFT bus on PyPortal, just CS once and leave it
|
||||
if (jpeg.openFLASH((uint8_t *)thumb_test, sizeof(thumb_test), JPEGDraw))
|
||||
{
|
||||
lTime = micros();
|
||||
if (jpeg.decode(iCenterX[i],iCenterY[i],JPEG_EXIF_THUMBNAIL | iOption[i]))
|
||||
{
|
||||
lTime = micros() - lTime;
|
||||
Serial.printf("%d x %d image, decode time = %d us\n", jpeg.getWidth() >> i, jpeg.getHeight() >> i, (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
delay(2000); // pause between images
|
||||
} // for i
|
||||
} /* loop() */
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,369 @@
|
|||
// slimmed down version of the Open Book IL0398 driver.
|
||||
// https://github.com/joeycastillo/The-Open-Book/blob/master/src/Grayscale_IL0398.cpp
|
||||
|
||||
#include "Grayscale_IL0398.h"
|
||||
|
||||
#define BUSY_WAIT 500
|
||||
|
||||
#ifndef min
|
||||
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
#ifndef _swap_int16_t
|
||||
#define _swap_int16_t(a, b) { int16_t t = a; a = b; b = t; }
|
||||
#endif
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief constructor if using external SRAM chip and software SPI
|
||||
@param width the width of the display in pixels
|
||||
@param height the height of the display in pixels
|
||||
@param SID the SID pin to use
|
||||
@param SCLK the SCLK pin to use
|
||||
@param DC the data/command pin to use
|
||||
@param RST the reset pin to use
|
||||
@param CS the chip select pin to use
|
||||
@param SRCS the SRAM chip select pin to use
|
||||
@param MISO the MISO pin to use
|
||||
@param BUSY the busy pin to use
|
||||
*/
|
||||
/**************************************************************************/
|
||||
Grayscale_IL0398::Grayscale_IL0398(int width, int height,
|
||||
int8_t SID, int8_t SCLK, int8_t DC, int8_t RST,
|
||||
int8_t CS, int8_t SRCS, int8_t MISO, int8_t BUSY) :
|
||||
Adafruit_EPD(width, height, SID, SCLK, DC, RST, CS, SRCS, MISO, BUSY) {
|
||||
|
||||
buffer1_size = ((uint32_t)width * (uint32_t)height) / 8;
|
||||
buffer2_size = buffer1_size;
|
||||
|
||||
if (SRCS >= 0) {
|
||||
use_sram = true;
|
||||
buffer1_addr = 0;
|
||||
buffer2_addr = buffer1_size;
|
||||
buffer1 = buffer2 = NULL;
|
||||
} else {
|
||||
buffer1 = (uint8_t *)malloc(buffer1_size);
|
||||
buffer2 = (uint8_t *)malloc(buffer2_size);
|
||||
}
|
||||
}
|
||||
|
||||
// constructor for hardware SPI - we indicate DataCommand, ChipSelect, Reset
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief constructor if using on-chip RAM and hardware SPI
|
||||
@param width the width of the display in pixels
|
||||
@param height the height of the display in pixels
|
||||
@param DC the data/command pin to use
|
||||
@param RST the reset pin to use
|
||||
@param CS the chip select pin to use
|
||||
@param SRCS the SRAM chip select pin to use
|
||||
@param BUSY the busy pin to use
|
||||
*/
|
||||
/**************************************************************************/
|
||||
Grayscale_IL0398::Grayscale_IL0398(int width, int height,
|
||||
int8_t DC, int8_t RST,
|
||||
int8_t CS, int8_t SRCS, int8_t BUSY, SPIClass *spi) :
|
||||
Adafruit_EPD(width, height, DC, RST, CS, SRCS, BUSY, spi) {
|
||||
|
||||
buffer1_size = ((uint32_t)width * (uint32_t)height) / 8;
|
||||
buffer2_size = buffer1_size;
|
||||
|
||||
if (SRCS >= 0) {
|
||||
use_sram = true;
|
||||
buffer1_addr = 0;
|
||||
buffer2_addr = 0;
|
||||
buffer1 = buffer2 = NULL;
|
||||
} else {
|
||||
buffer1 = (uint8_t *)malloc(buffer1_size);
|
||||
buffer2 = (uint8_t *)malloc(buffer1_size);
|
||||
}
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief wait for busy signal to end
|
||||
*/
|
||||
/**************************************************************************/
|
||||
void Grayscale_IL0398::busy_wait(void)
|
||||
{
|
||||
if (_busy_pin > -1) {
|
||||
do {
|
||||
EPD_command(IL0398_GETSTATUS);
|
||||
delay(10);
|
||||
} while (!digitalRead(_busy_pin)); //wait for busy high
|
||||
delay(200);
|
||||
} else {
|
||||
delay(BUSY_WAIT);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief begin communication with and set up the display.
|
||||
@param reset if true the reset pin will be toggled.
|
||||
*/
|
||||
/**************************************************************************/
|
||||
void Grayscale_IL0398::begin(bool reset)
|
||||
{
|
||||
Adafruit_EPD::begin(reset);
|
||||
setBlackBuffer(0, true);
|
||||
powerDown();
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief signal the display to update
|
||||
*/
|
||||
/**************************************************************************/
|
||||
void Grayscale_IL0398::update()
|
||||
{
|
||||
EPD_command(IL0398_DISPLAY_REFRESH);
|
||||
delay(100);
|
||||
|
||||
busy_wait();
|
||||
if (_busy_pin <= -1) {
|
||||
delay(5000);
|
||||
}
|
||||
}
|
||||
|
||||
const unsigned char Grayscale_IL0398::LUT_VCOM_GRAYSCALE[] PROGMEM =
|
||||
{
|
||||
0x00, 0x0A, 0x00, 0x00, 0x00, 0x01,
|
||||
0x60, 0x14, 0x14, 0x00, 0x00, 0x01,
|
||||
0x00, 0x14, 0x00, 0x00, 0x00, 0x01,
|
||||
0x00, 0x13, 0x0A, 0x01, 0x00, 0x01,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00,
|
||||
0x00
|
||||
};
|
||||
|
||||
const unsigned char Grayscale_IL0398::LUT_WW_GRAYSCALE[] PROGMEM =
|
||||
{
|
||||
0x40, 0x0A, 0x00, 0x00, 0x00, 0x01,
|
||||
0x90, 0x14, 0x14, 0x00, 0x00, 0x01,
|
||||
0x10, 0x14, 0x0A, 0x00, 0x00, 0x01,
|
||||
0xA0, 0x13, 0x01, 0x00, 0x00, 0x01,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
||||
|
||||
const unsigned char Grayscale_IL0398::LUT_WB_GRAYSCALE[] PROGMEM =
|
||||
{
|
||||
0x40, 0x0A, 0x00, 0x00, 0x00, 0x01,
|
||||
0x90, 0x14, 0x14, 0x00, 0x00, 0x01,
|
||||
0x00, 0x14, 0x0A, 0x00, 0x00, 0x01,
|
||||
0x99, 0x0B, 0x04, 0x04, 0x01, 0x01,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
||||
|
||||
const unsigned char Grayscale_IL0398::LUT_BW_GRAYSCALE[] PROGMEM =
|
||||
{
|
||||
0x40, 0x0A, 0x00, 0x00, 0x00, 0x01,
|
||||
0x90, 0x14, 0x14, 0x00, 0x00, 0x01,
|
||||
0x00, 0x14, 0x0A, 0x00, 0x00, 0x01,
|
||||
0x99, 0x0C, 0x01, 0x03, 0x04, 0x01,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
||||
|
||||
const unsigned char Grayscale_IL0398::LUT_BB_GRAYSCALE[] PROGMEM =
|
||||
{
|
||||
0x80, 0x0A, 0x00, 0x00, 0x00, 0x01,
|
||||
0x90, 0x14, 0x14, 0x00, 0x00, 0x01,
|
||||
0x20, 0x14, 0x0A, 0x00, 0x00, 0x01,
|
||||
0x50, 0x13, 0x01, 0x00, 0x00, 0x01,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
};
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief start up the display. Same as init, but here for compatibility with
|
||||
Adafruit_EPD; you can call Grayscale_IL0398::init with more options.
|
||||
*/
|
||||
/**************************************************************************/
|
||||
void Grayscale_IL0398::powerUp() {
|
||||
uint8_t buf[5];
|
||||
|
||||
hardwareReset();
|
||||
|
||||
buf[0] = 0x03; // Panel will generate VDH and VDL (1<<0) and VGH and VGL (1<<1)
|
||||
buf[1] = 0x00; // VCOMH=VDH+VCOMDC and VCOML=VDL+VCOMDC; VGH and VGL are 16v and -16v respectively
|
||||
buf[2] = 0x2b; // VDH= 11V
|
||||
buf[3] = 0x2b; // VDL=-11V
|
||||
buf[4] = 0x13; // VDHR=6.2V
|
||||
EPD_command(IL0398_POWER_SETTING, buf, 5);
|
||||
|
||||
buf[0] = 0x17; // phase A: soft start 10ms, driving strength 3, off time 6.58us
|
||||
buf[1] = 0x17; // phase B: soft start 10ms, driving strength 3, off time 6.58us
|
||||
buf[2] = 0x17; // phase C: driving strength 3, off time 6.58us
|
||||
EPD_command(IL0398_BOOSTER_SOFT_START, buf, 3);
|
||||
|
||||
buf[0] = 0x3F; // (1<<4) sets display to monochrome and (1<<5) enables custom LUTs
|
||||
EPD_command(IL0398_PANEL_SETTING, buf, 1);
|
||||
|
||||
buf[0] = 0x3C; // 50 Hz
|
||||
EPD_command(IL0398_PLL, buf, 1);
|
||||
|
||||
buf[0] = (HEIGHT >> 8) & 0xFF;
|
||||
buf[1] = HEIGHT & 0xFF;
|
||||
buf[2] = (WIDTH >> 8) & 0xFF;
|
||||
buf[3] = WIDTH & 0xFF;
|
||||
EPD_command(IL0398_RESOLUTION, buf, 4);
|
||||
|
||||
buf[0] = 0x12; // VCOM_DC = -1.5v
|
||||
EPD_command(IL0398_VCM_DC_SETTING, buf, 1);
|
||||
|
||||
buf[0] = 0xD7; // 0x57 for black border. 0x97 for white border. 0xD7 for floating border.
|
||||
EPD_command(IL0398_VCOM, buf, 1);
|
||||
|
||||
EPD_command(IL0398_LUT1, LUT_VCOM_GRAYSCALE, sizeof(LUT_VCOM_GRAYSCALE));
|
||||
EPD_command(IL0398_LUTWW, LUT_WW_GRAYSCALE, sizeof(LUT_WW_GRAYSCALE));
|
||||
EPD_command(IL0398_LUTBW, LUT_BW_GRAYSCALE, sizeof(LUT_BW_GRAYSCALE));
|
||||
EPD_command(IL0398_LUTWB, LUT_WB_GRAYSCALE, sizeof(LUT_WB_GRAYSCALE));
|
||||
EPD_command(IL0398_LUTBB, LUT_BB_GRAYSCALE, sizeof(LUT_BB_GRAYSCALE));
|
||||
|
||||
EPD_command(IL0398_POWER_ON);
|
||||
busy_wait();
|
||||
|
||||
delay(20);
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief wind down the display
|
||||
*/
|
||||
/**************************************************************************/
|
||||
void Grayscale_IL0398::powerDown()
|
||||
{
|
||||
uint8_t buf[4];
|
||||
|
||||
// power off
|
||||
buf[0] = 0xF7; // border floating
|
||||
EPD_command(IL0398_VCOM, buf, 1);
|
||||
EPD_command(IL0398_POWER_OFF);
|
||||
busy_wait();
|
||||
buf[0] = 0xA5; // deep sleep
|
||||
EPD_command(IL0398_DEEP_SLEEP, buf, 1);
|
||||
delay(100);
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief draw a single pixel on the screen
|
||||
@param x the x axis position
|
||||
@param y the y axis position
|
||||
@param color the color of the pixel
|
||||
*/
|
||||
/**************************************************************************/
|
||||
void Grayscale_IL0398::drawPixel(int16_t x, int16_t y, uint16_t color) {
|
||||
if ((x < 0) || (x >= width()) || (y < 0) || (y >= height()))
|
||||
return;
|
||||
|
||||
uint8_t *pByte1;
|
||||
uint8_t *pByte2;
|
||||
|
||||
// check rotation, move pixel around if necessary
|
||||
switch (getRotation()) {
|
||||
case 1:
|
||||
EPD_swap(x, y);
|
||||
x = WIDTH - x - 1;
|
||||
break;
|
||||
case 2:
|
||||
x = WIDTH - x - 1;
|
||||
y = HEIGHT - y - 1;
|
||||
break;
|
||||
case 3:
|
||||
EPD_swap(x, y);
|
||||
y = HEIGHT - y - 1;
|
||||
break;
|
||||
}
|
||||
|
||||
uint16_t addr = ( (uint32_t)(WIDTH - 1 - x) * (uint32_t)HEIGHT + y)/8;
|
||||
|
||||
if (use_sram) {
|
||||
uint8_t byte1 = sram.read8(blackbuffer_addr + addr);
|
||||
uint8_t byte2 = sram.read8(colorbuffer_addr + addr);
|
||||
pByte1 = &byte1;
|
||||
pByte2 = &byte2;
|
||||
} else {
|
||||
pByte1 = black_buffer + addr;
|
||||
pByte2 = color_buffer + addr;
|
||||
}
|
||||
|
||||
switch (color) {
|
||||
case EPD_BLACK:
|
||||
*pByte1 &= ~(1 << (7 - (y%8)));
|
||||
*pByte2 &= ~(1 << (7 - (y%8)));
|
||||
break;
|
||||
case EPD_DARK:
|
||||
*pByte1 |= (1 << (7 - (y%8)));
|
||||
*pByte2 &= ~(1 << (7 - (y%8)));
|
||||
break;
|
||||
case EPD_LIGHT:
|
||||
*pByte1 &= ~(1 << (7 - (y%8)));
|
||||
*pByte2 |= (1 << (7 - (y%8)));
|
||||
break;
|
||||
case EPD_WHITE:
|
||||
*pByte1 |= (1 << (7 - (y%8)));
|
||||
*pByte2 |= (1 << (7 - (y%8)));
|
||||
break;
|
||||
}
|
||||
|
||||
if (use_sram) {
|
||||
sram.write8(addr, *pByte1);
|
||||
sram.write8(addr + buffer1_size, *pByte2);
|
||||
}
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief Send the specific command to start writing to EPD display RAM
|
||||
@param index The index for which buffer to write (0 or 1 or tri-color displays)
|
||||
Ignored for monochrome displays.
|
||||
@returns The byte that is read from SPI at the same time as sending the command
|
||||
*/
|
||||
/**************************************************************************/
|
||||
uint8_t Grayscale_IL0398::writeRAMCommand(uint8_t index) {
|
||||
if (index == 0) {
|
||||
return EPD_command(IL0398_DTM2, false);
|
||||
}
|
||||
if (index == 1) {
|
||||
return EPD_command(IL0398_DTM1, false);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief Some displays require setting the RAM address pointer
|
||||
@param x X address counter value
|
||||
@param y Y address counter value
|
||||
*/
|
||||
/**************************************************************************/
|
||||
void Grayscale_IL0398::setRAMAddress(uint16_t x, uint16_t y) {
|
||||
// on this chip we do nothing
|
||||
}
|
||||
|
||||
/*!
|
||||
* @file Adafruit_IL0398.cpp
|
||||
*
|
||||
* Forked from Adafruit_IL0398.cpp; copyright notce below.
|
||||
*
|
||||
* Adafruit invests time and resources providing this open source code,
|
||||
* please support Adafruit and open-source hardware by purchasing
|
||||
* products from Adafruit!
|
||||
*
|
||||
* Written by Dean Miller for Adafruit Industries.
|
||||
* Open Book additions by Joey Castillo.
|
||||
*
|
||||
* BSD license, all text here must be included in any redistribution.
|
||||
*
|
||||
*/
|
|
@ -0,0 +1,49 @@
|
|||
// slimmed down version of the Open Book IL0398 driver.
|
||||
// https://github.com/joeycastillo/The-Open-Book/blob/master/src/Grayscale_IL0398.h
|
||||
|
||||
/**************************************************************************/
|
||||
/*!
|
||||
@brief Class for interfacing with IL0398 EPD drivers
|
||||
*/
|
||||
/**************************************************************************/
|
||||
|
||||
#include "Adafruit_EPD.h"
|
||||
|
||||
class Grayscale_IL0398 : public Adafruit_EPD {
|
||||
public:
|
||||
Grayscale_IL0398(int width, int height, int8_t SID, int8_t SCLK, int8_t DC, int8_t RST, int8_t CS, int8_t SRCS, int8_t MISO, int8_t BUSY = -1);
|
||||
Grayscale_IL0398(int width, int height, int8_t DC, int8_t RST, int8_t CS, int8_t SRCS, int8_t BUSY = -1, SPIClass *spi = &SPI);
|
||||
|
||||
void begin(bool reset=true);
|
||||
void powerUp();
|
||||
void update();
|
||||
void powerDown();
|
||||
void drawPixel(int16_t x, int16_t y, uint16_t color);
|
||||
protected:
|
||||
uint8_t writeRAMCommand(uint8_t index);
|
||||
void setRAMAddress(uint16_t x, uint16_t y);
|
||||
void busy_wait();
|
||||
|
||||
private:
|
||||
static const unsigned char LUT_VCOM_GRAYSCALE[];
|
||||
static const unsigned char LUT_WW_GRAYSCALE[];
|
||||
static const unsigned char LUT_WB_GRAYSCALE[];
|
||||
static const unsigned char LUT_BW_GRAYSCALE[];
|
||||
static const unsigned char LUT_BB_GRAYSCALE[];
|
||||
};
|
||||
|
||||
/*!
|
||||
* @file Grayscale_IL0398.h
|
||||
*
|
||||
* Forked from Adafruit_IL0398.h; copyright notce below.
|
||||
*
|
||||
* Adafruit invests time and resources providing this open source code,
|
||||
* please support Adafruit and open-source hardware by purchasing
|
||||
* products from Adafruit!
|
||||
*
|
||||
* Written by Dean Miller for Adafruit Industries.
|
||||
* Open Book additions by Joey Castillo.
|
||||
*
|
||||
* BSD license, all text here must be included in any redistribution.
|
||||
*
|
||||
*/
|
|
@ -0,0 +1,112 @@
|
|||
// JPEGDEC example for 4.2" monochrome E-Paper displays
|
||||
// Does not work with tri-color 4.2" displays!
|
||||
|
||||
#include <JPEGDEC.h>
|
||||
#include "SPI.h"
|
||||
#include "Adafruit_GFX.h"
|
||||
|
||||
#include "Grayscale_IL0398.h"
|
||||
#include "lange.h" // Demo photographs, grayscale, sized 300x400
|
||||
|
||||
#define DISPLAY_WIDTH 300
|
||||
#define DISPLAY_HEIGHT 400
|
||||
|
||||
// set these values to match the pins and the SPI bus for your display
|
||||
#define EPD_CS 44
|
||||
#define EPD_DC 45
|
||||
#define EPD_RST 46
|
||||
#define EPD_BSY 47
|
||||
#define EPD_DISPLAY_BUS &SPI1
|
||||
|
||||
// adds a basic Floyd-Steinberg dither to each block of pixels rendered.
|
||||
bool dither = true;
|
||||
|
||||
JPEGDEC jpeg;
|
||||
Grayscale_IL0398 display(DISPLAY_WIDTH, DISPLAY_HEIGHT, EPD_DC, EPD_RST, EPD_CS, -1, EPD_BSY, EPD_DISPLAY_BUS);
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
int x = pDraw->x;
|
||||
int y = pDraw->y;
|
||||
int w = pDraw->iWidth;
|
||||
int h = pDraw->iHeight;
|
||||
|
||||
for(int i = 0; i < w * h; i++)
|
||||
{
|
||||
pDraw->pPixels[i] = (pDraw->pPixels[i] & 0x7e0) >> 5; // extract just the six green channel bits.
|
||||
}
|
||||
|
||||
if (dither)
|
||||
{
|
||||
for(int16_t j = 0; j < h; j++)
|
||||
{
|
||||
for(int16_t i = 0; i < w; i++)
|
||||
{
|
||||
int8_t oldPixel = constrain(pDraw->pPixels[i + j * w], 0, 0x3F);
|
||||
int8_t newPixel = oldPixel & 0x38; // or 0x30 to dither to 2-bit directly. much improved tonal range, but more horizontal banding between blocks.
|
||||
pDraw->pPixels[i + j * w] = newPixel;
|
||||
int quantError = oldPixel - newPixel;
|
||||
if(i + 1 < w) pDraw->pPixels[i + 1 + j * w] += quantError * 7 / 16;
|
||||
if((i - 1 >= 0) && (j + 1 < h)) pDraw->pPixels[i - 1 + (j + 1) * w] += quantError * 3 / 16;
|
||||
if(j + 1 < h) pDraw->pPixels[i + (j + 1) * w] += quantError * 5 / 16;
|
||||
if((i + 1 < w) && (j + 1 < h)) pDraw->pPixels[i + 1 + (j + 1) * w] += quantError * 1 / 16;
|
||||
} // for i
|
||||
} // for j
|
||||
} // if dither
|
||||
|
||||
for(int16_t i = 0; i < w; i++)
|
||||
{
|
||||
for(int16_t j = 0; j < h; j++)
|
||||
{
|
||||
switch (constrain(pDraw->pPixels[i + j * w] >> 4, 0, 3))
|
||||
{
|
||||
case 0:
|
||||
display.writePixel(x+i, y+j, EPD_BLACK);
|
||||
break;
|
||||
case 1:
|
||||
display.writePixel(x+i, y+j, EPD_DARK);
|
||||
break;
|
||||
case 2:
|
||||
display.writePixel(x+i, y+j, EPD_LIGHT);
|
||||
break;
|
||||
case 3:
|
||||
display.writePixel(x+i, y+j, EPD_WHITE);
|
||||
break;
|
||||
} // switch
|
||||
} // for j
|
||||
} // for i
|
||||
return 1;
|
||||
} /* JPEGDraw() */
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
//while (!Serial) delay(1000);
|
||||
Serial.println("Starting...");
|
||||
display.begin();
|
||||
display.fillRect(0, 0, 300, 400, EPD_BLACK);
|
||||
display.display();
|
||||
} /* setup() */
|
||||
|
||||
const uint8_t * images[] = {demo_001_jpg, demo_002_jpg, demo_003_jpg, demo_004_jpg, demo_005_jpg, demo_006_jpg, demo_007_jpg, demo_008_jpg};
|
||||
size_t imageLengths[] = {demo_001_jpg_len, demo_002_jpg_len, demo_003_jpg_len, demo_004_jpg_len, demo_005_jpg_len, demo_006_jpg_len, demo_007_jpg_len, demo_008_jpg_len};
|
||||
|
||||
void loop() {
|
||||
int i;
|
||||
long lTime;
|
||||
|
||||
for (i=0; i<8; i++)
|
||||
{
|
||||
if (jpeg.openFLASH((uint8_t *)images[i], imageLengths[i], JPEGDraw))
|
||||
{
|
||||
lTime = micros();
|
||||
if (jpeg.decode((300 - jpeg.getWidth()) / 2, (400 - jpeg.getHeight()) / 2, 0))
|
||||
{
|
||||
lTime = micros() - lTime;
|
||||
Serial.printf("%d x %d image, decode time = %d us\n", jpeg.getWidth(), jpeg.getHeight(), (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
display.display();
|
||||
delay(4000); // pause between images
|
||||
} // for i
|
||||
} /* loop() */
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,92 @@
|
|||
//
|
||||
// JPEG thumbnail decode test
|
||||
//
|
||||
// This example sketch decodes an EXIF thumbnail image
|
||||
// embedded in a 12 megapixel photo taken on a mobile phone
|
||||
//
|
||||
// It's written to run on an ESP32 connected to a ILI9341 LCD
|
||||
// although it can certainly be compiled on other target MCUs and displays
|
||||
//
|
||||
#include <bb_spi_lcd.h>
|
||||
#include "JPEGDEC.h"
|
||||
#include "../test_images/thumb_test.h"
|
||||
|
||||
// These pin definitions are for a custom ESP32
|
||||
// board. Please change them to match the display
|
||||
// and board you're using
|
||||
|
||||
#define CS_PIN 4
|
||||
#define DC_PIN 12
|
||||
#define LED_PIN 16
|
||||
#define RESET_PIN -1
|
||||
#define MISO_PIN 19
|
||||
#define MOSI_PIN 23
|
||||
#define SCK_PIN 18
|
||||
|
||||
// Static instance of the JPEGDEC structure. It requires about
|
||||
// 17.5K of RAM. You can allocate it dynamically too. Internally it
|
||||
// does not allocate or free any memory; all memory management decisions
|
||||
// are left to you
|
||||
JPEGDEC jpeg;
|
||||
|
||||
// The LCD display library instance
|
||||
SPILCD lcd;
|
||||
//
|
||||
// Pixel drawing callback
|
||||
// called once for each set of MCUs (minimum coded units).
|
||||
// JPEGDEC will try to send as many pixels as it can per call.
|
||||
// In this case, it's as many as can fit in
|
||||
// the internal 4K pixel buffer. This allows it to run more
|
||||
// efficiently than calling this for every MCU. For this demo, the
|
||||
// MCUs are only 4x4 pixels each since we ask to decode the image
|
||||
// at 1/4 size
|
||||
//
|
||||
int drawMCUs(JPEGDRAW *pDraw)
|
||||
{
|
||||
int iCount;
|
||||
iCount = pDraw->iWidth * pDraw->iHeight; // number of pixels to draw in this call
|
||||
// Serial.printf("Draw pos = %d,%d. size = %d x %d\n", pDraw->x, pDraw->y, pDraw->iWidth, pDraw->iHeight);
|
||||
spilcdSetPosition(&lcd, pDraw->x, pDraw->y, pDraw->iWidth, pDraw->iHeight, DRAW_TO_LCD);
|
||||
spilcdWriteDataBlock(&lcd, (uint8_t *)pDraw->pPixels, iCount*2, DRAW_TO_LCD | DRAW_WITH_DMA);
|
||||
return 1; // returning true (1) tells JPEGDEC to continue decoding. Returning false (0) would quit decoding immediately.
|
||||
} /* drawMCUs() */
|
||||
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(115200);
|
||||
while (!Serial) {};
|
||||
spilcdInit(&lcd, LCD_ILI9341, FLAGS_NONE, 40000000, CS_PIN, DC_PIN, RESET_PIN, LED_PIN, MISO_PIN, MOSI_PIN, SCK_PIN);
|
||||
spilcdSetOrientation(&lcd, LCD_ORIENTATION_90);
|
||||
spilcdFill(&lcd, 0, DRAW_TO_LCD); // erase display to black
|
||||
spilcdWriteString(&lcd, 46,0,(char *)"JPEG Thumbnail test", 0x7e0,0,FONT_12x16, DRAW_TO_LCD);
|
||||
delay(4000);
|
||||
} /* setup() */
|
||||
|
||||
void loop() {
|
||||
long lTime;
|
||||
char szTemp[64];
|
||||
|
||||
// Open a large JPEG image stored in FLASH memory (included as thumb_test.h)
|
||||
// This image is 12 megapixels, but has a 320x240 embedded thumbnail in it
|
||||
if (jpeg.openFLASH((uint8_t *)thumb_test, sizeof(thumb_test), drawMCUs))
|
||||
{
|
||||
Serial.println("Successfully opened JPEG image");
|
||||
Serial.printf("Image size: %d x %d, orientation: %d, bpp: %d\n", jpeg.getWidth(),
|
||||
jpeg.getHeight(), jpeg.getOrientation(), jpeg.getBpp());
|
||||
if (jpeg.hasThumb())
|
||||
Serial.printf("Thumbnail present: %d x %d\n", jpeg.getThumbWidth(), jpeg.getThumbHeight());
|
||||
jpeg.setPixelType(RGB565_BIG_ENDIAN); // The SPI LCD wants the 16-bit pixels in big-endian order
|
||||
lTime = micros();
|
||||
// Draw the thumbnail image in the middle of the display (upper left corner = 120,100) at 1/4 scale
|
||||
if (jpeg.decode(120,100,JPEG_SCALE_QUARTER | JPEG_EXIF_THUMBNAIL))
|
||||
{
|
||||
lTime = micros() - lTime;
|
||||
sprintf(szTemp, "Successfully decoded image in %d us", (int)lTime);
|
||||
Serial.println(szTemp);
|
||||
spilcdWriteString(&lcd, 0, 200, szTemp, 0xffe0, 0, FONT_8x8, DRAW_TO_LCD);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
|
||||
delay(10000); // repeat every 10 seconds
|
||||
}
|
|
@ -0,0 +1,55 @@
|
|||
//
|
||||
// Perf Test
|
||||
//
|
||||
#include <JPEGDEC.h>
|
||||
#include "../test_images/tulips.h" // 640x480 56k byte test image
|
||||
JPEGDEC jpeg;
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
// do nothing
|
||||
return 1; // continue decode
|
||||
} /* JPEGDraw() */
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
delay(100); // allow time for Serial to start
|
||||
} /* setup() */
|
||||
|
||||
void loop() {
|
||||
long lTime;
|
||||
|
||||
if (jpeg.openFLASH((uint8_t *)tulips, sizeof(tulips), JPEGDraw)) {
|
||||
lTime = micros();
|
||||
if (jpeg.decode(0,0,0)) { // full sized decode
|
||||
lTime = micros() - lTime;
|
||||
// Serial.printf("full sized decode in %d us\n", (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
if (jpeg.openFLASH((uint8_t *)tulips, sizeof(tulips), JPEGDraw)) {
|
||||
lTime = micros();
|
||||
if (jpeg.decode(0,0,JPEG_SCALE_HALF)) { // 1/2 sized decode
|
||||
lTime = micros() - lTime;
|
||||
// Serial.printf("half sized decode in %d us\n", (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
if (jpeg.openFLASH((uint8_t *)tulips, sizeof(tulips), JPEGDraw)) {
|
||||
lTime = micros();
|
||||
if (jpeg.decode(0,0,JPEG_SCALE_QUARTER)) { // 1/4 sized decode
|
||||
lTime = micros() - lTime;
|
||||
// Serial.printf("quarter sized decode in %d us\n", (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
if (jpeg.openFLASH((uint8_t *)tulips, sizeof(tulips), JPEGDraw)) {
|
||||
lTime = micros();
|
||||
if (jpeg.decode(0,0,JPEG_SCALE_EIGHTH)) { // 1/8 sized decode
|
||||
lTime = micros() - lTime;
|
||||
// Serial.printf("eighth sized decode in %d us\n", (int)lTime);
|
||||
}
|
||||
jpeg.close();
|
||||
}
|
||||
delay(5000);
|
||||
} /* loop() */
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"name": "JPEGDEC",
|
||||
"version": "1.2.7",
|
||||
"description": "A fast JPEG library with a unique set of functions to make viewing image on microcontrollers easy. Includes fast downscaling options and the ability to view Exif embedded thumbnails. Supports baseline grayscale and color images with Huffman encoding.",
|
||||
"repository":
|
||||
{
|
||||
"type": "git",
|
||||
"url": "https://github.com/bitbank2/JPEGDEC"
|
||||
},
|
||||
"authors":
|
||||
[
|
||||
{
|
||||
"name": "Larry Bank"
|
||||
}
|
||||
],
|
||||
"license": "Apache License 2.0",
|
||||
"homepage": "https://github.com/bitbank2/JPEGDEC",
|
||||
"frameworks": "*",
|
||||
"platforms": "*"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
name=JPEGDEC
|
||||
version=1.5.0
|
||||
author=Larry Bank
|
||||
maintainer=Larry Bank
|
||||
sentence=Optimized JPEG decoder for MCUs with 32K+ RAM.
|
||||
paragraph=A fast JPEG library with a unique set of functions to make viewing image on microcontrollers easy. Includes fast downscaling options and the ability to view Exif embedded thumbnails. Supports baseline grayscale and color images with Huffman encoding.
|
||||
category=Display
|
||||
url=https://github.com/bitbank2/JPEGDEC
|
||||
architectures=*
|
||||
includes=JPEGDEC.h
|
|
@ -0,0 +1,301 @@
|
|||
// JPEG perf test
|
||||
// Written by Larry Bank
|
||||
//
|
||||
// Will open an arbitrary JPEG file if passed on the command line
|
||||
// or will use the sample image (tulips)
|
||||
//
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include "JPEGDEC.h"
|
||||
#include "jpeg.inl"
|
||||
#include "../test_images/tulips.h"
|
||||
|
||||
// Human readable error messages
|
||||
const char *szErrors[] = {"Success", "Invalid parameter", "Decode error", "Unsupported feature", "Invalid file"};
|
||||
|
||||
/* Windows BMP header for RGB565 images */
|
||||
uint8_t winbmphdr_rgb565[138] =
|
||||
{0x42,0x4d,0,0,0,0,0,0,0,0,0x8a,0,0,0,0x7c,0,
|
||||
0,0,0,0,0,0,0,0,0,0,1,0,8,0,3,0,
|
||||
0,0,0,0,0,0,0x13,0x0b,0,0,0x13,0x0b,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0xf8,0,0,0xe0,0x07,0,0,0x1f,0,
|
||||
0,0,0,0,0,0,0x42,0x47,0x52,0x73,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0};
|
||||
|
||||
/* Windows BMP header for 8/24/32-bit images (54 bytes) */
|
||||
uint8_t winbmphdr[54] =
|
||||
{0x42,0x4d,
|
||||
0,0,0,0, /* File size */
|
||||
0,0,0,0,0x36,4,0,0,0x28,0,0,0,
|
||||
0,0,0,0, /* Xsize */
|
||||
0,0,0,0, /* Ysize */
|
||||
1,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* number of planes, bits per pel */
|
||||
0,0,0,0};
|
||||
|
||||
JPEGIMAGE jpg;
|
||||
uint8_t *pFrame;
|
||||
int iDestPitch;
|
||||
//uint8_t ucDitherBuffer[1024 * 16];
|
||||
int ucPixelType = RGB565_BIG_ENDIAN; // default output used for SPI LCDs
|
||||
|
||||
//
|
||||
// Minimal code to save frames as Windows BMP files
|
||||
//
|
||||
void WriteBMP(char *fname, uint8_t *pBitmap, uint8_t *pPalette, int cx, int cy, int bpp, int iDestPitch)
|
||||
{
|
||||
FILE * oHandle;
|
||||
int i, bsize, lsize;
|
||||
uint32_t *l;
|
||||
uint8_t *s;
|
||||
uint8_t *ucTemp;
|
||||
uint8_t *pHdr;
|
||||
int iHeaderSize;
|
||||
|
||||
ucTemp = (uint8_t *)malloc(cx * 4);
|
||||
|
||||
if (bpp == 16) {
|
||||
pHdr = winbmphdr_rgb565;
|
||||
iHeaderSize = sizeof(winbmphdr_rgb565);
|
||||
} else {
|
||||
pHdr = winbmphdr;
|
||||
iHeaderSize = sizeof(winbmphdr);
|
||||
}
|
||||
|
||||
oHandle = fopen(fname, "w+b");
|
||||
bsize = (cx * bpp) >> 3;
|
||||
lsize = (bsize + 3) & 0xfffc; /* Width of each line */
|
||||
pHdr[26] = 1; // number of planes
|
||||
pHdr[28] = (uint8_t)bpp;
|
||||
|
||||
/* Write the BMP header */
|
||||
l = (uint32_t *)&pHdr[2];
|
||||
i =(cy * lsize) + iHeaderSize;
|
||||
if (bpp <= 8)
|
||||
i += 1024;
|
||||
*l = (uint32_t)i; /* Store the file size */
|
||||
l = (uint32_t *)&pHdr[34]; // data size
|
||||
i = (cy * lsize);
|
||||
*l = (uint32_t)i; // store data size
|
||||
l = (uint32_t *)&pHdr[18];
|
||||
*l = (uint32_t)cx; /* width */
|
||||
*(l+1) = (uint32_t)cy; /* height */
|
||||
l = (uint32_t *)&pHdr[10]; // OFFBITS
|
||||
if (bpp <= 8) {
|
||||
*l = iHeaderSize + 1024;
|
||||
} else { // no palette
|
||||
*l = iHeaderSize;
|
||||
}
|
||||
fwrite(pHdr, 1, iHeaderSize, oHandle);
|
||||
if (bpp <= 8) {
|
||||
if (pPalette == NULL) {// create a grayscale palette
|
||||
int iDelta, iCount = 1<<bpp;
|
||||
int iGray = 0;
|
||||
iDelta = 255/(iCount-1);
|
||||
for (i=0; i<iCount; i++) {
|
||||
ucTemp[i*4+0] = (uint8_t)iGray;
|
||||
ucTemp[i*4+1] = (uint8_t)iGray;
|
||||
ucTemp[i*4+2] = (uint8_t)iGray;
|
||||
ucTemp[i*4+3] = 0;
|
||||
iGray += iDelta;
|
||||
}
|
||||
} else {
|
||||
for (i=0; i<256; i++) // change palette to WinBMP format
|
||||
{
|
||||
ucTemp[i*4 + 0] = pPalette[(i*3)+2];
|
||||
ucTemp[i*4 + 1] = pPalette[(i*3)+1];
|
||||
ucTemp[i*4 + 2] = pPalette[(i*3)+0];
|
||||
ucTemp[i*4 + 3] = 0;
|
||||
}
|
||||
}
|
||||
fwrite(ucTemp, 1, 1024, oHandle);
|
||||
} // palette write
|
||||
/* Write the image data */
|
||||
for (i=cy-1; i>=0; i--)
|
||||
{
|
||||
s = &pBitmap[i*iDestPitch];
|
||||
if (bpp == 24) { // swap R/B for Windows BMP byte order
|
||||
int j, iBpp = bpp/8;
|
||||
uint8_t *d = ucTemp;
|
||||
for (j=0; j<cx; j++) {
|
||||
d[0] = s[2]; d[1] = s[1]; d[2] = s[0];
|
||||
d += iBpp; s += iBpp;
|
||||
}
|
||||
fwrite(ucTemp, 1, (size_t)lsize, oHandle);
|
||||
} else {
|
||||
fwrite(s, 1, (size_t)lsize, oHandle);
|
||||
}
|
||||
}
|
||||
free(ucTemp);
|
||||
fclose(oHandle);
|
||||
} /* WriteBMP() */
|
||||
|
||||
long micros(void)
|
||||
{
|
||||
long iTime;
|
||||
struct timespec res;
|
||||
|
||||
clock_gettime(CLOCK_MONOTONIC, &res);
|
||||
iTime = 1000000*res.tv_sec + res.tv_nsec/1000;
|
||||
|
||||
return iTime;
|
||||
} /* micros() */
|
||||
|
||||
int ConvertFileTest(char *argv[], int iFraction)
|
||||
{
|
||||
int i, rc;
|
||||
int cx, cy, bpp;
|
||||
int iOption;
|
||||
long lTime;
|
||||
|
||||
if (iFraction == 2) {
|
||||
iOption = JPEG_SCALE_HALF;
|
||||
} else if (iFraction == 4) {
|
||||
iOption = JPEG_SCALE_QUARTER;
|
||||
} else if (iFraction == 8) {
|
||||
iOption = JPEG_SCALE_EIGHTH;
|
||||
} else {
|
||||
iOption = 0; // full size
|
||||
}
|
||||
|
||||
ucPixelType = RGB565_LITTLE_ENDIAN; //RGB8888; // generate 32-bit pixels for a Windows BMP file
|
||||
rc = JPEG_openFile(&jpg, argv[1], NULL);
|
||||
if (!rc) {
|
||||
printf("Error opening file %s\n", argv[1]);
|
||||
return -1;
|
||||
}
|
||||
cx = jpg.iWidth / iFraction;
|
||||
cy = jpg.iHeight / iFraction;
|
||||
cx = (cx + 7) & 0xfff8; // align on at least 16-byte boundary
|
||||
if (ucPixelType == RGB8888) {
|
||||
iDestPitch = (cx * 4); // 32-bits per pixel
|
||||
bpp = 32;
|
||||
} else {
|
||||
iDestPitch = cx * 2; // 16-bpp
|
||||
bpp = 16;
|
||||
}
|
||||
i = iDestPitch * (cy+15);
|
||||
pFrame = (uint8_t *)malloc(i);
|
||||
if (pFrame == NULL) {
|
||||
printf("Error allocating %d bytes\n", i);
|
||||
return -1;
|
||||
}
|
||||
JPEG_setFramebuffer(&jpg, pFrame);
|
||||
jpg.ucPixelType = ucPixelType;
|
||||
lTime = micros();
|
||||
printf("Converting %d x %d image, fraction = %d\n", cx, cy, iFraction);
|
||||
if (JPEG_decode(&jpg, 0, 0, iOption)) {
|
||||
lTime = micros() - lTime;
|
||||
printf("JPEG decoded in %d us\n", (int)lTime);
|
||||
WriteBMP(argv[2], pFrame, NULL, cx, cy, bpp, iDestPitch);
|
||||
} else {
|
||||
printf("Decode failed, last error = %s\n", szErrors[JPEG_getLastError(&jpg)]);
|
||||
return -1;
|
||||
}
|
||||
JPEG_close(&jpg);
|
||||
return 0;
|
||||
} /* ConvertFileTest() */
|
||||
|
||||
int JPEGDraw(JPEGDRAW *pDraw)
|
||||
{
|
||||
(void)pDraw;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int PerfTest(int argc, char *argv[])
|
||||
{
|
||||
int rc;
|
||||
long lTime;
|
||||
|
||||
// first test full size decoding
|
||||
if (argc == 1) {
|
||||
rc = JPEG_openRAM(&jpg, (uint8_t *)tulips, sizeof(tulips), JPEGDraw);
|
||||
} else {
|
||||
rc = JPEG_openFile(&jpg, argv[1], JPEGDraw);
|
||||
}
|
||||
if (rc)
|
||||
{
|
||||
lTime = micros();
|
||||
// jpg.pDitherBuffer = ucDitherBuffer; // not used in this test
|
||||
jpg.ucPixelType = ucPixelType;
|
||||
if (JPEG_decode(&jpg, 0, 0, 0)) { // full size
|
||||
lTime = micros() - lTime;
|
||||
printf("full sized decode in %d us\n", (int)lTime);
|
||||
} else {
|
||||
printf("Decode failed, last error = %d\n", JPEG_getLastError(&jpg));
|
||||
return 0;
|
||||
}
|
||||
JPEG_close(&jpg);
|
||||
} else {
|
||||
printf("open() failed, last error = %d\n", JPEG_getLastError(&jpg));
|
||||
return -1;
|
||||
}
|
||||
// Half size scaled test
|
||||
if (argc == 2)
|
||||
rc = JPEG_openFile(&jpg, argv[1], JPEGDraw);
|
||||
else
|
||||
rc = JPEG_openRAM(&jpg, (uint8_t *)tulips, sizeof(tulips), JPEGDraw);
|
||||
if (rc)
|
||||
{
|
||||
lTime = micros();
|
||||
if (JPEG_decode(&jpg, 0, 0, JPEG_SCALE_HALF)) { // 1/2 size
|
||||
lTime = micros() - lTime;
|
||||
printf("half sized decode in %d us\n", (int)lTime);
|
||||
}
|
||||
JPEG_close(&jpg);
|
||||
}
|
||||
// Quarter size scaled test
|
||||
if (argc == 2)
|
||||
rc = JPEG_openFile(&jpg, argv[1], JPEGDraw);
|
||||
else
|
||||
rc = JPEG_openRAM(&jpg, (uint8_t *)tulips, sizeof(tulips), JPEGDraw);
|
||||
if (rc)
|
||||
{
|
||||
lTime = micros();
|
||||
if (JPEG_decode(&jpg, 0, 0, JPEG_SCALE_QUARTER)) { // 1/4 size
|
||||
lTime = micros() - lTime;
|
||||
printf("quarter sized decode in %d us\n", (int)lTime);
|
||||
}
|
||||
JPEG_close(&jpg);
|
||||
}
|
||||
// Eighth size scaled test
|
||||
if (argc == 2)
|
||||
rc = JPEG_openFile(&jpg, argv[1], JPEGDraw);
|
||||
else
|
||||
rc = JPEG_openRAM(&jpg, (uint8_t *)tulips, sizeof(tulips), JPEGDraw);
|
||||
if (rc)
|
||||
{
|
||||
lTime = micros();
|
||||
if (JPEG_decode(&jpg, 0, 0, JPEG_SCALE_EIGHTH)) { // 1/8 size
|
||||
lTime = micros() - lTime;
|
||||
printf("eighth sized decode in %d us\n", (int)lTime);
|
||||
}
|
||||
JPEG_close(&jpg);
|
||||
}
|
||||
return 0; // done
|
||||
} /* PerfTest() */
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int rc = -1;
|
||||
|
||||
printf("JPEG decoder demo\n");
|
||||
printf("options:\n");
|
||||
printf("Run without parameters to test in-memory decoding\n");
|
||||
printf("Pass a single filename to test decoding performance\n");
|
||||
printf("Pass 2 filenames to convert a JPEG file to a BMP file\n");
|
||||
printf("e.g. ./jpegdec <infile.jpg> <outfile.bmp>\n\n");
|
||||
|
||||
if (argc == 1 || argc == 2) {
|
||||
rc = PerfTest(argc, argv);
|
||||
} else if (argc == 3) {
|
||||
rc = ConvertFileTest(argv, 1); // change the 1 to 2/4/8 for fractional decode
|
||||
} else {
|
||||
printf("Invalid number of parameters (re-read the above)\n");
|
||||
return rc;
|
||||
}
|
||||
return rc;
|
||||
} /* main() */
|
|
@ -0,0 +1,13 @@
|
|||
CFLAGS=-c -Wall -O2 -I../src -D__LINUX__
|
||||
LIBS = -lm -lpthread
|
||||
|
||||
all: jpegdec
|
||||
|
||||
jpegdec: main.o
|
||||
$(CC) main.o $(LIBS) -o jpegdec
|
||||
|
||||
main.o: main.c ../src/JPEGDEC.h makefile
|
||||
$(CC) $(CFLAGS) main.c
|
||||
|
||||
clean:
|
||||
rm *.o jpegdec
|
Binary file not shown.
After Width: | Height: | Size: 192 KiB |
Binary file not shown.
After Width: | Height: | Size: 473 KiB |
|
@ -0,0 +1,250 @@
|
|||
//
|
||||
// JPEG Decoder
|
||||
//
|
||||
// written by Larry Bank
|
||||
// bitbank@pobox.com
|
||||
// Arduino port started 8/2/2020
|
||||
// Original JPEG code written 26+ years ago :)
|
||||
// The goal of this code is to decode baseline JPEG images
|
||||
// using no more than 18K of RAM (if sent directly to an LCD display)
|
||||
//
|
||||
// Copyright 2020 BitBank Software, Inc. All Rights Reserved.
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//===========================================================================
|
||||
//
|
||||
#include "JPEGDEC.h"
|
||||
|
||||
// forward references
|
||||
JPEG_STATIC int JPEGInit(JPEGIMAGE *pJPEG);
|
||||
JPEG_STATIC int JPEGParseInfo(JPEGIMAGE *pPage, int bExtractThumb);
|
||||
JPEG_STATIC void JPEGGetMoreData(JPEGIMAGE *pPage);
|
||||
JPEG_STATIC int DecodeJPEG(JPEGIMAGE *pImage);
|
||||
JPEG_STATIC void JPEG_setFramebuffer(JPEGIMAGE *pPage, void *pFramebuffer);
|
||||
void JPEG_setCropArea(JPEGIMAGE *pJPEG, int x, int y, int w, int h);
|
||||
void JPEG_getCropArea(JPEGIMAGE *pJPEG, int *x, int *y, int *w, int *h);
|
||||
void JPEG_setFramebuffer(JPEGIMAGE *pJPEG, void *pFramebuffer);
|
||||
|
||||
// Include the C code which does the actual work
|
||||
#include "jpeg.inl"
|
||||
|
||||
void JPEGDEC::setFramebuffer(void *pFramebuffer)
|
||||
{
|
||||
JPEG_setFramebuffer(&_jpeg, pFramebuffer);
|
||||
} /* setFramebuffer() */
|
||||
|
||||
void JPEGDEC::setPixelType(int iType)
|
||||
{
|
||||
if (iType >= 0 && iType < INVALID_PIXEL_TYPE)
|
||||
_jpeg.ucPixelType = (uint8_t)iType;
|
||||
else
|
||||
_jpeg.iError = JPEG_INVALID_PARAMETER;
|
||||
} /* setPixelType() */
|
||||
|
||||
void JPEGDEC::setMaxOutputSize(int iMaxMCUs)
|
||||
{
|
||||
if (iMaxMCUs < 1)
|
||||
iMaxMCUs = 1; // don't allow invalid value
|
||||
_jpeg.iMaxMCUs = iMaxMCUs;
|
||||
} /* setMaxOutputSize() */
|
||||
//
|
||||
// Memory initialization
|
||||
//
|
||||
int JPEGDEC::openRAM(uint8_t *pData, int iDataSize, JPEG_DRAW_CALLBACK *pfnDraw)
|
||||
{
|
||||
memset(&_jpeg, 0, sizeof(JPEGIMAGE));
|
||||
_jpeg.ucMemType = JPEG_MEM_RAM;
|
||||
_jpeg.pfnRead = readRAM;
|
||||
_jpeg.pfnSeek = seekMem;
|
||||
_jpeg.pfnDraw = pfnDraw;
|
||||
_jpeg.pfnOpen = NULL;
|
||||
_jpeg.pfnClose = NULL;
|
||||
_jpeg.JPEGFile.iSize = iDataSize;
|
||||
_jpeg.JPEGFile.pData = pData;
|
||||
_jpeg.iMaxMCUs = 1000; // set to an unnaturally high value to start
|
||||
return JPEGInit(&_jpeg);
|
||||
} /* openRAM() */
|
||||
|
||||
int JPEGDEC::openFLASH(uint8_t *pData, int iDataSize, JPEG_DRAW_CALLBACK *pfnDraw)
|
||||
{
|
||||
memset(&_jpeg, 0, sizeof(JPEGIMAGE));
|
||||
_jpeg.ucMemType = JPEG_MEM_FLASH;
|
||||
_jpeg.pfnRead = readFLASH;
|
||||
_jpeg.pfnSeek = seekMem;
|
||||
_jpeg.pfnDraw = pfnDraw;
|
||||
_jpeg.pfnOpen = NULL;
|
||||
_jpeg.pfnClose = NULL;
|
||||
_jpeg.JPEGFile.iSize = iDataSize;
|
||||
_jpeg.JPEGFile.pData = pData;
|
||||
_jpeg.iMaxMCUs = 1000; // set to an unnaturally high value to start
|
||||
return JPEGInit(&_jpeg);
|
||||
} /* openRAM() */
|
||||
|
||||
int JPEGDEC::getOrientation()
|
||||
{
|
||||
return (int)_jpeg.ucOrientation;
|
||||
} /* getOrientation() */
|
||||
|
||||
int JPEGDEC::getLastError()
|
||||
{
|
||||
return _jpeg.iError;
|
||||
} /* getLastError() */
|
||||
|
||||
int JPEGDEC::getWidth()
|
||||
{
|
||||
return _jpeg.iWidth;
|
||||
} /* getWidth() */
|
||||
|
||||
int JPEGDEC::getHeight()
|
||||
{
|
||||
return _jpeg.iHeight;
|
||||
} /* getHeight() */
|
||||
|
||||
int JPEGDEC::hasThumb()
|
||||
{
|
||||
return (int)_jpeg.ucHasThumb;
|
||||
} /* hasThumb() */
|
||||
|
||||
int JPEGDEC::getThumbWidth()
|
||||
{
|
||||
return _jpeg.iThumbWidth;
|
||||
} /* getThumbWidth() */
|
||||
|
||||
int JPEGDEC::getThumbHeight()
|
||||
{
|
||||
return _jpeg.iThumbHeight;
|
||||
} /* getThumbHeight() */
|
||||
|
||||
int JPEGDEC::getBpp()
|
||||
{
|
||||
return (int)_jpeg.ucBpp;
|
||||
} /* getBpp() */
|
||||
|
||||
int JPEGDEC::getSubSample()
|
||||
{
|
||||
return (int)_jpeg.ucSubSample;
|
||||
} /* getSubSample() */
|
||||
|
||||
void JPEGDEC::setCropArea(int x, int y, int w, int h)
|
||||
{
|
||||
JPEG_setCropArea(&_jpeg, x, y, w, h);
|
||||
} /* setCropArea() */
|
||||
|
||||
void JPEGDEC::getCropArea(int *x, int *y, int *w, int *h)
|
||||
{
|
||||
JPEG_getCropArea(&_jpeg, x, y, w, h);
|
||||
} /* getCropArea() */
|
||||
|
||||
//
|
||||
// File (SD/MMC) based initialization
|
||||
//
|
||||
int JPEGDEC::open(const char *szFilename, JPEG_OPEN_CALLBACK *pfnOpen, JPEG_CLOSE_CALLBACK *pfnClose, JPEG_READ_CALLBACK *pfnRead, JPEG_SEEK_CALLBACK *pfnSeek, JPEG_DRAW_CALLBACK *pfnDraw)
|
||||
{
|
||||
memset(&_jpeg, 0, sizeof(JPEGIMAGE));
|
||||
_jpeg.pfnRead = pfnRead;
|
||||
_jpeg.pfnSeek = pfnSeek;
|
||||
_jpeg.pfnDraw = pfnDraw;
|
||||
_jpeg.pfnOpen = pfnOpen;
|
||||
_jpeg.pfnClose = pfnClose;
|
||||
_jpeg.iMaxMCUs = 1000; // set to an unnaturally high value to start
|
||||
_jpeg.JPEGFile.fHandle = (*pfnOpen)(szFilename, &_jpeg.JPEGFile.iSize);
|
||||
if (_jpeg.JPEGFile.fHandle == NULL)
|
||||
return 0;
|
||||
return JPEGInit(&_jpeg);
|
||||
|
||||
} /* open() */
|
||||
|
||||
//
|
||||
// data stream initialization
|
||||
//
|
||||
int JPEGDEC::open(void *fHandle, int iDataSize, JPEG_CLOSE_CALLBACK *pfnClose, JPEG_READ_CALLBACK *pfnRead, JPEG_SEEK_CALLBACK *pfnSeek, JPEG_DRAW_CALLBACK *pfnDraw)
|
||||
{
|
||||
memset(&_jpeg, 0, sizeof(JPEGIMAGE));
|
||||
_jpeg.pfnRead = pfnRead;
|
||||
_jpeg.pfnSeek = pfnSeek;
|
||||
_jpeg.pfnDraw = pfnDraw;
|
||||
_jpeg.pfnClose = pfnClose;
|
||||
_jpeg.iMaxMCUs = 1000; // set to an unnaturally high value to start
|
||||
_jpeg.JPEGFile.iSize = iDataSize;
|
||||
_jpeg.JPEGFile.fHandle = fHandle;
|
||||
return JPEGInit(&_jpeg);
|
||||
} /* open() */
|
||||
|
||||
#ifdef FS_H
|
||||
static int32_t FileRead(JPEGFILE *handle, uint8_t *buffer, int32_t length)
|
||||
{
|
||||
return ((File *)(handle->fHandle))->read(buffer, length);
|
||||
}
|
||||
static int32_t FileSeek(JPEGFILE *handle, int32_t position)
|
||||
{
|
||||
return ((File *)(handle->fHandle))->seek(position);
|
||||
}
|
||||
static void FileClose(void *handle)
|
||||
{
|
||||
((File *)handle)->close();
|
||||
}
|
||||
|
||||
int JPEGDEC::open(File &file, JPEG_DRAW_CALLBACK *pfnDraw)
|
||||
{
|
||||
if (!file) return 0;
|
||||
memset(&_jpeg, 0, sizeof(JPEGIMAGE));
|
||||
_jpeg.pfnRead = FileRead;
|
||||
_jpeg.pfnSeek = FileSeek;
|
||||
_jpeg.pfnClose = FileClose;
|
||||
_jpeg.pfnDraw = pfnDraw;
|
||||
_jpeg.iMaxMCUs = 1000;
|
||||
_jpeg.JPEGFile.fHandle = &file;
|
||||
_jpeg.JPEGFile.iSize = file.size();
|
||||
return JPEGInit(&_jpeg);
|
||||
}
|
||||
#endif // FS_H
|
||||
|
||||
void JPEGDEC::close()
|
||||
{
|
||||
if (_jpeg.pfnClose)
|
||||
(*_jpeg.pfnClose)(_jpeg.JPEGFile.fHandle);
|
||||
} /* close() */
|
||||
|
||||
//
|
||||
// Decode the image
|
||||
// returns:
|
||||
// 1 = good result
|
||||
// 0 = error
|
||||
//
|
||||
int JPEGDEC::decode(int x, int y, int iOptions)
|
||||
{
|
||||
_jpeg.iXOffset = x;
|
||||
_jpeg.iYOffset = y;
|
||||
_jpeg.iOptions = iOptions;
|
||||
return DecodeJPEG(&_jpeg);
|
||||
} /* decode() */
|
||||
//
|
||||
// set draw callback user pointer variable
|
||||
//
|
||||
void JPEGDEC::setUserPointer(void *p)
|
||||
{
|
||||
_jpeg.pUser = p;
|
||||
}
|
||||
|
||||
int JPEGDEC::decodeDither(int x, int y, uint8_t *pDither, int iOptions)
|
||||
{
|
||||
_jpeg.iXOffset = x;
|
||||
_jpeg.iYOffset = y;
|
||||
_jpeg.iOptions = iOptions;
|
||||
_jpeg.pDitherBuffer = pDither;
|
||||
return DecodeJPEG(&_jpeg);
|
||||
}
|
||||
|
||||
int JPEGDEC::decodeDither(uint8_t *pDither, int iOptions)
|
||||
{
|
||||
_jpeg.iOptions = iOptions;
|
||||
_jpeg.pDitherBuffer = pDither;
|
||||
return DecodeJPEG(&_jpeg);
|
||||
}
|
|
@ -0,0 +1,309 @@
|
|||
//
|
||||
// Copyright 2020 BitBank Software, Inc. All Rights Reserved.
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
//===========================================================================
|
||||
//
|
||||
#ifndef __JPEGDEC__
|
||||
#define __JPEGDEC__
|
||||
#if defined( __MACH__ ) || defined( __LINUX__ ) || defined( __MCUXPRESSO ) || defined( ESP_PLATFORM )
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#else
|
||||
#include <Arduino.h>
|
||||
#if !defined(HAL_ESP32_HAL_H_) && defined(__has_include) && __has_include(<FS.h>)
|
||||
#include <FS.h>
|
||||
#endif
|
||||
#endif
|
||||
#ifndef PROGMEM
|
||||
#define memcpy_P memcpy
|
||||
#define PROGMEM
|
||||
#endif
|
||||
// Cortex-M4/M7 allow unaligned access to SRAM
|
||||
#if defined(HAL_ESP32_HAL_H_) || defined(TEENSYDUINO) || defined(ARM_MATH_CM4) || defined(ARM_MATH_CM7) || defined (__x86_64__) || defined(TEENSYDUINO)
|
||||
#define ALLOWS_UNALIGNED
|
||||
#endif
|
||||
|
||||
#if defined (__aarch64__) || defined (__arm64__)
|
||||
#define HAS_NEON
|
||||
#define ALLOWS_UNALIGNED
|
||||
#endif // __aarch64
|
||||
//
|
||||
// JPEG Decoder
|
||||
// Written by Larry Bank
|
||||
// Copyright (c) 2020 BitBank Software, Inc.
|
||||
//
|
||||
// Designed to decode baseline JPEG images (8 or 24-bpp)
|
||||
// using less than 22K of RAM
|
||||
//
|
||||
|
||||
/* Defines and variables */
|
||||
#define FILE_HIGHWATER 1536
|
||||
#define JPEG_FILE_BUF_SIZE 2048
|
||||
#define HUFF_TABLEN 273
|
||||
#define HUFF11SIZE (1<<11)
|
||||
#define DC_TABLE_SIZE 1024
|
||||
#define DCTSIZE 64
|
||||
#define MAX_MCU_COUNT 6
|
||||
#define MAX_COMPS_IN_SCAN 4
|
||||
#define MAX_BUFFERED_PIXELS 2048
|
||||
#define MCU_SKIP -8
|
||||
|
||||
// Decoder options
|
||||
#define JPEG_AUTO_ROTATE 1
|
||||
#define JPEG_SCALE_HALF 2
|
||||
#define JPEG_SCALE_QUARTER 4
|
||||
#define JPEG_SCALE_EIGHTH 8
|
||||
#define JPEG_LE_PIXELS 16
|
||||
#define JPEG_EXIF_THUMBNAIL 32
|
||||
#define JPEG_LUMA_ONLY 64
|
||||
|
||||
#define MCU0 (DCTSIZE * 0)
|
||||
#define MCU1 (DCTSIZE * 1)
|
||||
#define MCU2 (DCTSIZE * 2)
|
||||
#define MCU3 (DCTSIZE * 3)
|
||||
#define MCU4 (DCTSIZE * 4)
|
||||
#define MCU5 (DCTSIZE * 5)
|
||||
|
||||
#if defined(__arm64__) || defined(__aarch64__) || defined (__x86_64__)
|
||||
#define REGISTER_WIDTH 64
|
||||
typedef uint64_t my_ulong;
|
||||
typedef int64_t my_long;
|
||||
#else
|
||||
#define REGISTER_WIDTH 32
|
||||
typedef uint32_t my_ulong;
|
||||
typedef int32_t my_long;
|
||||
#endif
|
||||
|
||||
// Pixel types (defaults to little endian RGB565)
|
||||
enum {
|
||||
RGB565_LITTLE_ENDIAN = 0,
|
||||
RGB565_BIG_ENDIAN,
|
||||
RGB8888,
|
||||
EIGHT_BIT_GRAYSCALE,
|
||||
FOUR_BIT_DITHERED,
|
||||
TWO_BIT_DITHERED,
|
||||
ONE_BIT_DITHERED,
|
||||
INVALID_PIXEL_TYPE
|
||||
};
|
||||
|
||||
enum {
|
||||
JPEG_MEM_RAM=0,
|
||||
JPEG_MEM_FLASH
|
||||
};
|
||||
|
||||
// Error codes returned by getLastError()
|
||||
enum {
|
||||
JPEG_SUCCESS = 0,
|
||||
JPEG_INVALID_PARAMETER,
|
||||
JPEG_DECODE_ERROR,
|
||||
JPEG_UNSUPPORTED_FEATURE,
|
||||
JPEG_INVALID_FILE
|
||||
};
|
||||
|
||||
typedef struct buffered_bits
|
||||
{
|
||||
unsigned char *pBuf; // buffer pointer
|
||||
my_ulong ulBits; // buffered bits
|
||||
uint32_t ulBitOff; // current bit offset
|
||||
} BUFFERED_BITS;
|
||||
|
||||
typedef struct jpeg_file_tag
|
||||
{
|
||||
int32_t iPos; // current file position
|
||||
int32_t iSize; // file size
|
||||
uint8_t *pData; // memory file pointer
|
||||
void * fHandle; // class pointer to File/SdFat or whatever you want
|
||||
} JPEGFILE;
|
||||
|
||||
typedef struct jpeg_draw_tag
|
||||
{
|
||||
int x, y; // upper left corner of current MCU
|
||||
int iWidth, iHeight; // size of this pixel block
|
||||
int iWidthUsed; // clipped size for odd/edges
|
||||
int iBpp; // bit depth of the pixels (8 or 16)
|
||||
uint16_t *pPixels; // 16-bit pixels
|
||||
void *pUser;
|
||||
} JPEGDRAW;
|
||||
|
||||
// Callback function prototypes
|
||||
typedef int32_t (JPEG_READ_CALLBACK)(JPEGFILE *pFile, uint8_t *pBuf, int32_t iLen);
|
||||
typedef int32_t (JPEG_SEEK_CALLBACK)(JPEGFILE *pFile, int32_t iPosition);
|
||||
typedef int (JPEG_DRAW_CALLBACK)(JPEGDRAW *pDraw);
|
||||
typedef void * (JPEG_OPEN_CALLBACK)(const char *szFilename, int32_t *pFileSize);
|
||||
typedef void (JPEG_CLOSE_CALLBACK)(void *pHandle);
|
||||
|
||||
/* JPEG color component info */
|
||||
typedef struct _jpegcompinfo
|
||||
{
|
||||
// These values are fixed over the whole image
|
||||
// For compression, they must be supplied by the user interface
|
||||
// for decompression, they are read from the SOF marker.
|
||||
unsigned char component_needed; /* do we need the value of this component? */
|
||||
unsigned char component_id; /* identifier for this component (0..255) */
|
||||
unsigned char component_index; /* its index in SOF or cinfo->comp_info[] */
|
||||
//unsigned char h_samp_factor; /* horizontal sampling factor (1..4) */
|
||||
//unsigned char v_samp_factor; /* vertical sampling factor (1..4) */
|
||||
unsigned char quant_tbl_no; /* quantization table selector (0..3) */
|
||||
// These values may vary between scans
|
||||
// For compression, they must be supplied by the user interface
|
||||
// for decompression, they are read from the SOS marker.
|
||||
unsigned char dc_tbl_no; /* DC entropy table selector (0..3) */
|
||||
unsigned char ac_tbl_no; /* AC entropy table selector (0..3) */
|
||||
// These values are computed during compression or decompression startup
|
||||
//int true_comp_width; /* component's image width in samples */
|
||||
//int true_comp_height; /* component's image height in samples */
|
||||
// the above are the logical dimensions of the downsampled image
|
||||
// These values are computed before starting a scan of the component
|
||||
//int MCU_width; /* number of blocks per MCU, horizontally */
|
||||
//int MCU_height; /* number of blocks per MCU, vertically */
|
||||
//int MCU_blocks; /* MCU_width * MCU_height */
|
||||
//int downsampled_width; /* image width in samples, after expansion */
|
||||
//int downsampled_height; /* image height in samples, after expansion */
|
||||
// the above are the true_comp_xxx values rounded up to multiples of
|
||||
// the MCU dimensions; these are the working dimensions of the array
|
||||
// as it is passed through the DCT or IDCT step. NOTE: these values
|
||||
// differ depending on whether the component is interleaved or not!!
|
||||
// This flag is used only for decompression. In cases where some of the
|
||||
// components will be ignored (eg grayscale output from YCbCr image),
|
||||
// we can skip IDCT etc. computations for the unused components.
|
||||
} JPEGCOMPINFO;
|
||||
|
||||
//
|
||||
// our private structure to hold a JPEG image decode state
|
||||
//
|
||||
typedef struct jpeg_image_tag
|
||||
{
|
||||
int iWidth, iHeight; // image size
|
||||
int iThumbWidth, iThumbHeight; // thumbnail size (if present)
|
||||
int iThumbData; // offset to image data
|
||||
int iXOffset, iYOffset; // placement on the display
|
||||
int iCropX, iCropY, iCropCX, iCropCY; // crop area
|
||||
uint8_t ucBpp, ucSubSample, ucHuffTableUsed;
|
||||
uint8_t ucMode, ucOrientation, ucHasThumb, b11Bit;
|
||||
uint8_t ucComponentsInScan, cApproxBitsLow, cApproxBitsHigh;
|
||||
uint8_t iScanStart, iScanEnd, ucFF, ucNumComponents;
|
||||
uint8_t ucACTable, ucDCTable;
|
||||
uint8_t ucMemType, ucPixelType;
|
||||
uint16_t u16MCUFlags;
|
||||
int iEXIF; // Offset to EXIF 'TIFF' file
|
||||
int iError;
|
||||
int iOptions;
|
||||
int iVLCOff; // current VLC data offset
|
||||
int iVLCSize; // current quantity of data in the VLC buffer
|
||||
int iResInterval, iResCount; // restart interval
|
||||
int iMaxMCUs; // max MCUs of pixels per JPEGDraw call
|
||||
JPEG_READ_CALLBACK *pfnRead;
|
||||
JPEG_SEEK_CALLBACK *pfnSeek;
|
||||
JPEG_DRAW_CALLBACK *pfnDraw;
|
||||
JPEG_OPEN_CALLBACK *pfnOpen;
|
||||
JPEG_CLOSE_CALLBACK *pfnClose;
|
||||
JPEGCOMPINFO JPCI[MAX_COMPS_IN_SCAN]; /* Max color components */
|
||||
JPEGFILE JPEGFile;
|
||||
BUFFERED_BITS bb;
|
||||
void *pUser;
|
||||
uint8_t *pDitherBuffer; // provided externally to do Floyd-Steinberg dithering
|
||||
uint16_t *usPixels; // needs to be 16-byte aligned for S3 SIMD
|
||||
uint16_t usUnalignedPixels[MAX_BUFFERED_PIXELS+8];
|
||||
int16_t *sMCUs; // needs to be 16-byte aligned for S3 SIMD
|
||||
int16_t sUnalignedMCUs[8+(DCTSIZE * MAX_MCU_COUNT)]; // 4:2:0 needs 6 DCT blocks per MCU
|
||||
void *pFramebuffer;
|
||||
int16_t sQuantTable[DCTSIZE*4]; // quantization tables
|
||||
uint8_t ucFileBuf[JPEG_FILE_BUF_SIZE]; // holds temp data and pixel stack
|
||||
uint8_t ucHuffDC[DC_TABLE_SIZE * 2]; // up to 2 'short' tables
|
||||
uint16_t usHuffAC[HUFF11SIZE * 2];
|
||||
} JPEGIMAGE;
|
||||
|
||||
#ifdef __cplusplus
|
||||
#if defined(__has_include) && __has_include(<FS.h>)
|
||||
#include "FS.h"
|
||||
#endif
|
||||
#define JPEG_STATIC static
|
||||
//
|
||||
// The JPEGDEC class wraps portable C code which does the actual work
|
||||
//
|
||||
class JPEGDEC
|
||||
{
|
||||
public:
|
||||
int openRAM(uint8_t *pData, int iDataSize, JPEG_DRAW_CALLBACK *pfnDraw);
|
||||
int openFLASH(uint8_t *pData, int iDataSize, JPEG_DRAW_CALLBACK *pfnDraw);
|
||||
int open(const char *szFilename, JPEG_OPEN_CALLBACK *pfnOpen, JPEG_CLOSE_CALLBACK *pfnClose, JPEG_READ_CALLBACK *pfnRead, JPEG_SEEK_CALLBACK *pfnSeek, JPEG_DRAW_CALLBACK *pfnDraw);
|
||||
int open(void *fHandle, int iDataSize, JPEG_CLOSE_CALLBACK *pfnClose, JPEG_READ_CALLBACK *pfnRead, JPEG_SEEK_CALLBACK *pfnSeek, JPEG_DRAW_CALLBACK *pfnDraw);
|
||||
void setFramebuffer(void *pFramebuffer);
|
||||
void setCropArea(int x, int y, int w, int h);
|
||||
void getCropArea(int *x, int *y, int *w, int *h);
|
||||
|
||||
#ifdef FS_H
|
||||
int open(File &file, JPEG_DRAW_CALLBACK *pfnDraw);
|
||||
#endif
|
||||
void close();
|
||||
int decode(int x, int y, int iOptions);
|
||||
int decodeDither(uint8_t *pDither, int iOptions);
|
||||
int decodeDither(int x, int y, uint8_t *pDither, int iOptions);
|
||||
int getOrientation();
|
||||
int getWidth();
|
||||
int getHeight();
|
||||
int getBpp();
|
||||
void setUserPointer(void *p);
|
||||
int getSubSample();
|
||||
int hasThumb();
|
||||
int getThumbWidth();
|
||||
int getThumbHeight();
|
||||
int getLastError();
|
||||
void setPixelType(int iType); // defaults to little endian
|
||||
void setMaxOutputSize(int iMaxMCUs);
|
||||
|
||||
private:
|
||||
JPEGIMAGE _jpeg;
|
||||
};
|
||||
#else
|
||||
#define JPEG_STATIC
|
||||
int JPEG_openRAM(JPEGIMAGE *pJPEG, uint8_t *pData, int iDataSize, JPEG_DRAW_CALLBACK *pfnDraw);
|
||||
void JPEG_setFramebuffer(JPEGIMAGE *pJPEG, void *pFramebuffer);
|
||||
void JPEG_setCropArea(JPEGIMAGE *pJPEG, int x, int y, int w, int h);
|
||||
void JPEG_getCropArea(JPEGIMAGE *pJPEG, int *x, int *y, int *w, int *h);
|
||||
int JPEG_openFile(JPEGIMAGE *pJPEG, const char *szFilename, JPEG_DRAW_CALLBACK *pfnDraw);
|
||||
int JPEG_getWidth(JPEGIMAGE *pJPEG);
|
||||
int JPEG_getHeight(JPEGIMAGE *pJPEG);
|
||||
int JPEG_decode(JPEGIMAGE *pJPEG, int x, int y, int iOptions);
|
||||
int JPEG_decodeDither(JPEGIMAGE *pJPEG, uint8_t *pDither, int iOptions);
|
||||
void JPEG_close(JPEGIMAGE *pJPEG);
|
||||
int JPEG_getLastError(JPEGIMAGE *pJPEG);
|
||||
int JPEG_getOrientation(JPEGIMAGE *pJPEG);
|
||||
int JPEG_getBpp(JPEGIMAGE *pJPEG);
|
||||
int JPEG_getSubSample(JPEGIMAGE *pJPEG);
|
||||
int JPEG_hasThumb(JPEGIMAGE *pJPEG);
|
||||
int JPEG_getThumbWidth(JPEGIMAGE *pJPEG);
|
||||
int JPEG_getThumbHeight(JPEGIMAGE *pJPEG);
|
||||
int JPEG_getLastError(JPEGIMAGE *pJPEG);
|
||||
void JPEG_setPixelType(JPEGIMAGE *pJPEG, int iType); // defaults to little endian
|
||||
void JPEG_setMaxOutputSize(JPEGIMAGE *pJPEG, int iMaxMCUs);
|
||||
#endif // __cplusplus
|
||||
|
||||
#ifdef ALLOWS_UNALIGNED
|
||||
#define INTELSHORT(p) (*(uint16_t *)p)
|
||||
#define INTELLONG(p) (*(uint32_t *)p)
|
||||
#define MOTOSHORT(p) __builtin_bswap16(*(uint16_t *)p)
|
||||
#if REGISTER_WIDTH == 64
|
||||
#define MOTOLONG(p) __builtin_bswap64(*(uint64_t *)p)
|
||||
#else
|
||||
#define MOTOLONG(p) __builtin_bswap32(*(uint32_t *)p)
|
||||
#endif
|
||||
#else
|
||||
// Due to unaligned memory causing an exception, we have to do these macros the slow way
|
||||
#define INTELSHORT(p) ((*p) + (*(p+1)<<8))
|
||||
#define INTELLONG(p) ((*p) + (*(p+1)<<8) + (*(p+2)<<16) + (*(p+3)<<24))
|
||||
#define MOTOSHORT(p) (((*(p))<<8) + (*(p+1)))
|
||||
#define MOTOLONG(p) (((*p)<<24) + ((*(p+1))<<16) + ((*(p+2))<<8) + (*(p+3)))
|
||||
#endif // ALLOWS_UNALIGNED
|
||||
|
||||
#endif // __JPEGDEC__
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,57 @@
|
|||
//
|
||||
// Adds Cortex-M4/M7 SIMD instruction intrinsics for M4/M7 targets missing
|
||||
// this support in their board support packages (e.g. Teensyduino)
|
||||
//
|
||||
#ifndef __CM4_SIMD__
|
||||
#define __CM4_SIMD__
|
||||
|
||||
#define __SSAT16(ARG1, ARG2) \
|
||||
__extension__ \
|
||||
({ \
|
||||
int32_t __RES, __ARG1 = (ARG1); \
|
||||
__asm volatile ("ssat16 %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) : "cc" ); \
|
||||
__RES; \
|
||||
})
|
||||
|
||||
#define __USAT16(ARG1, ARG2) \
|
||||
__extension__ \
|
||||
({ \
|
||||
uint32_t __RES, __ARG1 = (ARG1); \
|
||||
__asm volatile ("usat16 %0, %1, %2" : "=r" (__RES) : "I" (ARG2), "r" (__ARG1) : "cc" ); \
|
||||
__RES; \
|
||||
})
|
||||
|
||||
__attribute__((always_inline)) static inline uint32_t __SADD16(uint32_t op1, uint32_t op2)
|
||||
{
|
||||
uint32_t result;
|
||||
|
||||
__asm volatile ("sadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
|
||||
return(result);
|
||||
}
|
||||
|
||||
__attribute__((always_inline)) static inline uint32_t __SSUB16(uint32_t op1, uint32_t op2)
|
||||
{
|
||||
uint32_t result;
|
||||
|
||||
__asm volatile ("ssub16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
|
||||
return(result);
|
||||
}
|
||||
|
||||
__attribute__((always_inline)) static inline uint32_t __SMLAD (uint32_t op1, uint32_t op2, uint32_t op3)
|
||||
{
|
||||
uint32_t result;
|
||||
|
||||
__asm volatile ("smlad %0, %1, %2, %3" : "=r" (result) : "r" (op1), "r" (op2), "r" (op3) );
|
||||
return(result);
|
||||
}
|
||||
|
||||
__attribute__((always_inline)) static inline uint32_t __QADD16(uint32_t op1, uint32_t op2)
|
||||
{
|
||||
uint32_t result;
|
||||
|
||||
__asm ("qadd16 %0, %1, %2" : "=r" (result) : "r" (op1), "r" (op2) );
|
||||
return(result);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
@ -0,0 +1,128 @@
|
|||
//
|
||||
// ESP32-S3 SIMD optimized code
|
||||
// Written by Larry Bank
|
||||
// Copyright (c) 2024 BitBank Software, Inc.
|
||||
// Project started Jan 21, 2024
|
||||
//
|
||||
#ifdef ARDUINO_ARCH_ESP32
|
||||
#include "dsps_fft2r_platform.h"
|
||||
#if (dsps_fft2r_sc16_aes3_enabled == 1)
|
||||
.text
|
||||
.align 4
|
||||
|
||||
.global s3_ycbcr_convert_420
|
||||
.type s3_ycbcr_convert_420,@function
|
||||
|
||||
// Convert 16 pixels of YCbCr 4:2:0 to RGB565
|
||||
// A2 A3 A4 A5 A6 A7
|
||||
// Call as void s3_ycbcr_convert_420(uint8_t *pY, uint8_t *pCB, uint8_t *pCR, uint16_t *pOut, int16_t *pConsts, uint8_t ucPixelType);
|
||||
s3_ycbcr_convert_420:
|
||||
// supported pixel types: 0 = RGB656_LE, 1 = RGB565_BE, 2 = RGBA8888
|
||||
# no idea what this frequency keyword does
|
||||
# .frequency 1.000 0.000
|
||||
.align 4
|
||||
entry a1,64
|
||||
movi.n a8,2 # iteration count
|
||||
ee.vld.l.64.ip q0,a2,128 # load left 8 Y values into Q0 and point to right DCT block for next load
|
||||
ee.vld.l.64.ip q1,a3,0 # load 8 Cb values into Q1
|
||||
ee.vld.l.64.ip q2,a4,0 # load 8 Cr values into Q2
|
||||
ee.movi.32.a q1,a3,1 # save upper 4 values of Cb for later
|
||||
ee.movi.32.a q2,a4,1 # save upper 4 values of Cr for later
|
||||
.convert_420_loop:
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 0x80 as 16-bits in all 128 bits of q3
|
||||
ee.xorq q4,q4,q4 # load Q4 with 0's
|
||||
ee.vzip.8 q0,q4 # expand 8-bit Y data to 16-bits
|
||||
ee.xorq q4,q4,q4 # need to reset to 0's
|
||||
ee.vzip.8 q1,q4 # expand 8-bit Cb data to 16-bits
|
||||
ee.xorq q4,q4,q4
|
||||
ee.vzip.8 q2,q4 # expand 8-bit Cr data to 16-bits
|
||||
mv.qr q5,q1
|
||||
ee.vzip.16 q1,q5 # duplicate Cb values since it's subsampled
|
||||
mv.qr q5,q2
|
||||
ee.vzip.16 q2,q5 # duplicate Cr values
|
||||
|
||||
ee.vsubs.s16 q1,q1,q3 # subtract 0x0080 from Cb's
|
||||
ee.vsubs.s16 q2,q2,q3 # subtract 0x0080 from Cr's
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 1.77200 as 16-bits in all 128 bits of q3
|
||||
movi.n a9,6 # load the shift register with 6
|
||||
wsr.sar a9 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q6,q1,q3 # (Cb *= 1.77200) >> 6
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 1.402 as 16-bits in all 128 bits of q3
|
||||
ee.vadds.s16 q6,q6,q0 # Cb += y (8 blue pixels in q6)
|
||||
ee.vmul.s16 q7,q2,q3 # (Cr *= 1.402) >> 6
|
||||
ee.vadds.s16 q7,q7,q0 # Cr += y (8 red pixels in q7)
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 0.34414 as 16-bits in all 128 bits of q3
|
||||
movi.n a9,0 # load the shift register with 0
|
||||
wsr.sar a9 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q4,q1,q3 # (Cb * 0.34414) >> 0
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 0.71414 as 16-bits in all 128 bits of q3
|
||||
ee.vmul.s16 q3,q2,q3 # (Cr * 0.71414) >> 0
|
||||
ee.vadds.s16 q3,q3,q4 # (Cb * 0.34414) + (Cr * 0.71414)
|
||||
ee.vldbc.16.ip q4,a6,2 # get constant 1 (so we can do a 16-bit shift)
|
||||
movi.n a9,6 # load the shift register with 6
|
||||
wsr.sar a9 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q3,q3,q4 # shift right by 6
|
||||
ee.vsubs.s16 q3,q0,q3 # Y - ((Cb * 0.34414) + (Cr * 0.71414)) = green in Q3
|
||||
// saturate to 8 bits
|
||||
ee.xorq q0,q0,q0
|
||||
ee.vmax.s16 q3,q3,q0
|
||||
ee.vmax.s16 q6,q6,q0
|
||||
ee.vmax.s16 q7,q7,q0
|
||||
ee.vcmp.eq.s16 q1,q1,q1 # create 255
|
||||
ee.vzip.8 q1,q0
|
||||
ee.vmin.s16 q3,q3,q1 # clamp to 255
|
||||
ee.vmin.s16 q6,q6,q1
|
||||
ee.vmin.s16 q7,q7,q1
|
||||
beqi a7,2,.rgba8888_output # 32-bit RGBA pixels
|
||||
movi.n a9,3 # load the shift register with 3 (for blue and red)
|
||||
wsr.sar a9 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q6,q4,q6 # shift blue right by 3
|
||||
ee.vmul.s16 q7,q4,q7 # shift red right by 3
|
||||
movi.n a9,2 # load the shift register with 2 (for green)
|
||||
wsr.sar a9 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q3,q4,q3 # shift green right by 2
|
||||
// now combine to form RGB565 pixels
|
||||
movi.n a9,0
|
||||
wsr.sar a9 # no shift after multiply
|
||||
ee.vldbc.16.ip q4,a6,2 # get constant value 32 (to shift green left by 5 bits)
|
||||
ee.vldbc.16.ip q5,a6,2 # get constant value 2048 (to shift red left by 11 bits)
|
||||
ee.vmul.s16 q3,q4,q3 # shift green left by 5
|
||||
ee.vmul.s16 q7,q5,q7 # shift red left by 11
|
||||
ee.orq q6,q6,q3 # combine blue + green
|
||||
ee.orq q6,q6,q7 # combine blue + green + red
|
||||
mv.qr q5,q6 # in case we're generating little endian output
|
||||
beqi a7,0,.rgb565_le # RGB565 little endian?
|
||||
ee.vunzip.8 q6,q5 # swap the byte order to be big-endian
|
||||
ee.vzip.8 q5,q6
|
||||
.rgb565_le:
|
||||
ee.vst.128.ip q5,a5,16 # store 8 RGB565 pixels
|
||||
addi.n a6,a6,-16 # restore pointer to start of 16-bit constants
|
||||
ee.vld.l.64.ip q0,a2,0 # load right 8 Y values into Q0
|
||||
ee.movi.32.q q1,a3,0 # restore second 4 values of Cb
|
||||
ee.movi.32.q q2,a4,0 # restore second 4 values of Cr
|
||||
addi.n a8,a8,-1
|
||||
bnez.n a8,.convert_420_loop
|
||||
|
||||
# return value of 0
|
||||
retw.n
|
||||
.rgba8888_output: # generate RGBA 32-bit pixels
|
||||
movi.n a9,8 # shift 8 bits
|
||||
wsr.sar a9
|
||||
ee.vsl.32 q3,q3 # shift green over 8 bits
|
||||
ee.orq q7,q7,q3 # combine red and green
|
||||
ee.vcmp.eq.s16 q1,q1,q1 # create FFs
|
||||
ee.xorq q2,q2,q2 # create 00s
|
||||
ee.vzip.8 q2,q1 # create FF00 for Alpha
|
||||
ee.orq q2,q2,q6 # combine blue + alpha
|
||||
ee.vzip.16 q7,q2 # create RGB8888 pixels
|
||||
ee.vst.128.ip q7,a5,16 # store 8 x RGB8888 pixels = 32 bytes
|
||||
ee.vst.128.ip q2,a5,16
|
||||
addi.n a6,a6,-16 # restore pointer to start of 16-bit constants
|
||||
ee.vld.l.64.ip q0,a2,0 # load right 8 Y values into Q0
|
||||
ee.movi.32.q q1,a3,0 # restore second 4 values of Cb
|
||||
ee.movi.32.q q2,a4,0 # restore second 4 values of Cr
|
||||
addi.n a8,a8,-1
|
||||
bnez.n a8,.convert_420_loop
|
||||
retw.n
|
||||
#endif // dsps_fft2r_sc16_aes3_enabled
|
||||
#endif // ESP32
|
|
@ -0,0 +1,109 @@
|
|||
//
|
||||
// ESP32-S3 SIMD optimized code
|
||||
// Written by Larry Bank
|
||||
// Copyright (c) 2024 BitBank Software, Inc.
|
||||
// Project started Jan 21, 2024
|
||||
//
|
||||
#ifdef ARDUINO_ARCH_ESP32
|
||||
|
||||
#include "dsps_fft2r_platform.h"
|
||||
#if (dsps_fft2r_sc16_aes3_enabled == 1)
|
||||
.text
|
||||
.align 4
|
||||
|
||||
// Convert 8 pixels of YCbCr 4:4:4 to RGB565
|
||||
// A2 A3 A4 A5 A6 A7
|
||||
// Call as void s3_ycbcr_convert_444(uint8_t *pY, uint8_t *pCB, uint8_t *pCR, uint16_t *pOut, int16_t *pConsts, uint8_t ucPixelType);
|
||||
// supported pixel types: 0 = RGB656_LE, 1 = RGB565_BE, 2 = RGBA8888
|
||||
.global s3_ycbcr_convert_444
|
||||
.type s3_ycbcr_convert_444,@function
|
||||
|
||||
s3_ycbcr_convert_444:
|
||||
# no idea what this frequency keyword does
|
||||
# .frequency 1.000 0.000
|
||||
entry a1,16
|
||||
ee.xorq q4,q4,q4 # load Q4 with 0's
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 0x80 as 16-bits in all 128 bits of q3
|
||||
ee.vld.l.64.ip q0,a2,0 # load 8 Y values into Q0
|
||||
ee.vld.l.64.ip q1,a3,0 # load 8 Cb values into Q1
|
||||
ee.vld.l.64.ip q2,a4,0 # load 8 Cr values into Q2
|
||||
ee.vzip.8 q0,q4 # expand 8-bit Y data to 16-bits
|
||||
ee.xorq q4,q4,q4 # need to reset to 0's
|
||||
ee.vzip.8 q1,q4 # expand 8-bit Cb data to 16-bits
|
||||
ee.xorq q4,q4,q4
|
||||
ee.vzip.8 q2,q4 # expand 8-bit Cr data to 16-bits
|
||||
|
||||
ee.vsubs.s16 q1,q1,q3 # subtract 0x0080 from Cb's
|
||||
ee.vsubs.s16 q2,q2,q3 # subtract 0x0080 from Cr's
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 1.77200 as 16-bits in all 128 bits of q3
|
||||
movi.n a2,6 # load the shift register with 6
|
||||
wsr.sar a2 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q6,q1,q3 # (Cb *= 1.77200) >> 6
|
||||
ee.vadds.s16 q6,q6,q0 # Cb += y (8 blue pixels in q6)
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 1.402 as 16-bits in all 128 bits of q3
|
||||
ee.vmul.s16 q7,q2,q3 # (Cr *= 1.402) >> 6
|
||||
ee.vadds.s16 q7,q7,q0 # Cr += y (8 red pixels in q7)
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 0.34414 as 16-bits in all 128 bits of q3
|
||||
movi.n a2,0 # load the shift register with 0
|
||||
wsr.sar a2 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q4,q1,q3 # (Cb * 0.34414) >> 0
|
||||
ee.vldbc.16.ip q3,a6,2 # get constant 0.71414 as 16-bits in all 128 bits of q3
|
||||
ee.vmul.s16 q3,q2,q3 # (Cr * 0.71414) >> 0
|
||||
ee.vadds.s16 q3,q3,q4 # (Cb * 0.34414) + (Cr * 0.71414)
|
||||
ee.vldbc.16.ip q4,a6,2 # get constant 1 (so we can do a 16-bit shift)
|
||||
movi.n a2,6 # load the shift register with 6
|
||||
wsr.sar a2 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q3,q3,q4 # shift right by 6
|
||||
ee.vsubs.s16 q3,q0,q3 # Y - ((Cb * 0.34414) + (Cr * 0.71414)) = green in Q3
|
||||
// saturate to 8 bits
|
||||
ee.xorq q0,q0,q0
|
||||
ee.vmax.s16 q3,q3,q0
|
||||
ee.vmax.s16 q6,q6,q0
|
||||
ee.vmax.s16 q7,q7,q0
|
||||
ee.vcmp.eq.s16 q1,q1,q1 # create 255
|
||||
ee.vzip.8 q1,q0
|
||||
ee.vmin.s16 q3,q3,q1 # clamp to 255
|
||||
ee.vmin.s16 q6,q6,q1
|
||||
ee.vmin.s16 q7,q7,q1
|
||||
// Now we have RGB888, is that the output pixel type?
|
||||
beqi a7,2,.rgb8888_output
|
||||
// either RGB565 LE or BE from here
|
||||
movi.n a2,3 # load the shift register with 3 (for blue and red)
|
||||
wsr.sar a2 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q6,q4,q6 # shift blue right by 3
|
||||
ee.vmul.s16 q7,q4,q7 # shift red right by 3
|
||||
movi.n a2,2 # load the shift register with 2 (for green)
|
||||
wsr.sar a2 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q3,q4,q3 # shift green right by 2
|
||||
// now combine to form RGB565 pixels
|
||||
movi.n a2,0
|
||||
wsr.sar a2 # no shift after multiply
|
||||
ee.vldbc.16.ip q4,a6,2 # get constant value 32 (to shift green left by 5 bits)
|
||||
ee.vldbc.16.ip q5,a6,2 # get constant value 2048 (to shift red left by 11 bits)
|
||||
ee.vmul.s16 q3,q4,q3 # shift green left by 5
|
||||
ee.vmul.s16 q7,q5,q7 # shift red left by 11
|
||||
ee.orq q6,q6,q3 # combine blue + green
|
||||
ee.orq q6,q6,q7 # combine blue + green + red
|
||||
mv.qr q5,q6 # in case we're generating little endian output
|
||||
beqi a7,0,.rgb565_exit # RGB565 little endian?
|
||||
ee.vunzip.8 q6,q5 # swap the byte order to be big-endian
|
||||
ee.vzip.8 q5,q6
|
||||
.rgb565_exit:
|
||||
ee.vst.128.ip q5,a5,0 # store the 8 RGB565 pixels
|
||||
retw.n
|
||||
// Create RGBA (32-bit) pixels
|
||||
.rgb8888_output:
|
||||
movi.n a2,8 # shift 8 bits
|
||||
wsr.sar a2
|
||||
ee.vsl.32 q3,q3 # shift green over 8 bits
|
||||
ee.orq q7,q7,q3 # combine red and green
|
||||
ee.vcmp.eq.s16 q1,q1,q1 # create FFs
|
||||
ee.xorq q2,q2,q2 # create 00s
|
||||
ee.vzip.8 q2,q1 # create FF00 for Alpha
|
||||
ee.orq q2,q2,q6 # combine blue + alpha
|
||||
ee.vzip.16 q7,q2 # create RGB8888 pixels
|
||||
ee.vst.128.ip q7,a5,16 # store 8 x RGB8888 pixels = 32 bytes
|
||||
ee.vst.128.ip q2,a5,0
|
||||
retw.n # done
|
||||
#endif // dsps_fft2r_sc16_aes3_enabled
|
||||
#endif // ESP32
|
|
@ -0,0 +1,64 @@
|
|||
//
|
||||
// ESP32-S3 SIMD optimized code
|
||||
// Written by Larry Bank
|
||||
// Copyright (c) 2024 BitBank Software, Inc.
|
||||
// Project started Jan 21, 2024
|
||||
//
|
||||
#ifdef ARDUINO_ARCH_ESP32
|
||||
|
||||
#include "dsps_fft2r_platform.h"
|
||||
#if (dsps_fft2r_sc16_aes3_enabled == 1)
|
||||
.text
|
||||
.align 4
|
||||
//
|
||||
// Inverse DCT dequantization for JPEG decompression
|
||||
// A2 A3
|
||||
// Call as void s3_dequant(int16_t *pMCU, int16_t *pQuant);
|
||||
.global s3_dequant
|
||||
.type s3_dequant,@function
|
||||
|
||||
s3_dequant:
|
||||
# no idea what this frequency keyword does
|
||||
# .frequency 1.000 0.000
|
||||
entry a1,16
|
||||
ee.vld.128.ip q0,a2,16 # load MCU rows 0-3 into Q0,Q1,Q2,Q3
|
||||
ee.vld.128.ip q4,a3,16 # load quantization values into Q4,Q5,Q6,Q7
|
||||
ee.vld.128.ip q1,a2,16
|
||||
ee.vld.128.ip q5,a3,16
|
||||
ee.vld.128.ip q2,a2,16
|
||||
ee.vld.128.ip q6,a3,16
|
||||
ee.vld.128.ip q3,a2,16
|
||||
ee.vld.128.ip q7,a3,16
|
||||
movi.n a4,0 # load the shift register with 0
|
||||
wsr.sar a2 # put it in the SAR (shift amount register)
|
||||
ee.vmul.s16 q0,q0,q4 # de-quantize each row
|
||||
ee.vmul.s16 q1,q1,q5
|
||||
ee.vmul.s16 q2,q2,q6
|
||||
ee.vmul.s16 q3,q3,q7
|
||||
addi.n a2,a2,64 # point to first row of MCUs to store dequantized values
|
||||
ee.vst.128.ip q0,a2,16 # write back dequantized rows 0-3
|
||||
ee.vst.128.ip q1,a2,16
|
||||
ee.vst.128.ip q2,a2,16
|
||||
ee.vst.128.ip q3,a2,16
|
||||
// repeat for rows 4-7
|
||||
ee.vld.128.ip q0,a2,16 # load MCU rows 4-7 into Q0,Q1,Q2,Q3
|
||||
ee.vld.128.ip q4,a3,16 # load quantization values into Q4,Q5,Q6,Q7
|
||||
ee.vld.128.ip q1,a2,16
|
||||
ee.vld.128.ip q5,a3,16
|
||||
ee.vld.128.ip q2,a2,16
|
||||
ee.vld.128.ip q6,a3,16
|
||||
ee.vld.128.ip q3,a2,16
|
||||
ee.vld.128.ip q7,a3,16
|
||||
|
||||
ee.vmul.s16 q0,q0,q4 # de-quantize rows 4-7
|
||||
ee.vmul.s16 q1,q1,q5
|
||||
ee.vmul.s16 q2,q2,q6
|
||||
ee.vmul.s16 q3,q3,q7
|
||||
addi.n a2,a2,64 # point to 4th row of MCUs
|
||||
ee.vst.128.ip q0,a2,16 # write back dequantized rows 4-7
|
||||
ee.vst.128.ip q1,a2,16
|
||||
ee.vst.128.ip q2,a2,16
|
||||
ee.vst.128.ip q3,a2,16
|
||||
retw.n # done
|
||||
#endif // dsps_fft2r_sc16_aes3_enabled
|
||||
#endif // ESP32
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -56,6 +56,9 @@ be_extern_native_module(mdns);
|
|||
#ifdef USE_ZIGBEE
|
||||
be_extern_native_module(zigbee);
|
||||
#endif // USE_ZIGBEE
|
||||
#ifdef USE_BERRY_CAM
|
||||
be_extern_native_module(cam);
|
||||
#endif // USE_BERRY_CAM
|
||||
// BLE
|
||||
be_extern_native_module(MI32);
|
||||
be_extern_native_module(BLE);
|
||||
|
@ -183,6 +186,9 @@ BERRY_LOCAL const bntvmodule_t* const be_module_table[] = {
|
|||
&be_native_module(MI32),
|
||||
&be_native_module(BLE),
|
||||
#endif //USE_MI_ESP32
|
||||
#ifdef USE_BERRY_CAM
|
||||
&be_native_module(cam),
|
||||
#endif
|
||||
#ifdef USE_DISCOVERY
|
||||
&be_native_module(mdns),
|
||||
#endif // USE_DISCOVERY
|
||||
|
@ -243,6 +249,10 @@ be_extern_native_class(lv_clock_icon);
|
|||
|
||||
be_extern_native_class(int64);
|
||||
|
||||
#ifdef USE_BERRY_IMAGE
|
||||
be_extern_native_class(img);
|
||||
#endif // USE_BERRY_IMAGE
|
||||
|
||||
BERRY_LOCAL bclass_array be_class_table = {
|
||||
#ifdef TASMOTA
|
||||
/* first list are direct classes */
|
||||
|
@ -298,6 +308,10 @@ BERRY_LOCAL bclass_array be_class_table = {
|
|||
&be_native_class(lv_clock_icon),
|
||||
#endif // USE_LVGL
|
||||
|
||||
#ifdef USE_BERRY_IMAGE
|
||||
&be_native_class(img),
|
||||
#endif // USE_BERRY_IMAGE
|
||||
|
||||
#if defined(USE_I2S_AUDIO_BERRY) && (ESP_IDF_VERSION_MAJOR >= 5)
|
||||
&be_native_class(AudioGenerator),
|
||||
&be_native_class(AudioFileSource),
|
||||
|
|
|
@ -0,0 +1,31 @@
|
|||
/********************************************************************
|
||||
* Tasmota lib
|
||||
*
|
||||
* To use: `import cam`
|
||||
*
|
||||
*******************************************************************/
|
||||
|
||||
#ifdef USE_BERRY_CAM
|
||||
|
||||
// #include "be_constobj.h"
|
||||
#include "be_mapping.h"
|
||||
|
||||
extern int be_cam_init(bvm *vm);
|
||||
extern int be_cam_setup(bvm *vm);
|
||||
extern int be_cam_get_image(bvm *vm);
|
||||
extern int be_cam_info(bvm *vm);
|
||||
|
||||
#include "be_fixed_cam.h"
|
||||
|
||||
/* @const_object_info_begin
|
||||
|
||||
module cam (scope: global) {
|
||||
|
||||
init, func(be_cam_init)
|
||||
setup, func(be_cam_setup)
|
||||
get_image, func(be_cam_get_image)
|
||||
info, func(be_cam_info)
|
||||
}
|
||||
@const_object_info_end */
|
||||
|
||||
#endif // USE_BERRY_CAM
|
|
@ -0,0 +1,39 @@
|
|||
/********************************************************************
|
||||
* Berry class `img`
|
||||
*
|
||||
*******************************************************************/
|
||||
|
||||
#include "be_constobj.h"
|
||||
|
||||
#ifdef USE_BERRY_IMAGE
|
||||
|
||||
extern int be_img_init(bvm *vm);
|
||||
extern int be_img_deinit(bvm *vm);
|
||||
extern int be_img_from_jpg(bvm *vm);
|
||||
extern int be_img_from_buffer(bvm *vm);
|
||||
extern int be_img_get_buffer(bvm *vm);
|
||||
extern int be_img_convert_to(bvm *vm);
|
||||
extern int be_img_info(bvm *vm);
|
||||
|
||||
/* @const_object_info_begin
|
||||
class be_class_img (scope: global, name: img, strings: weak) {
|
||||
.p, var
|
||||
|
||||
GRAYSCALE, int(3)
|
||||
RGB565, int(0)
|
||||
RGB888, int(5)
|
||||
JPEG, int(4)
|
||||
|
||||
init, func(be_img_init)
|
||||
deinit, func(be_img_deinit)
|
||||
from_jpg, func(be_img_from_jpg)
|
||||
from_buffer, func(be_img_from_buffer)
|
||||
get_buffer, func(be_img_get_buffer)
|
||||
convert_to, func(be_img_convert_to)
|
||||
info, func(be_img_info)
|
||||
}
|
||||
@const_object_info_end */
|
||||
|
||||
#include "be_fixed_be_class_img.h"
|
||||
|
||||
#endif // USE_BERRY_IMAGE
|
|
@ -62,6 +62,7 @@ lib_ignore = ${esp32_defaults.lib_ignore}
|
|||
EEPROM
|
||||
EEPROM 24C128_256_521
|
||||
MFRC522
|
||||
JPEGDEC
|
||||
universal display Library
|
||||
ESP8266Audio
|
||||
ESP8266SAM
|
||||
|
|
|
@ -0,0 +1,499 @@
|
|||
/*
|
||||
xdrv_52_3_berry_img.ino - Berry scripting language, native functions
|
||||
|
||||
Copyright (C) 2024 Christian Baars & Stephan Hadinger, Berry language by Guan Wenliang https://github.com/Skiars/berry
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
#ifdef USE_BERRY
|
||||
|
||||
#include <berry.h>
|
||||
|
||||
#ifdef USE_BERRY_IMAGE
|
||||
|
||||
#include "esp_camera.h"
|
||||
#include "JPEGDEC.h"
|
||||
|
||||
/*********************************************************************************************\
|
||||
* typedefs
|
||||
\*********************************************************************************************/
|
||||
|
||||
typedef struct {
|
||||
uint8_t * buf = nullptr;
|
||||
size_t len = 0;
|
||||
uint16_t width = 0;
|
||||
uint16_t height = 0;
|
||||
pixformat_t format = PIXFORMAT_JPEG;
|
||||
JPEGDEC * jpeg = nullptr;
|
||||
} image_t;
|
||||
|
||||
typedef struct {
|
||||
float scale_X;
|
||||
float shear_X;
|
||||
float shear_Y;
|
||||
float scale_Y;
|
||||
uint16_t translation_X;
|
||||
uint16_t translation_Y;
|
||||
uint16_t width;
|
||||
uint16_t height;
|
||||
} be_img_roi_descriptor_t;
|
||||
|
||||
typedef struct {
|
||||
uint16_t width;
|
||||
uint16_t height;
|
||||
const uint8_t *input;
|
||||
uint8_t *output;
|
||||
size_t output_len;
|
||||
} be_jpg_encoder_t;
|
||||
|
||||
/*********************************************************************************************\
|
||||
* helper functions
|
||||
\*********************************************************************************************/
|
||||
|
||||
struct be_img_util {
|
||||
static void clear(image_t *img){
|
||||
if(img->buf){
|
||||
free(img->buf);
|
||||
img->buf = nullptr;
|
||||
}
|
||||
img->len = 0;
|
||||
img->format = PIXFORMAT_JPEG;
|
||||
img->width = 0;
|
||||
img->height = 0;
|
||||
}
|
||||
|
||||
static int getBytesPerPixel(pixformat_t f){
|
||||
int bpp;
|
||||
switch(f) {
|
||||
case PIXFORMAT_GRAYSCALE:
|
||||
bpp = 1;
|
||||
break;
|
||||
case PIXFORMAT_RGB565:
|
||||
bpp = 2;
|
||||
break;
|
||||
default:
|
||||
bpp = 3;
|
||||
}
|
||||
return bpp;
|
||||
}
|
||||
|
||||
static bool from_jpg(image_t *img, uint8_t* buffer, size_t len) {
|
||||
uint16_t width, height;
|
||||
if(jpeg_size(buffer, len, &width, &height) != true){
|
||||
return false;
|
||||
}
|
||||
pixformat_t format = PIXFORMAT_JPEG;
|
||||
return from_buffer(img, buffer, len, width, height, format);
|
||||
}
|
||||
|
||||
static bool from_buffer(image_t *img, uint8_t* buffer, size_t len, uint16_t w, uint16_t h, pixformat_t f) {
|
||||
if(img->buf != nullptr) {
|
||||
free(img->buf);
|
||||
}
|
||||
img->buf = (uint8_t *)heap_caps_malloc((len)+4, MALLOC_CAP_SPIRAM | MALLOC_CAP_8BIT);
|
||||
if(img->buf) {
|
||||
memcpy(img->buf,buffer,len);
|
||||
img->len = len;
|
||||
img->format = f;
|
||||
img->width = w;
|
||||
img->height = h;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
static void rgb888_to_grayscale_inplace(uint8_t * buffer, size_t buffer_len){
|
||||
uint8_t r, g, b;
|
||||
for (uint32_t cnt=0; cnt<buffer_len; cnt+=3) {
|
||||
r = buffer[cnt];
|
||||
g = buffer[cnt+1];
|
||||
b = buffer[cnt+2];
|
||||
buffer[cnt/3] = (r + g + b) / 3;
|
||||
}
|
||||
}
|
||||
|
||||
static void rgb888_to_565_inplace(uint8_t * buffer, size_t buffer_len){
|
||||
union{
|
||||
uint8_t* temp_buf ;
|
||||
uint16_t* temp_buf_16;
|
||||
};
|
||||
temp_buf = buffer;
|
||||
uint8_t red, grn, blu;
|
||||
uint16_t r, g, b;
|
||||
int j = 0;
|
||||
for (uint32_t i=0; i < buffer_len; i+=3) {
|
||||
blu = temp_buf[i];
|
||||
grn = temp_buf[i+1];
|
||||
red = temp_buf[i+2];
|
||||
b = (blu >> 3) & 0x1f;
|
||||
g = ((grn >> 2) & 0x3f) << 5;
|
||||
r = ((red >> 3) & 0x1f) << 11;
|
||||
temp_buf_16[j++] = (r | g | b);
|
||||
}
|
||||
}
|
||||
|
||||
static size_t _jpg_out_cb(void * arg, size_t index, const void* data, size_t len){
|
||||
be_jpg_encoder_t *jpeg = (be_jpg_encoder_t *)arg;
|
||||
|
||||
memcpy(jpeg->output + index, data, len);
|
||||
jpeg->output_len = index+len;
|
||||
return len;
|
||||
}
|
||||
|
||||
static int _rgb_write_dummy(JPEGDRAW* d)
|
||||
{
|
||||
// not used for now
|
||||
return 1;
|
||||
}
|
||||
|
||||
static bool jpeg_decode_one_image(uint8_t *input_buf, int len, uint8_t *output_buf, int type, image_t * img) {
|
||||
img->jpeg = new JPEGDEC;
|
||||
img->jpeg->openRAM(input_buf, len, _rgb_write_dummy);
|
||||
img->jpeg->setPixelType(type);
|
||||
img->jpeg->setFramebuffer(output_buf);
|
||||
bool success = img->jpeg->decode(0,0,0);
|
||||
img->jpeg->close();
|
||||
delete img->jpeg;
|
||||
return success;
|
||||
}
|
||||
|
||||
|
||||
// https://web.archive.org/web/20131016210645/http://www.64lines.com/jpeg-width-height , but shorter now by 48 bytes flash
|
||||
static bool jpeg_size(uint8_t* buffer, size_t data_size, uint16_t *width, uint16_t *height) {
|
||||
union{
|
||||
uint8_t * data;
|
||||
uint16_t * data16;
|
||||
uint32_t * data32;
|
||||
};
|
||||
data = buffer;
|
||||
if(data[data_size-2] != 0xff || data[data_size-1] != 0xd9){
|
||||
return false; // quick check for correct termination
|
||||
}
|
||||
if(data32[0] == 0xE0FFD8FF) {
|
||||
// Check for valid JPEG header (null terminated JFIF)
|
||||
// if(data[i+2] == 'J' && data[i+3] == 'F' && data[i+4] == 'I' && data[i+5] == 'F' && data[i+6] == 0x00) {
|
||||
if(data16[3] == 0x464a && data16[4] == 0x4649) {
|
||||
//Retrieve the block length of the first block since the first block will not contain the size of file
|
||||
int i = 20;
|
||||
uint16_t block_length = 0;
|
||||
while(i<data_size) {
|
||||
i+=block_length; //Increase the file index to get to the next block
|
||||
if(i >= data_size) {
|
||||
return false;} //Check to protect against segmentation faults
|
||||
if (data[i] != 0xFF) {
|
||||
return false;}
|
||||
if(data[i+1] == 0xC0 || data[i+1] == 0xC2) { //0xFFC0 or 0xFFC2 is the "Start of frame" marker which contains the file size
|
||||
//The structure of the 0xFFC0 block is quite simple [0xFFC0][ushort length][uchar precision][ushort x][ushort y]
|
||||
*height = data[i+5]*256 + data[i+6];
|
||||
*width = data[i+7]*256 + data[i+8];
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
i+=2; //Skip the block marker
|
||||
block_length = data[i] * 256 + data[i+1]; //Go to the next block
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return false; //Not a valid SOI header
|
||||
}
|
||||
};
|
||||
|
||||
/*********************************************************************************************\
|
||||
* Native functions mapped to Berry functions
|
||||
\*********************************************************************************************/
|
||||
|
||||
extern "C" {
|
||||
|
||||
image_t* be_get_image_instance(struct bvm *vm);
|
||||
image_t* be_get_image_instance(struct bvm *vm) {
|
||||
be_getmember(vm, 1, ".p");
|
||||
image_t * img = (image_t *) be_tocomptr(vm, -1);
|
||||
be_pop(vm, 1);
|
||||
if(!img){
|
||||
be_raise(vm, "img_error", "no store instance");
|
||||
}
|
||||
return img;
|
||||
}
|
||||
|
||||
int be_img_init(struct bvm *vm);
|
||||
int be_img_init(struct bvm *vm) {
|
||||
image_t *img = new image_t;
|
||||
be_pushcomptr(vm, (void*)img);
|
||||
be_setmember(vm, 1, ".p");
|
||||
be_return_nil(vm);
|
||||
}
|
||||
|
||||
int be_img_deinit(struct bvm *vm);
|
||||
int be_img_deinit(struct bvm *vm) {
|
||||
be_getmember(vm, 1, ".p");
|
||||
image_t * img = (image_t *) be_tocomptr(vm, -1);
|
||||
if(img){
|
||||
if(img->buf != nullptr){
|
||||
free(img->buf);
|
||||
}
|
||||
delete img;
|
||||
be_pushcomptr(vm, (void*) NULL);
|
||||
be_setmember(vm, 1, ".p");
|
||||
}
|
||||
be_return_nil(vm);
|
||||
}
|
||||
|
||||
int be_img_from_jpg(struct bvm *vm);
|
||||
int be_img_from_jpg(struct bvm *vm) {
|
||||
int32_t argc = be_top(vm); // Get the number of arguments
|
||||
if (argc > 1 && be_isbytes(vm, 2)){
|
||||
size_t src_buf_len;
|
||||
uint8_t* src_buf = (uint8_t*) be_tobytes(vm, 2, &src_buf_len);
|
||||
int format = -1;
|
||||
if(argc == 3 && be_isint(vm, 3)){
|
||||
format = be_toint(vm, 3);
|
||||
}
|
||||
image_t * img = be_get_image_instance(vm);
|
||||
if(format == -1){
|
||||
if(be_img_util::from_jpg(img,src_buf,src_buf_len) == false){
|
||||
be_raise(vm, "img_error", "could not store from jpg buffer");
|
||||
} else {
|
||||
be_return_nil(vm); // done
|
||||
}
|
||||
}
|
||||
bool success = false;
|
||||
const int bpp = be_img_util::getBytesPerPixel(pixformat_t(format));
|
||||
uint16_t w,h;
|
||||
if (be_img_util::jpeg_size(src_buf, src_buf_len, &w, &h) == false){
|
||||
be_raise(vm, "img_error", "no compatible jpg buffer");
|
||||
be_return_nil(vm); //do not destroy the old image
|
||||
}
|
||||
const size_t newSize = w * h * bpp;
|
||||
if(newSize != img->len){
|
||||
img->buf = (uint8_t*)heap_caps_realloc((void*)img->buf, newSize, MALLOC_CAP_SPIRAM | MALLOC_CAP_8BIT);
|
||||
if(!img->buf){
|
||||
be_img_util::clear(img);
|
||||
be_raise(vm, "img_error", "reallocation failed");
|
||||
be_return_nil(vm);
|
||||
}
|
||||
}
|
||||
switch(pixformat_t(format)) {
|
||||
case PIXFORMAT_GRAYSCALE:
|
||||
success = be_img_util::jpeg_decode_one_image(src_buf, src_buf_len, img->buf, EIGHT_BIT_GRAYSCALE, img);
|
||||
break;
|
||||
case PIXFORMAT_RGB565:
|
||||
success = be_img_util::jpeg_decode_one_image(src_buf, src_buf_len, img->buf, RGB565_LITTLE_ENDIAN, img);
|
||||
success = true;
|
||||
break;
|
||||
case PIXFORMAT_RGB888:
|
||||
success = be_img_util::jpeg_decode_one_image(src_buf, src_buf_len, img->buf, RGB8888, img);
|
||||
success = true;
|
||||
break;
|
||||
}
|
||||
if(success){
|
||||
img->len = newSize;
|
||||
img->format = pixformat_t(format);
|
||||
img->width = w;
|
||||
img->height = h;
|
||||
} else {
|
||||
be_img_util::clear(img);
|
||||
be_raise(vm, "img_error", "jpg decoding failed");
|
||||
}
|
||||
}
|
||||
else{
|
||||
be_raise(vm, "img_error", "wrong args for jpg buffer");
|
||||
}
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
int be_img_from_buffer(struct bvm *vm); // (bytes(),width,height,format)
|
||||
int be_img_from_buffer(struct bvm *vm) {
|
||||
int32_t argc = be_top(vm); // Get the number of arguments
|
||||
if (argc == 5 && be_isbytes(vm, 2) && be_isint(vm, 3) && be_isint(vm, 4) && be_isint(vm, 5)){
|
||||
size_t src_buf_len;
|
||||
uint8_t* src_buf = (uint8_t*) be_tobytes(vm, 2, &src_buf_len);
|
||||
// be_pop(vm, 2);
|
||||
image_t * img = be_get_image_instance(vm);
|
||||
if(img){
|
||||
if(img->buf != nullptr){
|
||||
free(img->buf);
|
||||
}
|
||||
uint16_t width = be_toint(vm, 3);
|
||||
uint16_t height = be_toint(vm, 4);
|
||||
int format = be_toint(vm, 5);
|
||||
if(be_img_util::from_buffer(img, src_buf, src_buf_len, width, height, (pixformat_t)format) == false){
|
||||
be_raise(vm, "img_error", "could not store from byte buffer");
|
||||
}
|
||||
}
|
||||
}
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
int be_img_get_buffer(struct bvm *vm); //(roi)
|
||||
int be_img_get_buffer(struct bvm *vm) {
|
||||
image_t * img = be_get_image_instance(vm);
|
||||
be_img_roi_descriptor_t * dsc;
|
||||
|
||||
int32_t argc = be_top(vm); // Get the number of arguments
|
||||
if (argc == 2 && be_isbytes(vm, 2)){
|
||||
if(img->format == PIXFORMAT_JPEG){
|
||||
be_raise(vm, "img_error", "JPEG not supported for ROI");
|
||||
}
|
||||
size_t dsc_len;
|
||||
dsc = (be_img_roi_descriptor_t*) be_tobytes(vm, 2, &dsc_len);
|
||||
if(dsc_len != sizeof(be_img_roi_descriptor_t)){
|
||||
be_raise(vm, "img_error", "invalid ROI descriptor");
|
||||
}
|
||||
}
|
||||
else{
|
||||
be_pushbytes(vm, img->buf, img->len);
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
const int bpp = be_img_util::getBytesPerPixel(img->format);
|
||||
const size_t roi_size = dsc->width * dsc->height * bpp;
|
||||
uint8_t* roi_buf = (uint8_t*)malloc(roi_size);
|
||||
if(roi_buf == nullptr) {
|
||||
be_raise(vm, "img_error", "ROI buffer allocation failed");
|
||||
}
|
||||
|
||||
/**
|
||||
* Fills ROI using an affine matrix (https://en.wikipedia.org/wiki/Affine_transformation#Image_transformation)
|
||||
* | scale_x shear_x translation_x |
|
||||
* | shear_y scale_y translation_y |
|
||||
* | 0 0 1 | - these are constants in this scope
|
||||
*/
|
||||
uint32_t in_idx = 0;
|
||||
for(uint16_t y = 0; y < dsc->height; y += 1) {
|
||||
for(uint16_t x = 0; x < dsc->width; x += 1) {
|
||||
int transformed_X = (x * dsc->scale_X) + (y * dsc->shear_Y) + dsc->translation_X;
|
||||
int transformed_Y = (x * dsc->shear_X) + (y * dsc->scale_Y) + dsc->translation_Y;
|
||||
for(int byte_comp = 0; byte_comp < bpp; byte_comp += 1){
|
||||
roi_buf[in_idx++] = img->buf[(transformed_X * bpp) + ((transformed_Y * bpp) * img->width) + byte_comp];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
be_pushbytes(vm, roi_buf, roi_size);
|
||||
free(roi_buf);
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
int be_img_convert_to(struct bvm *vm); // (pixformat)
|
||||
int be_img_convert_to(struct bvm *vm) {
|
||||
image_t * img = be_get_image_instance(vm);
|
||||
if(img->len == 0) {
|
||||
be_raise(vm, "img_error", "no image data");
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
int32_t argc = be_top(vm);
|
||||
if (argc >= 2 && be_isint(vm, 2)) {
|
||||
uint32_t format = be_toint(vm, 2);
|
||||
int32_t option = -1;
|
||||
if(be_isint(vm, 3)){
|
||||
option = be_toint(vm, 3);
|
||||
}
|
||||
uint8_t* temp_buf = nullptr;
|
||||
|
||||
if(img->format == format){
|
||||
be_raise(vm, "img_error", "no format change");
|
||||
be_return(vm);
|
||||
}
|
||||
uint16_t bpp = 3; // most likely byte-per-pixel value
|
||||
const size_t pixel_count = img->width * img->height ;
|
||||
size_t temp_buf_len = pixel_count * bpp;
|
||||
if(format == PIXFORMAT_JPEG) {
|
||||
temp_buf_len /= 4; // a very rough guess
|
||||
}
|
||||
temp_buf = (uint8_t *)heap_caps_malloc((temp_buf_len)+4, MALLOC_CAP_SPIRAM | MALLOC_CAP_8BIT);
|
||||
if(temp_buf == nullptr) {
|
||||
be_raise(vm, "img_error", "not enough heap");
|
||||
be_return_nil(vm);
|
||||
}
|
||||
if(format != PIXFORMAT_JPEG) {
|
||||
if(!fmt2rgb888((const uint8_t *)img->buf, img->len, img->format, temp_buf)) {
|
||||
free(temp_buf);
|
||||
be_raise(vm, "img_error", "not enough heap");
|
||||
be_return_nil(vm);
|
||||
}
|
||||
}
|
||||
be_jpg_encoder_t jpeg;
|
||||
jpeg.width = 0;
|
||||
jpeg.height = 0;
|
||||
jpeg.input = img->buf;
|
||||
jpeg.output = temp_buf;
|
||||
jpeg.output_len = 0;
|
||||
switch(format){
|
||||
case PIXFORMAT_GRAYSCALE: // always from temporary RGB88
|
||||
be_img_util::rgb888_to_grayscale_inplace(temp_buf,temp_buf_len);
|
||||
temp_buf_len = pixel_count;
|
||||
break;
|
||||
case PIXFORMAT_RGB565: // always from temporary RGB88
|
||||
be_img_util::rgb888_to_565_inplace(temp_buf,temp_buf_len);
|
||||
temp_buf_len = pixel_count * 2;
|
||||
break;
|
||||
case PIXFORMAT_RGB888:
|
||||
// should already be there
|
||||
break;
|
||||
case PIXFORMAT_JPEG:
|
||||
{
|
||||
int quality = 12;
|
||||
if(option != -1){
|
||||
quality = option;
|
||||
}
|
||||
fmt2jpg_cb(img->buf, img->len, img->width, img->height, img->format, quality, be_img_util::_jpg_out_cb, (void *)&jpeg);
|
||||
temp_buf_len = jpeg.output_len;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
free(temp_buf);
|
||||
be_raise(vm, "img_error", "format not supported");
|
||||
// be_return_nil(vm);
|
||||
break;
|
||||
}
|
||||
free(img->buf);
|
||||
img->format = pixformat_t(format);
|
||||
img->len = temp_buf_len;
|
||||
img->buf = (uint8_t*)heap_caps_realloc((void*)temp_buf, img->len, MALLOC_CAP_SPIRAM | MALLOC_CAP_8BIT); // shrinking should never fail ...
|
||||
if(img->buf == nullptr) {
|
||||
be_img_util::clear(img);
|
||||
free(temp_buf);
|
||||
be_raise(vm, "img_error", "reallocation failed");
|
||||
}
|
||||
}
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
int be_img_info(struct bvm *vm);
|
||||
int be_img_info(struct bvm *vm) {
|
||||
image_t * img = be_get_image_instance(vm);
|
||||
if(!img){
|
||||
be_raise(vm, "img_error", "no image instance");
|
||||
be_return(vm);
|
||||
}
|
||||
be_newobject(vm, "map");
|
||||
be_map_insert_int(vm, "buf_addr", (uint32_t)img->buf);
|
||||
be_map_insert_int(vm, "size", img->len);
|
||||
be_map_insert_int(vm, "width", img->width);
|
||||
be_map_insert_int(vm, "height", img->height);
|
||||
be_map_insert_int(vm, "format", img->format);
|
||||
be_pop(vm, 1);
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
} //extern "C"
|
||||
|
||||
#endif // USE_BERRY_JPEG
|
||||
|
||||
#endif // USE_BERRY
|
|
@ -0,0 +1,164 @@
|
|||
/*
|
||||
xdrv_52_3_berry_cam.ino - Berry scripting language, native functions
|
||||
|
||||
Copyright (C) 2024 Christian Baars & Stephan Hadinger, Berry language by Guan Wenliang https://github.com/Skiars/berry
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
#ifdef USE_BERRY
|
||||
|
||||
#include <berry.h>
|
||||
|
||||
#if defined(USE_WEBCAM)
|
||||
#ifdef USE_BERRY_CAM // driver name is webcam in order to have this code behind the berry_img driver
|
||||
#define USE_WEBCAM_SETUP_ONLY
|
||||
|
||||
#include "esp_camera.h"
|
||||
|
||||
/*********************************************************************************************\
|
||||
* Native functions mapped to Berry functions
|
||||
\*********************************************************************************************/
|
||||
extern "C" {
|
||||
|
||||
struct {
|
||||
uint16_t width = 0;
|
||||
uint16_t height = 0;
|
||||
uint8_t mode = 0;
|
||||
} WcBerry;
|
||||
|
||||
int be_cam_init(struct bvm *vm);
|
||||
int be_cam_init(struct bvm *vm) {
|
||||
WcInit();
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
int be_cam_setup(struct bvm *vm);
|
||||
int be_cam_setup(struct bvm *vm) {
|
||||
|
||||
int32_t argc = be_top(vm); // Get the number of arguments
|
||||
if (argc == 1) {
|
||||
WcBerry.mode = be_toint(vm, 1);
|
||||
}
|
||||
else{
|
||||
be_raise(vm, "cam_error", "need mode");
|
||||
be_return_nil(vm);
|
||||
}
|
||||
|
||||
int result = WcSetup(WcBerry.mode);
|
||||
if (result > 0) {
|
||||
camera_fb_t *wc_fb = esp_camera_fb_get();
|
||||
if(wc_fb){
|
||||
WcBerry.width = wc_fb->width;
|
||||
WcBerry.height = wc_fb->height;
|
||||
esp_camera_fb_return(wc_fb);
|
||||
}
|
||||
}
|
||||
be_pushint(vm, result);
|
||||
be_pop(vm, 1);
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
int be_cam_get_image(struct bvm *vm);
|
||||
int be_cam_get_image(struct bvm *vm) {
|
||||
|
||||
camera_fb_t *wc_fb = esp_camera_fb_get();
|
||||
if (!wc_fb) {
|
||||
be_raise(vm, "cam_error", "could not get frame");
|
||||
be_return_nil(vm);
|
||||
}
|
||||
|
||||
WcBerry.width = wc_fb->width;
|
||||
WcBerry.height = wc_fb->height;
|
||||
|
||||
int32_t argc = be_top(vm);
|
||||
if (argc >= 1 && be_isinstance(vm, 1)) {
|
||||
const char * c = be_classname(vm, 1);
|
||||
if(strcmp(c,"img") != 0) {
|
||||
be_raise(vm, "cam_error", "instance not of img class");
|
||||
esp_camera_fb_return(wc_fb);
|
||||
be_return_nil(vm);
|
||||
}
|
||||
image_t * img = be_get_image_instance(vm);
|
||||
int format = -1;
|
||||
if (argc == 2 && be_isint(vm, 2)) {
|
||||
format = be_toint(vm, 2);
|
||||
}
|
||||
if(img){
|
||||
if(format < 0 || format == PIXFORMAT_JPEG){
|
||||
be_img_util::from_buffer(img,wc_fb->buf, wc_fb->len, wc_fb->width, wc_fb->height, PIXFORMAT_JPEG);
|
||||
}
|
||||
else {
|
||||
bool success = false;
|
||||
int bpp = be_img_util::getBytesPerPixel(pixformat_t(format));
|
||||
if(wc_fb->width * wc_fb->height * bpp != img->len){ // we do not really want tu use it like that, but repeatedly write the same format
|
||||
img->buf = (uint8_t*)heap_caps_realloc((void*)img->buf, wc_fb->width * wc_fb->height * bpp, MALLOC_CAP_SPIRAM | MALLOC_CAP_8BIT);
|
||||
if(!img->buf){
|
||||
be_img_util::clear(img);
|
||||
be_raise(vm, "cam_error", "reallocation failed");
|
||||
be_return_nil(vm);
|
||||
}
|
||||
}
|
||||
switch(pixformat_t(format)) {
|
||||
case PIXFORMAT_GRAYSCALE:
|
||||
success = be_img_util::jpeg_decode_one_image(wc_fb->buf, wc_fb->len, img->buf, EIGHT_BIT_GRAYSCALE, img);
|
||||
break;
|
||||
case PIXFORMAT_RGB565:
|
||||
success = be_img_util::jpeg_decode_one_image(wc_fb->buf, wc_fb->len, img->buf, RGB565_LITTLE_ENDIAN, img);
|
||||
break;
|
||||
case PIXFORMAT_RGB888:
|
||||
success = be_img_util::jpeg_decode_one_image(wc_fb->buf, wc_fb->len, img->buf, RGB8888, img);
|
||||
break;
|
||||
}
|
||||
if(success){
|
||||
img->len = wc_fb->width * wc_fb->height * bpp;
|
||||
img->format = pixformat_t(format);
|
||||
img->width = wc_fb->width;
|
||||
img->height = wc_fb->height;
|
||||
} else {
|
||||
be_img_util::clear(img);
|
||||
}
|
||||
}
|
||||
}
|
||||
else{
|
||||
esp_camera_fb_return(wc_fb);
|
||||
be_raise(vm, "cam_error", "no image store");
|
||||
}
|
||||
}
|
||||
else{
|
||||
be_pushbytes(vm, wc_fb->buf, wc_fb->len); // JPG
|
||||
}
|
||||
|
||||
esp_camera_fb_return(wc_fb);
|
||||
be_return(vm);
|
||||
}
|
||||
|
||||
// cam.info(void) -> map
|
||||
int be_cam_info(struct bvm *vm);
|
||||
int be_cam_info(struct bvm *vm) {
|
||||
be_newobject(vm, "map");
|
||||
be_map_insert_int(vm, "mode", WcBerry.mode);
|
||||
be_map_insert_int(vm, "width", WcBerry.width);
|
||||
be_map_insert_int(vm, "height", WcBerry.height);
|
||||
|
||||
be_pop(vm, 1);
|
||||
be_return(vm);
|
||||
}
|
||||
} //extern "C"
|
||||
|
||||
#endif // USE_BERRY_CAM
|
||||
#endif // USE_WEBCAM
|
||||
|
||||
#endif // USE_BERRY
|
|
@ -122,11 +122,12 @@
|
|||
#include "fb_gfx.h"
|
||||
#include "camera_pins.h"
|
||||
|
||||
SemaphoreHandle_t WebcamMutex = nullptr;
|
||||
|
||||
#ifndef USE_WEBCAM_SETUP_ONLY
|
||||
bool HttpCheckPriviledgedAccess(bool);
|
||||
extern ESP8266WebServer *Webserver;
|
||||
|
||||
SemaphoreHandle_t WebcamMutex = nullptr;;
|
||||
|
||||
// use mutex like:
|
||||
// TasAutoMutex localmutex(&WebcamMutex, "somename");
|
||||
// in any function. Will wait for mutex to be clear, and auto-release when the function exits.
|
||||
|
@ -134,7 +135,7 @@ SemaphoreHandle_t WebcamMutex = nullptr;;
|
|||
#define BOUNDARY "e8b8c539-047d-4777-a985-fbba6edff11e"
|
||||
|
||||
#ifndef MAX_PICSTORE
|
||||
#define MAX_PICSTORE 4
|
||||
#define MAX_PICSTORE 4
|
||||
#endif
|
||||
struct PICSTORE {
|
||||
uint8_t *buff;
|
||||
|
@ -151,11 +152,14 @@ struct PICSTORE {
|
|||
#endif // RTSP_FRAME_TIME
|
||||
#endif // ENABLE_RTSPSERVER
|
||||
|
||||
#endif //USE_WEBCAM_SETUP_ONLY
|
||||
|
||||
struct {
|
||||
uint8_t up = 0;
|
||||
uint16_t width;
|
||||
uint16_t height;
|
||||
uint8_t stream_active;
|
||||
#ifndef USE_WEBCAM_SETUP_ONLY
|
||||
WiFiClient client;
|
||||
ESP8266WebServer *CamServer;
|
||||
struct PICSTORE picstore[MAX_PICSTORE];
|
||||
|
@ -165,9 +169,10 @@ struct {
|
|||
CRtspSession *rtsp_session;
|
||||
WiFiClient rtsp_client;
|
||||
uint8_t rtsp_start;
|
||||
#endif // ENABLE_RTSPSERVER
|
||||
OV2640 cam;
|
||||
uint32_t rtsp_lastframe_time;
|
||||
#endif // ENABLE_RTSPSERVER
|
||||
#endif // USE_WEBCAM_SETUP_ONLY
|
||||
} Wc;
|
||||
|
||||
struct {
|
||||
|
@ -219,6 +224,7 @@ bool WcPinUsed(void) {
|
|||
return pin_used;
|
||||
}
|
||||
|
||||
|
||||
void WcFeature(int32_t value) {
|
||||
TasAutoMutex localmutex(&WebcamMutex, "WcFeature");
|
||||
sensor_t * wc_s = esp_camera_sensor_get();
|
||||
|
@ -253,6 +259,7 @@ void WcFeature(int32_t value) {
|
|||
AddLog(LOG_LEVEL_DEBUG, PSTR("CAM: Feature: %d"), value);
|
||||
}
|
||||
|
||||
|
||||
void WcApplySettings() {
|
||||
TasAutoMutex localmutex(&WebcamMutex, "WcApplySettings");
|
||||
sensor_t * wc_s = esp_camera_sensor_get();
|
||||
|
@ -493,7 +500,7 @@ uint32_t WcSetup(int32_t fsiz) {
|
|||
}
|
||||
|
||||
/*********************************************************************************************/
|
||||
|
||||
#ifndef USE_WEBCAM_SETUP_ONLY
|
||||
int32_t WcSetOptions(uint32_t sel, int32_t value) {
|
||||
int32_t res = 0;
|
||||
TasAutoMutex localmutex(&WebcamMutex, "WcSetOptions");
|
||||
|
@ -772,7 +779,6 @@ pcopy:
|
|||
|
||||
//////////////// Handle authentication /////////////////
|
||||
|
||||
|
||||
bool WebcamAuthenticate(void)
|
||||
{
|
||||
if (strlen(SettingsText(SET_WEBPWD)) && (HTTP_MANAGER_RESET_ONLY != Web.state)) {
|
||||
|
@ -1120,6 +1126,8 @@ void WcShowStream(void) {
|
|||
}
|
||||
}
|
||||
|
||||
#endif // USE_WEBCAM_SETUP_ONLY
|
||||
|
||||
void WcInit(void) {
|
||||
if (!Settings->webcam_config.data) {
|
||||
Settings->webcam_config.stream = 1;
|
||||
|
@ -1138,6 +1146,7 @@ void WcInit(void) {
|
|||
/*********************************************************************************************\
|
||||
* Commands
|
||||
\*********************************************************************************************/
|
||||
#ifndef USE_WEBCAM_SETUP_ONLY
|
||||
|
||||
#define D_PRFX_WEBCAM "WC"
|
||||
#define D_CMND_WC_STREAM "Stream"
|
||||
|
@ -1502,13 +1511,15 @@ void WcStatsShow(void) {
|
|||
#endif // USE_WEBSERVER
|
||||
}
|
||||
|
||||
#endif //USE_WEBCAM_SETUP_ONLY
|
||||
|
||||
/*********************************************************************************************\
|
||||
* Interface
|
||||
\*********************************************************************************************/
|
||||
|
||||
bool Xdrv81(uint32_t function) {
|
||||
bool result = false;
|
||||
|
||||
#ifndef USE_WEBCAM_SETUP_ONLY
|
||||
switch (function) {
|
||||
case FUNC_LOOP:
|
||||
WcLoop();
|
||||
|
@ -1536,8 +1547,8 @@ bool Xdrv81(uint32_t function) {
|
|||
case FUNC_ACTIVE:
|
||||
result = true;
|
||||
break;
|
||||
|
||||
}
|
||||
#endif // USE_WEBCAM_SETUP_ONLY
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue